-
Notifications
You must be signed in to change notification settings - Fork 20
Open
Description
The app builds fine with React-Native 0.71, and for 0.73.4 when apptentive-react-native is not a dependency. However whenever I add apptentive-react-native as a dependency to my 0.73.4 project the build fails:



My android/build.grade:
buildscript {
ext {
buildToolsVersion = "34.0.0"
RNNKotlinVersion = "1.8.0"
RNNKotlinStdlib = "kotlin-stdlib-jdk8"
minSdkVersion = 21
compileSdkVersion = 34
targetSdkVersion = 34
supportVersion = "29.0.2"
facebookSdkVersion = "11.3.0"
ndkVersion = "25.1.8937393"
}
repositories {
google()
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
dependencies {
classpath "com.facebook.react:react-native-gradle-plugin"
classpath "de.undercouch:gradle-download-task:4.1.2"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$RNNKotlinVersion"
classpath("com.android.tools.build:gradle")
classpath 'com.google.gms:google-services:4.3.14'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.5.2'
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin")
}
def credentialsProps = new Properties()
if (file("$rootDir/app/credentials.properties").exists()) {
file("$rootDir/app/credentials.properties").withInputStream { credentialsProps.load(it) }
}
ext.credentialsProps = credentialsProps
}
apply plugin: "com.facebook.react.rootproject"
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels