You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import{Linking}from'react-native';importfirebasefrom'@react-native-firebase/app';import'@react-native-firebase/dynamic-links';/** * Get the deep link URL from either Firebase or just a regular deep link * on startup */exportasyncfunctiongetAppStartupDeepLinkUrl(){const[firebaseInitialUrl,linkingInitialUrl]=awaitPromise.all([// We support both direct URLs (e.g.,// https://app.myproject.com/plan/blah?loginToken=...) and URLs from// Firebasefirebase.dynamicLinks().getInitialLink(),// Note: if you're debugging this on iOS and can't get it to work,// the react-native currently (as of 2019-08-27) has a bug// that causes `Linking.getInitialURL()` to always return null when// in iOS Simulator with remote debugging turned on. See// https://github.com/facebook/react-native/issues/24429#issuecomment-489702443Linking.getInitialURL(),]);returnfirebaseInitialUrl?.url||linkingInitialUrl;}
I am using android/gradle.settingsjetifier=true for Android compatibility?
I am using the NPM package jetifier for react-native compatibility?
android/build.gradle:
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
buildToolsVersion ="29.0.3"
minSdkVersion =23// Changed SDK to 30 from https://docs.expo.io/bare/installing-unimodules/#configuration-for-android
compileSdkVersion =30
targetSdkVersion =30
ndkVersion ="20.1.5948944"
}
repositories {
google()
jcenter()
}
dependencies {
classpath("com.android.tools.build:gradle:4.1.0")
// NOTE: Do not place your application dependencies here; they belong// in the individual module build.gradle files// Added from https://v5.rnfirebase.io/docs/v5.x.x/installation/android#2.-Setup-google-services.json// Updated to version 4.3.10 based on https://rnfirebase.io/#configure-firebase-with-android-credentials
classpath("com.google.gms:google-services:4.3.10")
}
}
allprojects {
repositories {
mavenLocal()
maven {
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
url("$rootDir/../node_modules/react-native/android")
}
maven {
// Android JSC is installed from npm
url("$rootDir/../node_modules/jsc-android/dist")
}
google()
jcenter()
maven { url 'https://www.jitpack.io' }
maven {
// Added from https://github.com/expo/expo/issues/3639// expo-camera bundles a custom com.google.android:cameraview
url "$rootDir/../node_modules/expo-camera/android/maven"
}
maven {
// For notifee:// https://notifee.app/react-native/docs/installation
url "$rootDir/../node_modules/@notifee/react-native/android/libs"
}
}
}
android/app/build.gradle:
apply plugin: "com.android.application"importcom.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. If none specified and * // "index.android.js" exists, it will be used. Otherwise "index.js" is * // default. Can be overridden with ENTRY_FILE environment variable. * entryFile: "index.android.js", * * // https://reactnative.dev/docs/performance#enable-the-ram-format * bundleCommand: "ram-bundle", * * // 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 = [
// Changed from false to true from https://reactnative.dev/docs/hermes#android// This measurably improved Android app start time per our own benchmarks.// See https://gitlab.com/travelchime/itineraries/-/merge_requests/2728enableHermes: true, // clean and rebuild if changing
]
apply from: "../../node_modules/react-native/react.gradle"// Added from https://docs.expo.io/bare/installing-unimodules/#configuration-for-android
apply from: '../../node_modules/react-native-unimodules/gradle.groovy'/** * 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/** * The preferred build flavor of JavaScriptCore. * * For example, to use the international variant, you can use: * `def jscFlavor = 'org.webkit:android-jsc-intl:+'` * * The international variant includes ICU i18n library and necessary data * allowing to use e.g. `Date.toLocaleString` and `String.localeCompare` that * give correct results when using with locales other than en-US. Note that * this variant is about 6MiB larger per architecture than default.*/def jscFlavor ='org.webkit:android-jsc-intl:+'/** * Whether to enable the Hermes VM. * * This should be set on project.ext.react and mirrored here. If it is not set * on project.ext.react, JavaScript will not be compiled to Hermes Bytecode * and the benefits of using Hermes will therefore be sharply reduced.*/def enableHermes = project.ext.react.get("enableHermes", false);
android {
ndkVersion rootProject.ext.ndkVersion
compileSdkVersion rootProject.ext.compileSdkVersion
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
defaultConfig {
applicationId "com.myProject.android"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 2021101915
versionName "2.38"
}
splits {
abi {
reset()
enable enableSeparateBuildPerCPUArchitecture
universalApk false// If true, also generate a universal APK
include "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
}
}
signingConfigs {
debug {
storeFile file('debug.keystore')
storePassword 'android'
keyAlias 'androiddebugkey'
keyPassword 'android'
}
// Start added from https://reactnative.dev/docs/signed-apk-android#adding-signing-config-to-your-app-s-gradle-config
release {
if (project.hasProperty('MYAPP_UPLOAD_STORE_FILE')) {
storeFile file(MYAPP_UPLOAD_STORE_FILE)
storePassword MYAPP_UPLOAD_STORE_PASSWORD
keyAlias MYAPP_UPLOAD_KEY_ALIAS
keyPassword MYAPP_UPLOAD_KEY_PASSWORD
}
}
// End added
}
buildTypes {
debug {
signingConfig signingConfigs.debug
}
release {
// Changed based on https://reactnative.dev/docs/signed-apk-android#adding-signing-config-to-your-app-s-gradle-config
signingConfig signingConfigs.release
minifyEnabled enableProguardInReleaseBuilds
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
}
}
// 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:// https://developer.android.com/studio/build/configure-apk-splits.html// Example: versionCode 1 will generate 1001 for armeabi-v7a, 1002 for x86, etc.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 =
defaultConfig.versionCode *1000+ versionCodes.get(abi)
}
}
}
// Added from https://stackoverflow.com/a/47689687/309011
dexOptions {
javaMaxHeapSize "4g"
}
}
dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
//noinspection GradleDynamicVersion
implementation "com.facebook.react:react-native:+"// From node_modules
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.0.0"
debugImplementation("com.facebook.flipper:flipper:${FLIPPER_VERSION}") {
exclude group:'com.facebook.fbjni'
}
debugImplementation("com.facebook.flipper:flipper-network-plugin:${FLIPPER_VERSION}") {
exclude group:'com.facebook.flipper'
exclude group:'com.squareup.okhttp3', module:'okhttp'
}
debugImplementation("com.facebook.flipper:flipper-fresco-plugin:${FLIPPER_VERSION}") {
exclude group:'com.facebook.flipper'
}
if (enableHermes) {
def hermesPath ="../../node_modules/hermes-engine/android/";
debugImplementation files(hermesPath +"hermes-debug.aar")
releaseImplementation files(hermesPath +"hermes-release.aar")
} else {
implementation jscFlavor
}
// Added from https://docs.expo.io/bare/installing-unimodules/#configuration-for-android
addUnimodulesDependencies()
}
// 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 from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project)
// Added from https://rnfirebase.io/docs/v5.x.x/installation/android#2.-Setup-google-services.json// and from updated https://rnfirebase.io/#configure-firebase-with-android-credentials
apply plugin: 'com.google.gms.google-services'
android/settings.gradle:
// Start added from https://docs.expo.io/bare/installing-unimodules/#configuration-for-android
apply from: '../node_modules/react-native-unimodules/gradle.groovy'
includeUnimodulesProjects()
// End added
rootProject.name ='myProject'
apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings)
MainApplication.java:
packagecom.myproject.android;
importandroid.app.Application;
importandroid.content.Context;
importandroid.webkit.WebView;
importcom.facebook.react.PackageList;
importcom.facebook.react.ReactApplication;
importcom.imagepicker.ImagePickerPackage;
importcom.facebook.react.ReactInstanceManager;
importcom.facebook.react.ReactNativeHost;
importcom.facebook.react.ReactPackage;
importcom.facebook.soloader.SoLoader;
// Start added from https://docs.expo.io/bare/installing-unimodules/#configuration-for-androidimportcom.myproject.android.generated.BasePackageList;
importorg.unimodules.adapters.react.ModuleRegistryAdapter;
importorg.unimodules.adapters.react.ReactModuleRegistryProvider;
importorg.unimodules.core.interfaces.SingletonModule;
// End addedimportjava.lang.reflect.InvocationTargetException;
importjava.util.Arrays;
importjava.util.List;
publicclassMainApplicationextendsApplicationimplementsReactApplication {
// https://docs.expo.io/bare/installing-unimodules/#configuration-for-androidprivatefinalReactModuleRegistryProvidermModuleRegistryProvider = newReactModuleRegistryProvider(newBasePackageList().getPackageList(), null);
privatefinalReactNativeHostmReactNativeHost = newReactNativeHost(this) {
@OverridepublicbooleangetUseDeveloperSupport() {
returnBuildConfig.DEBUG;
}
@OverrideprotectedList<ReactPackage> getPackages() {
@SuppressWarnings("UnnecessaryLocalVariable")
List<ReactPackage> packages = newPackageList(this).getPackages();
// Packages that cannot be autolinked yet can be added manually here, for example:// Start added from https://docs.expo.io/bare/installing-unimodules/#configuration-for-androidList<ReactPackage> unimodules = Arrays.<ReactPackage>asList(
newModuleRegistryAdapter(mModuleRegistryProvider)
);
packages.addAll(unimodules);
// End addedreturnpackages;
}
@OverrideprotectedStringgetJSMainModuleName() {
return"index";
}
};
@OverridepublicReactNativeHostgetReactNativeHost() {
returnmReactNativeHost;
}
@OverridepublicvoidonCreate() {
super.onCreate();
SoLoader.init(this, /* native exopackage */false);
WebView.setWebContentsDebuggingEnabled(true);
initializeFlipper(this, getReactNativeHost().getReactInstanceManager());
}
/** * Loads Flipper in React Native templates. Call this in the onCreate method with something like * initializeFlipper(this, getReactNativeHost().getReactInstanceManager()); * * @param context * @param reactInstanceManager */privatestaticvoidinitializeFlipper(
Contextcontext, ReactInstanceManagerreactInstanceManager) {
if (BuildConfig.DEBUG) {
try {
/* We use reflection here to pick up the class that initializes Flipper, since Flipper library is not available in release mode */Class<?> aClass = Class.forName("com.myproject.android.ReactNativeFlipper");
aClass
.getMethod("initializeFlipper", Context.class, ReactInstanceManager.class)
.invoke(null, context, reactInstanceManager);
} catch (ClassNotFoundExceptione) {
e.printStackTrace();
} catch (NoSuchMethodExceptione) {
e.printStackTrace();
} catch (IllegalAccessExceptione) {
e.printStackTrace();
} catch (InvocationTargetExceptione) {
e.printStackTrace();
}
}
}
}
AndroidManifest.xml:
<manifestxmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"package="com.myproject.android">
<uses-permissionandroid:name="android.permission.INTERNET" />
<uses-permissionandroid:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permissionandroid:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permissionandroid:name="android.permission.READ_EXTERNAL_STORAGE"/>
<!-- tools:replace="android:allowBackup" added for AztecEditor because of conflicting allowBackup setting inside of com.github.wordpress-mobile.WordPress-Aztec-Android:glide-loader:v1.3.44-->
<applicationandroid:name=".MainApplication"android:label="@string/app_name"android:icon="@mipmap/ic_launcher"android:roundIcon="@mipmap/ic_launcher_round"android:allowBackup="false"android:theme="@style/AppTheme"tools:replace="android:allowBackup">
<activityandroid:name=".MainActivity"android:label="@string/app_name"android:configChanges="keyboard|keyboardHidden|orientation|screenSize"android:screenOrientation="portrait"android:windowSoftInputMode="adjustResize"android:launchMode="singleTask">
<!-- android:launchMode="singleTask" added from https://rnfirebase.io/docs/v5.x.x/links/android#Configure-Android-Project and should allow opening up links in existing instances of the MainActivity (i.e. if the app is already open, it wouldn't "reopen" the app)-->
<intent-filter>
<actionandroid:name="android.intent.action.MAIN" />
<categoryandroid:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<actionandroid:name="android.intent.action.VIEW" />
<categoryandroid:name="android.intent.category.DEFAULT" />
<categoryandroid:name="android.intent.category.BROWSABLE" />
<dataandroid:scheme="myproject" />
</intent-filter>
<intent-filterandroid:autoVerify="true">
<actionandroid:name="android.intent.action.VIEW" />
<categoryandroid:name="android.intent.category.DEFAULT" />
<categoryandroid:name="android.intent.category.BROWSABLE" />
<!-- Note that we only handle /plan/create and /plan/<ID> since all others are not supported in the app yet-->
<dataandroid:scheme="https" />
<dataandroid:scheme="http" />
<dataandroid:host="myproject.com" />
<dataandroid:host="*.myproject.com" />
<!-- Allow for app deep links that otherwise would redirect to the app store -->
<dataandroid:pathPrefix="/ios/" />
<dataandroid:pathPrefix="/android/" />
<dataandroid:pathPrefix="/deepLink/" />
</intent-filter>
<intent-filter>
<actionandroid:name="com.google.firebase.MESSAGING_EVENT" />
</intent-filter>
</activity>
</application>
</manifest>
Environment
Click To Expand
react-native info output:
System:
OS: macOS 11.6
CPU: (8) x64 Intel(R) Core(TM) i7-4870HQ CPU @ 2.50GHz
Memory: 85.99 MB / 16.00 GB
Shell: 5.1.4 - /usr/local/bin/bash
Binaries:
Node: 14.17.4 - /var/folders/nj/3v9_4kts7_l2n0cdfxldc8bm0000gn/T/yarn--1635182312125-0.05199772079424636/node
Yarn: 1.22.11 - /var/folders/nj/3v9_4kts7_l2n0cdfxldc8bm0000gn/T/yarn--1635182312125-0.05199772079424636/yarn
npm: 7.24.1 - ~/.nvm/versions/node/v14.17.4/bin/npm
Watchman: 2021.09.06.00 - /usr/local/bin/watchman
Managers:
CocoaPods: 1.11.2 - /usr/local/bin/pod
SDKs:
iOS SDK:
Platforms: iOS 15.0, DriverKit 20.4, macOS 11.3, tvOS 15.0, watchOS 8.0
Android SDK:
API Levels: 29, 30
Build Tools: 28.0.3, 29.0.2, 29.0.3, 30.0.2, 31.0.0
System Images: android-23 | Google APIs Intel x86 Atom_64, android-24 | Google APIs Intel x86 Atom_64
Android NDK: Not Found
IDEs:
Android Studio: 4.2 AI-202.7660.26.42.7351085
Xcode: 13.0/13A233 - /usr/bin/xcodebuild
Languages:
Java: 1.8.0_292 - /usr/bin/javac
npmPackages:
@react-native-community/cli: Not Found
react: 17.0.1 => 17.0.1
react-native: 0.64.2 => 0.64.2
react-native-macos: Not Found
npmGlobalPackages:
*react-native*: Not Found
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
Both
react-native-firebase version you're using that has this issue:
12.8.0
Firebase module(s) you're using that has the issue:
hsource
changed the title
🔥 [🐛] On Android, calls to getAppStartupDeepLinkUrl() cause an ObjectAlreadyConsumedException
[🐛] 🔥 On Android, calls to getAppStartupDeepLinkUrl() cause an ObjectAlreadyConsumedException
Oct 25, 2021
Great report, thanks @hsource
This is related to #5593 which was first released in react-native-firebase v12.6.0, so it will affect all versions between v12.6.0 and current (12.9.3 IIRC)
I think I've got a patch ready will post in a moment
put the UTM Parameters initialization local to where it may be used,
this way regardless of execution path it's always fresh and will
not be consumed twice
Fixes#5812
put the UTM Parameters initialization local to where it may be used,
this way regardless of execution path it's always fresh and will
not be consumed twice
Fixes#5812
Issue
We call
firebase.dynamicLinks().getInitialLink()
on app startup. In our logs, this seems to result in unhandled exceptions sometimes in the Java code.We run on:
Here's the stacktrace:
Project Files
Javascript: our code calling
package.json
:firebase.json
for react-native-firebase v6:N/A
Android
Click To Expand
Have you converted to AndroidX?
android/gradle.settings
jetifier=true
for Android compatibility?jetifier
for react-native compatibility?android/build.gradle
:android/app/build.gradle
:android/settings.gradle
:MainApplication.java
:AndroidManifest.xml
:Environment
Click To Expand
react-native info
output:react-native-firebase
version you're using that has this issue:Firebase
module(s) you're using that has the issue:TypeScript
?React Native Firebase
andInvertase
on Twitter for updates on the library.The text was updated successfully, but these errors were encountered: