invertase / react-native-firebase

🔥 A well-tested feature-rich modular Firebase implementation for React Native. Supports both iOS & Android platforms for all Firebase services.
https://rnfirebase.io
Other
11.71k stars 2.22k forks source link

🔥[AB Testing] Insufficient data; make sure your app is set up correctly #2873

Closed CmerCy132 closed 4 years ago

CmerCy132 commented 5 years ago

Issue

Getting an error on A/B testing saying that 'Insufficient data; make sure your app is set up correctly'. But previously we conducted an experiment and it works fine.

Below is my code for remote-config

//Firebase Remote Config

    Firebase.config().enableDeveloperMode();

    Firebase.config().setDefaults({
      newTabs: false,
      deviceModelName: deviceModels
    });

    Firebase.config().fetch(0)
      .then(() => { return Firebase.config().activateFetched() })
      .then(() => {
        return Firebase.config().getValue('newTabs')
      })
      .then(data2 => {
        const testData = data2.val();
        console.log("Get testData : ", testData);
        storeExplore.firebaseData = testData;
        this.setState({ firebaseData: testData })

        return Firebase.config().getValue('chatbot')
      })
      .then(data3 => {
        const testData = data3.val();
        console.log("Get testData for chatbot : ", testData);
        storeExplore.firebaseDataChatbot = testData;
        this.setState({ firebaseDataChatbot: testData })

        return Firebase.config().getValue('audioTourDuration')
      })
      .then(data4 => {
        const testData = data4.val();
        console.log("Get testData for audioTourDuration : ", testData);
        storeExplore.firebaseDataAudioTourDuration = testData;
        this.setState({ firebaseDataAudioTourDuration: testData })

        return Firebase.config().getValue('deviceModelName')
      })
      .then(data5 => {
        const testData = JSON.parse(data5.val());
        console.log("Get testData for deviceModelName : ", testData);
        storeExplore.deviceModelList = testData;
      })
      .catch(err => {
        console.log("Get error : ", err)
      })
      .finally(() => {
        this.setState({ start: true })
      })

    //Firebase Remote Config End

Project Files

iOS

Click To Expand

#### `ios/Podfile`: - [x] I'm not using Pods - [ ] I'm using Pods and my Podfile looks like: ```ruby # N/A ``` #### `AppDelegate.m`: ```objc /** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #import "AppDelegate.h" #import #import #import #import "RNSplashScreen.h" //Firebase #import "Firebase.h" //Facebook #import //Push Notification #import @implementation AppDelegate - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { //Firebase [FIRApp configure]; RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions]; RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge moduleName:@"ApplicationName" initialProperties:nil]; rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1]; self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; UIViewController *rootViewController = [UIViewController new]; rootViewController.view = rootView; self.window.rootViewController = rootViewController; [self.window makeKeyAndVisible]; [RNSplashScreen show]; return YES; } - (NSURL *)sourceURLForBridge:(RCTBridge *)bridge { #if DEBUG return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil]; #else return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"]; #endif } - (BOOL)application:(UIApplication *)application openURL:(NSURL *)url options:(NSDictionary *)options { BOOL handled = [[FBSDKApplicationDelegate sharedInstance] application:application openURL:url sourceApplication:options[UIApplicationOpenURLOptionsSourceApplicationKey] annotation:options[UIApplicationOpenURLOptionsAnnotationKey] ]; // Add any custom logic here. return handled; } //Push Notification // Required to register for notifications - (void)application:(UIApplication *)application didRegisterUserNotificationSettings:(UIUserNotificationSettings *)notificationSettings { [RCTPushNotificationManager didRegisterUserNotificationSettings:notificationSettings]; } // Required for the register event. - (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken { NSLog(@"Get token %@", deviceToken); [RCTPushNotificationManager didRegisterForRemoteNotificationsWithDeviceToken:deviceToken]; } // Required for the notification event. You must call the completion handler after handling the remote notification. - (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler { [RCTPushNotificationManager didReceiveRemoteNotification:userInfo fetchCompletionHandler:completionHandler]; } // Required for the registrationError event. - (void)application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error { [RCTPushNotificationManager didFailToRegisterForRemoteNotificationsWithError:error]; } // Required for the localNotification event. - (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification { [RCTPushNotificationManager didReceiveLocalNotification:notification]; } @end ```


