@@ -8,7 +8,7 @@ buildscript {
88 }
99
1010 dependencies {
11- classpath ' com.android.tools.build:gradle:4.2.2 '
11+ classpath ' com.android.tools.build:gradle:8.1.4 '
1212 // noinspection DifferentKotlinGradleVersion
1313 classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
1414 }
@@ -50,6 +50,11 @@ def getExtOrIntegerDefault(name) {
5050
5151android {
5252 compileSdkVersion getExtOrIntegerDefault(' compileSdkVersion' )
53+ namespace ' com.extole.android.sdk'
54+
55+ buildFeatures {
56+ buildConfig true
57+ }
5358
5459 defaultConfig {
5560 minSdkVersion getExtOrIntegerDefault(' minSdkVersion' )
@@ -67,8 +72,12 @@ android {
6772 }
6873
6974 compileOptions {
70- sourceCompatibility JavaVersion . VERSION_1_8
71- targetCompatibility JavaVersion . VERSION_1_8
75+ sourceCompatibility JavaVersion . VERSION_11
76+ targetCompatibility JavaVersion . VERSION_11
77+ }
78+
79+ kotlinOptions {
80+ jvmTarget = ' 11'
7281 }
7382}
7483
@@ -148,8 +157,8 @@ dependencies {
148157 // noinspection GradleDynamicVersion
149158 implementation " com.facebook.react:react-native:+"
150159 implementation " org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version "
151- implementation ' com.extole.mobile:android-sdk:1.0.56 '
152- implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4 " )
160+ implementation ' com.extole.mobile:android-sdk:1.0.64 '
161+ implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 " )
153162 // From node_modules
154163}
155164
0 commit comments