File tree 1 file changed +2
-16
lines changed
android/src/main/java/io/fullstack/firestack
1 file changed +2
-16
lines changed Original file line number Diff line number Diff line change 29
29
import com .google .firebase .auth .FirebaseUser ;
30
30
import com .google .firebase .auth .GetTokenResult ;
31
31
import com .google .firebase .auth .GoogleAuthProvider ;
32
- import com . google . firebase . remoteconfig . FirebaseRemoteConfig ;
32
+
33
33
34
34
@ SuppressWarnings ("ThrowableResultOfMethodCallIgnored" )
35
35
class FirestackAuthModule extends ReactContextBaseJavaModule {
@@ -41,7 +41,6 @@ class FirestackAuthModule extends ReactContextBaseJavaModule {
41
41
42
42
// private Context context;
43
43
private ReactContext mReactContext ;
44
- private FirebaseRemoteConfig mRemoteConfig ;
45
44
private FirebaseAuth mAuth ;
46
45
private FirebaseApp app ;
47
46
private FirebaseUser user ;
@@ -52,20 +51,7 @@ public FirestackAuthModule(ReactApplicationContext reactContext) {
52
51
// this.context = reactContext;
53
52
mReactContext = reactContext ;
54
53
55
- mRemoteConfig .fetch ()
56
- .addOnCompleteListener (new OnCompleteListener <Void >() {
57
- @ Override
58
- public void onComplete (Task <Void > task ) {
59
- if (task .isSuccessful ()) {
60
- // task successful. Activate the fetched data
61
- mRemoteConfig .activateFetched ();
62
-
63
- } else {
64
- //task failed
65
- }
66
- }
67
- });
68
- Log .d (TAG , "New FirestackAuth instance" );
54
+ Log .d (TAG , "New FirestackAuth instance" );
69
55
}
70
56
71
57
@ Override
You can’t perform that action at this time.
0 commit comments