Android

Click To Expand

#### Have you converted to AndroidX? - [ ] my application is an AndroidX application? - [x] I am using `android/gradle.settings` `jetifier=true` for Android compatibility? - [x] I am using the NPM package `jetifier` for react-native compatibility? #### `android/build.gradle`: ```groovy // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { ext { buildToolsVersion = "28.0.3" minSdkVersion = 19 compileSdkVersion = 28 targetSdkVersion = 28 supportLibVersion = "28.0.0" googlePlayServicesVersion = "16.0.0" googlePlayServicesVisionVersion = "17.0.2" } repositories { mavenCentral() google() jcenter() } dependencies { classpath('com.android.tools.build:gradle:3.4.1') classpath 'com.google.gms:google-services:4.2.0' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } } allprojects { repositories { mavenLocal() google() jcenter() maven { // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm url "$rootDir/../node_modules/react-native/android" } } configurations.all { resolutionStrategy { // react-native-google-analytics-bridge force "com.google.android.gms:play-services-analytics:16.0.1" force "com.google.android.gms:play-services-tagmanager-v4-impl:16.0.1" // react-native-device-info force "com.google.android.gms:play-services-gcm:15.0.0" } } } ``` #### `android/app/build.gradle`: ```groovy apply plugin: "com.android.application" import com.android.build.OutputFile /** * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets * and bundleReleaseJsAndAssets). * These basically call `react-native bundle` with the correct arguments during the Android build * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the * bundle directly from the development server. Below you can see all the possible configurations * and their defaults. If you decide to add a configuration block, make sure to add it before the * `apply from: "../../node_modules/react-native/react.gradle"` line. * * project.ext.react = [ * // the name of the generated asset file containing your JS bundle * bundleAssetName: "index.android.bundle", * * // the entry file for bundle generation * entryFile: "index.android.js", * * // whether to bundle JS and assets in debug mode * bundleInDebug: false, * * // whether to bundle JS and assets in release mode * bundleInRelease: true, * * // whether to bundle JS and assets in another build variant (if configured). * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants * // The configuration property can be in the following formats * // 'bundleIn${productFlavor}${buildType}' * // 'bundleIn${buildType}' * // bundleInFreeDebug: true, * // bundleInPaidRelease: true, * // bundleInBeta: true, * * // whether to disable dev mode in custom build variants (by default only disabled in release) * // for example: to disable dev mode in the staging build type (if configured) * devDisabledInStaging: true, * // The configuration property can be in the following formats * // 'devDisabledIn${productFlavor}${buildType}' * // 'devDisabledIn${buildType}' * * // the root of your project, i.e. where "package.json" lives * root: "../../", * * // where to put the JS bundle asset in debug mode * jsBundleDirDebug: "$buildDir/intermediates/assets/debug", * * // where to put the JS bundle asset in release mode * jsBundleDirRelease: "$buildDir/intermediates/assets/release", * * // where to put drawable resources / React Native assets, e.g. the ones you use via * // require('./image.png')), in debug mode * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug", * * // where to put drawable resources / React Native assets, e.g. the ones you use via * // require('./image.png')), in release mode * resourcesDirRelease: "$buildDir/intermediates/res/merged/release", * * // by default the gradle tasks are skipped if none of the JS files or assets change; this means * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to * // date; if you have any other folders that you want to ignore for performance reasons (gradle * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/ * // for example, you might want to remove it from here. * inputExcludes: ["android/**", "ios/**"], * * // override which node gets called and with what additional arguments * nodeExecutableAndArgs: ["node"], * * // supply additional arguments to the packager * extraPackagerArgs: [] * ] */ project.ext.react = [ entryFile: "index.js" ] apply from: "../../node_modules/react-native/react.gradle" /** * Set this to true to create two separate APKs instead of one: * - An APK that only works on ARM devices * - An APK that only works on x86 devices * The advantage is the size of the APK is reduced by about 4MB. * Upload all the APKs to the Play Store and people will download * the correct one based on the CPU architecture of their device. */ def enableSeparateBuildPerCPUArchitecture = false /** * Run Proguard to shrink the Java bytecode in release builds. */ def enableProguardInReleaseBuilds = false android { packagingOptions { pickFirst 'lib/x86/libc++_shared.so' pickFirst 'lib/x86_64/libjsc.so' pickFirst 'lib/arm64-v8a/libjsc.so' pickFirst 'lib/arm64-v8a/libc++_shared.so' pickFirst 'lib/x86_64/libc++_shared.so' pickFirst 'lib/armeabi-v7a/libc++_shared.so' } compileSdkVersion rootProject.ext.compileSdkVersion compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } defaultConfig { applicationId "com.appName.appName" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion versionCode 27802 versionName "2.7.8.02" multiDexEnabled true renderscriptTargetApi 23 renderscriptSupportModeEnabled true missingDimensionStrategy 'react-native-camera', 'general' } signingConfigs { release { if (project.hasProperty('MYAPP_RELEASE_STORE_FILE')) { storeFile file(MYAPP_RELEASE_STORE_FILE) storePassword MYAPP_RELEASE_STORE_PASSWORD keyAlias MYAPP_RELEASE_KEY_ALIAS keyPassword MYAPP_RELEASE_KEY_PASSWORD } } } splits { abi { reset() enable enableSeparateBuildPerCPUArchitecture universalApk false // If true, also generate a universal APK include "armeabi-v7a", "x86", "arm64-v8a", "x86_64" } } buildTypes { release { minifyEnabled enableProguardInReleaseBuilds proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" signingConfig signingConfigs.release } } // applicationVariants are e.g. debug, release applicationVariants.all { variant -> variant.outputs.each { output -> // For each separate APK per architecture, set a unique version code as described here: // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits def versionCodes = ["armeabi-v7a":1, "x86":2, "arm64-v8a": 3, "x86_64": 4] def abi = output.getFilter(OutputFile.ABI) if (abi != null) { // null for the universal-debug, universal-release variants output.versionCodeOverride = versionCodes.get(abi) * 1048576 + defaultConfig.versionCode } } } } dependencies { implementation project(':react-native-system-setting') implementation project(':@react-native-community_netinfo') implementation project(':react-native-gesture-handler') implementation project(':react-native-photo-view') implementation project(':rn-fetch-blob') implementation project(':react-native-audio-streamer') implementation project(':react-native-proximity') implementation project(':react-native-audio-player-recorder') implementation project(':react-native-linear-gradient') implementation project(':react-native-video') implementation project(':react-native-orientation') implementation project(':react-native-wikitude') implementation project(':react-native-share') implementation project(':react-native-device-info') implementation project(':react-native-zip-archive') implementation project(':react-native-static-server') implementation project(':react-native-fbsdk') implementation project(':@react-native-community_async-storage') implementation project(':react-native-restart') // Firebase dependencies implementation project(path: ":@react-native-firebase_app") implementation project(path: ":@react-native-firebase_analytics") implementation project(path: ":@react-native-firebase_iid") implementation project(path: ":@react-native-firebase_messaging") implementation project(path: ":@react-native-firebase_config") // implementation "com.google.android.gms:play-services-base:16.1.0" // implementation "com.google.firebase:firebase-core:16.0.1" // implementation "com.google.firebase:firebase-messaging:18.0.0" // implementation "com.google.firebase:firebase-config:17.0.0" implementation fileTree(dir: "libs", include: ["*.jar", "*.arr"]) implementation project(':react-native-svg') implementation project(':react-native-network-info') implementation project(':react-native-home-pressed') implementation project(':react-native-fs') implementation project(':react-native-camera') implementation project(':@react-native-community_blur') implementation project(':react-native-splash-screen') implementation project(':react-native-pdf') implementation project(':react-native-keep-awake') implementation project(':react-native-vector-icons') implementation project(':react-native-appstore-version-checker') implementation fileTree(dir: "libs", include: ["*.jar"]) // implementation ("com.google.android.gms:play-services-analytics:16.0.0") { // force = true // } // implementation ("com.google.android.gms:play-services-tagmanager-v4-impl:16.0.0") { // force = true // } implementation "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}" implementation "com.facebook.react:react-native:+" // From node_modules implementation 'androidx.multidex:multidex:2.0.1' //GIF implementation 'com.facebook.fresco:fresco:1.10.0' implementation 'com.facebook.fresco:animated-gif:1.10.0' } // Run this once to be able to run the application with BUCK // puts all compile dependencies into folder libs for BUCK to use task copyDownloadableDepsToLibs(type: Copy) { from configurations.compile into 'libs' } apply plugin: 'com.google.gms.google-services' ``` #### `android/settings.gradle`: ```groovy rootProject.name = 'AppName' include ':react-native-system-setting' project(':react-native-system-setting').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-system-setting/android') include ':@react-native-community_netinfo' project(':@react-native-community_netinfo').projectDir = new File(rootProject.projectDir, '../node_modules/@react-native-community/netinfo/android') include ':react-native-gesture-handler' project(':react-native-gesture-handler').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-gesture-handler/android') include ':react-native-photo-view' project(':react-native-photo-view').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-photo-view/android') include ':rn-fetch-blob' project(':rn-fetch-blob').projectDir = new File(rootProject.projectDir, '../node_modules/rn-fetch-blob/android') include ':react-native-audio-streamer' project(':react-native-audio-streamer').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-audio-streamer/android') include ':react-native-proximity' project(':react-native-proximity').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-proximity/android') include ':react-native-audio-player-recorder' project(':react-native-audio-player-recorder').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-audio-player-recorder/android') include ':react-native-linear-gradient' project(':react-native-linear-gradient').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-linear-gradient/android') include ':react-native-video' project(':react-native-video').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-video/android-exoplayer') include ':react-native-orientation' project(':react-native-orientation').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-orientation/android') include ':wikitudesdk', ':react-native-wikitude' project(':react-native-wikitude').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-wikitude/android') include ':react-native-share' project(':react-native-share').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-share/android') include ':react-native-device-info' project(':react-native-device-info').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-device-info/android') include ':react-native-zip-archive' project(':react-native-zip-archive').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-zip-archive/android') include ':react-native-static-server' project(':react-native-static-server').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-static-server/android') include ':react-native-fbsdk' project(':react-native-fbsdk').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-fbsdk/android') include ':@react-native-community_async-storage' project(':@react-native-community_async-storage').projectDir = new File(rootProject.projectDir, '../node_modules/@react-native-community/async-storage/android') include ':react-native-svg' project(':react-native-svg').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-svg/android') include ':react-native-network-info' project(':react-native-network-info').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-network-info/android') include ':react-native-home-pressed' project(':react-native-home-pressed').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-home-pressed/android') include ':react-native-fs' project(':react-native-fs').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-fs/android') include ':rn-fetch-blob' project(':rn-fetch-blob').projectDir = new File(rootProject.projectDir, '../node_modules/rn-fetch-blob/android') include ':react-native-camera' project(':react-native-camera').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-camera/android') include ':@react-native-community_blur' project(':@react-native-community_blur').projectDir = new File(rootProject.projectDir, '../node_modules/@react-native-community/blur/android') include ':react-native-splash-screen' project(':react-native-splash-screen').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-splash-screen/android') include ':react-native-pdf' project(':react-native-pdf').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-pdf/android') include ':react-native-keep-awake' project(':react-native-keep-awake').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-keep-awake/android') include ':react-native-vector-icons' project(':react-native-vector-icons').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-vector-icons/android') include ':react-native-appstore-version-checker' project(':react-native-appstore-version-checker').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-appstore-version-checker/android') include ':react-native-restart' project(':react-native-restart').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-restart/android') //Firebase include ':@react-native-firebase_app' project(':@react-native-firebase_app').projectDir = new File(rootProject.projectDir, './../node_modules/@react-native-firebase/app/android') include ':@react-native-firebase_analytics' project(':@react-native-firebase_analytics').projectDir = new File(rootProject.projectDir, './../node_modules/@react-native-firebase/analytics/android') include ':@react-native-firebase_iid' project(':@react-native-firebase_iid').projectDir = new File(rootProject.projectDir, './../node_modules/@react-native-firebase/iid/android') include ':@react-native-firebase_messaging' project(':@react-native-firebase_messaging').projectDir = new File(rootProject.projectDir, './../node_modules/@react-native-firebase/messaging/android') include ':@react-native-firebase_config' project(':@react-native-firebase_config').projectDir = new File(rootProject.projectDir, './../node_modules/@react-native-firebase/remote-config/android') include ':app' ``` #### `MainApplication.java`: ```java package com.appName.appName; import android.app.Application; import com.facebook.react.ReactApplication; import com.ninty.system.setting.SystemSettingPackage; import com.reactnativecommunity.netinfo.NetInfoPackage; import com.swmansion.gesturehandler.react.RNGestureHandlerPackage; import com.reactnative.photoview.PhotoViewPackage; import com.RNFetchBlob.RNFetchBlobPackage; import fm.indiecast.rnaudiostreamer.RNAudioStreamerPackage; import com.RNProximity.RNProximityPackage; import com.rnim.rn.audio.ReactNativeAudioPackage; import com.BV.LinearGradient.LinearGradientPackage; import com.brentvatne.react.ReactVideoPackage; import com.github.yamill.orientation.OrientationPackage; import com.brave.wikitudebridge.WikitudePackage; import cl.json.RNSharePackage; import com.learnium.RNDeviceInfo.RNDeviceInfo; import com.rnziparchive.RNZipArchivePackage; import cl.json.ShareApplication; //Static Server import com.futurepress.staticserver.FPStaticServerPackage; //restart import com.avishayil.rnrestart.ReactNativeRestartPackage; //Facebook import com.facebook.FacebookSdk; import com.facebook.CallbackManager; import com.facebook.appevents.AppEventsLogger; import com.facebook.reactnative.androidsdk.FBSDKPackage; //Firebase import io.invertase.firebase.app.ReactNativeFirebaseAppPackage; import io.invertase.firebase.analytics.ReactNativeFirebaseAnalyticsPackage; import io.invertase.firebase.iid.ReactNativeFirebaseIidPackage; import io.invertase.firebase.messaging.ReactNativeFirebaseMessagingPackage; import io.invertase.firebase.config.ReactNativeFirebaseConfigPackage; // import io.invertase.firebase.analytics.RNFirebaseAnalyticsPackage; // import io.invertase.firebase.messaging.RNFirebaseMessagingPackage; // import io.invertase.firebase.instanceid.RNFirebaseInstanceIdPackage; // import io.invertase.firebase.config.RNFirebaseRemoteConfigPackage; // import io.invertase.firebase.RNFirebasePackage; import com.reactnativecommunity.asyncstorage.AsyncStoragePackage; import com.horcrux.svg.SvgPackage; import com.pusherman.networkinfo.RNNetworkInfoPackage; import com.evanjmg.RNHomePressedPackage; import com.rnfs.RNFSPackage; import com.RNFetchBlob.RNFetchBlobPackage; import org.reactnative.camera.RNCameraPackage; import com.cmcewen.blurview.BlurViewPackage; import org.devio.rn.splashscreen.SplashScreenReactPackage; import org.wonday.pdf.RCTPdfView; import com.corbt.keepawake.KCKeepAwakePackage; import com.oblador.vectoricons.VectorIconsPackage; import com.masteratul.RNAppstoreVersionCheckerPackage; import com.facebook.react.ReactNativeHost; import com.facebook.react.ReactPackage; import com.facebook.react.shell.MainReactPackage; import com.facebook.soloader.SoLoader; import java.util.Arrays; import java.util.List; public class MainApplication extends Application implements ShareApplication, ReactApplication { // Facebook private static CallbackManager mCallbackManager = CallbackManager.Factory.create(); protected static CallbackManager getCallbackManager() { return mCallbackManager; } private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { @Override public boolean getUseDeveloperSupport() { return BuildConfig.DEBUG; } @Override protected List getPackages() { return Arrays.asList( new MainReactPackage(), new SystemSettingPackage(), new NetInfoPackage(), new RNGestureHandlerPackage(), new RNAudioStreamerPackage(), new RNProximityPackage(), new ReactNativeAudioPackage(), new LinearGradientPackage(), new ReactVideoPackage(), new OrientationPackage(), new WikitudePackage(), new RNSharePackage(), new RNDeviceInfo(), new RNZipArchivePackage(), new FPStaticServerPackage(), new FBSDKPackage(mCallbackManager), new AsyncStoragePackage(), new SvgPackage(), new RNNetworkInfoPackage(), new RNHomePressedPackage(), new RNFSPackage(), new RNFetchBlobPackage(), new RNCameraPackage(), new BlurViewPackage(), new PhotoViewPackage(), new SplashScreenReactPackage(), new RCTPdfView(), new KCKeepAwakePackage(), new VectorIconsPackage(), new RNAppstoreVersionCheckerPackage(), new ReactNativeRestartPackage(), new ReactNativeFirebaseAppPackage(), new ReactNativeFirebaseAnalyticsPackage(), new ReactNativeFirebaseIidPackage(), new ReactNativeFirebaseMessagingPackage(), new ReactNativeFirebaseConfigPackage() ); } @Override protected String getJSMainModuleName() { return "index"; } }; @Override public ReactNativeHost getReactNativeHost() { return mReactNativeHost; } @Override public String getFileProviderAuthority() { return BuildConfig.APPLICATION_ID + ".provider"; } @Override public void onCreate() { super.onCreate(); SoLoader.init(this, /* native exopackage */ false); } } ``` #### `AndroidManifest.xml`: ```xml ```


Environment

Click To Expand

**`react-native info` output:** ``` React Native Environment Info: System: OS: macOS 10.14.6 CPU: (8) x64 Intel(R) Core(TM) i7-4770HQ CPU @ 2.20GHz Memory: 454.76 MB / 16.00 GB Shell: 3.2.57 - /bin/bash Binaries: Node: 10.16.0 - /usr/local/bin/node npm: 6.9.0 - /usr/local/bin/npm Watchman: 4.9.0 - /usr/local/bin/watchman SDKs: iOS SDK: Platforms: iOS 13.2, DriverKit 19.0, macOS 10.15, tvOS 13.2, watchOS 6.1 Android SDK: API Levels: 23, 25, 26, 27, 28, 29 Build Tools: 23.0.1, 23.0.2, 23.0.3, 25.0.0, 26.0.1, 26.0.2, 26.0.3, 27.0.3, 28.0.0, 28.0.3, 29.0.2 System Images: android-28 | Google APIs Intel x86 Atom, android-28 | Google Play Intel x86 Atom IDEs: Android Studio: 3.4 AI-183.6156.11.34.5522156 Xcode: 11.2/11B52 - /usr/bin/xcodebuild npmPackages: react: 16.8.3 => 16.8.3 react-native: 0.59.10 => 0.59.10 npmGlobalPackages: create-react-native-app: 1.0.0 react-native-cli: 2.0.1 react-native-create-library: 3.1.2 react-native-git-upgrade: 0.2.7 ``` - **Platform that you're experiencing the issue on**: - [ ] iOS - [ ] Android - [ ] **iOS** but have not tested behavior on Android - [ ] **Android** but have not tested behavior on iOS - [x] Both - **`react-native-firebase` version you're using that has this issue:** - 5.5.4 - **`Firebase` module(s) you're using that has the issue:** - Analytics - Remote-Config - **Are you using `TypeScript`?** - N


Think react-native-firebase is great? Please consider supporting all of the project maintainers and contributors by donating via our Open Collective where all contributors can submit expenses. [Learn More]

stale[bot] commented 4 years ago

Hello 👋, to help manage issues we automatically close stale issues. This issue has been automatically marked as stale because it has not had activity for quite some time. Has this issue been fixed, or does it still require the community's attention?

This issue will be closed in 15 days if no further activity occurs. Thank you for your contributions.

stale[bot] commented 4 years ago

Closing this issue after a prolonged period of inactivity. If this is still present in the latest release, please feel free to create a new issue with up-to-date information.