Skip to content
Snippets Groups Projects
Commit bf481386 authored by Roshan Pius's avatar Roshan Pius Committed by Automerger Merge Worker
Browse files

Merge "nfc(api): Separate out NfcExtras from nfc APIs (2/2)" into main am: 867815f0

parents 37ff905f 867815f0
No related branches found
No related tags found
No related merge requests found
......@@ -76,9 +76,22 @@ public final class NfcAdapterExtras {
private final NfcAdapter mAdapter;
final String mPackageName;
private static INfcAdapterExtras
getNfcAdapterExtrasInterfaceFromNfcAdapter(NfcAdapter adapter) {
try {
Method method = NfcAdapter.class.getDeclaredMethod("getNfcAdapterExtrasInterface");
method.setAccessible(true);
return (INfcAdapterExtras) method.invoke(adapter);
} catch (SecurityException | NoSuchMethodException | IllegalArgumentException
| IllegalAccessException | IllegalAccessError | InvocationTargetException e) {
Log.e(TAG, "Unable to get context from NfcAdapter");
}
return null;
}
/** get service handles */
private static void initService(NfcAdapter adapter) {
final INfcAdapterExtras service = adapter.getNfcAdapterExtrasInterface();
final INfcAdapterExtras service = getNfcAdapterExtrasInterfaceFromNfcAdapter(adapter);
if (service != null) {
// Leave stale rather than receive a null value.
sService = service;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment