NetMirror.apk
Download file
package com.facebook.fbreact.specs;
import com.facebook.react.bridge.Promise;
import com.facebook.react.bridge.ReactApplicationContext;
import com.facebook.react.bridge.ReactContextBaseJavaModule;
import com.facebook.react.bridge.ReactMethod;
import com.facebook.react.bridge.ReadableArray;
import com.facebook.react.turbomodule.core.interfaces.TurboModule;
/* JADX INFO: loaded from: classes.dex */
public abstract class NativeIntentAndroidSpec extends ReactContextBaseJavaModule implements TurboModule {
public static final String NAME = "IntentAndroid";
public NativeIntentAndroidSpec(ReactApplicationContext reactApplicationContext) {
super(reactApplicationContext);
}
@ReactMethod
public abstract void canOpenURL(String str, Promise promise);
@ReactMethod
public abstract void getInitialURL(Promise promise);
@Override // com.facebook.react.bridge.NativeModule
public String getName() {
return "IntentAndroid";
}
@ReactMethod
public abstract void openSettings(Promise promise);
@ReactMethod
public abstract void openURL(String str, Promise promise);
@ReactMethod
public abstract void sendIntent(String str, ReadableArray readableArray, Promise promise);
}
⚠️ This content was hidden by an advertisement filtering extension in your browser. Please disable it and reload the page to access the decompiled content.
We only display one small text ad to keep this service free. Here's what it looks like:
Read the Docs for Business: You write the docs. We do the rest.
Try it today!Ad by EthicalAds
Download file