1
1
ext {
2
- junitVersion = project. hasProperty(' junitVersion' ) ? rootProject. ext. junitVersion : ' 4.13.1 '
3
- androidxAppCompatVersion = project. hasProperty(' androidxAppCompatVersion' ) ? rootProject. ext. androidxAppCompatVersion : ' 1.2 .0'
4
- androidxJunitVersion = project. hasProperty(' androidxJunitVersion' ) ? rootProject. ext. androidxJunitVersion : ' 1.1.2 '
5
- androidxEspressoCoreVersion = project. hasProperty(' androidxEspressoCoreVersion' ) ? rootProject. ext. androidxEspressoCoreVersion : ' 3.3.0 '
2
+ junitVersion = project. hasProperty(' junitVersion' ) ? rootProject. ext. junitVersion : ' 4.13.2 '
3
+ androidxAppCompatVersion = project. hasProperty(' androidxAppCompatVersion' ) ? rootProject. ext. androidxAppCompatVersion : ' 1.7 .0'
4
+ androidxJunitVersion = project. hasProperty(' androidxJunitVersion' ) ? rootProject. ext. androidxJunitVersion : ' 1.2.1 '
5
+ androidxEspressoCoreVersion = project. hasProperty(' androidxEspressoCoreVersion' ) ? rootProject. ext. androidxEspressoCoreVersion : ' 3.6.1 '
6
6
}
7
7
8
8
buildscript {
9
- ext. kotlin_version = project. hasProperty(' kotlin_version' ) ? rootProject. ext. kotlin_version : ' 1.9.10 '
10
- ext. hypertrack_sdk_version = " 7.11.3 "
9
+ ext. kotlin_version = project. hasProperty(" kotlin_version" ) ? rootProject. ext. kotlin_version : ' 1.9.25 '
10
+ ext. hypertrack_sdk_version = " 7.11.4 "
11
11
ext. firebase_messaging_version = " 23.1.1"
12
12
13
13
repositories {
14
14
google()
15
15
jcenter()
16
16
}
17
17
dependencies {
18
- classpath ' com.android.tools.build:gradle:4.2.1 '
18
+ classpath ' com.android.tools.build:gradle:8.7.2 '
19
19
classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:${ kotlin_version} "
20
20
}
21
21
}
@@ -25,10 +25,10 @@ apply plugin: 'kotlin-android'
25
25
26
26
android {
27
27
namespace " com.hypertrack.sdk.capacitor"
28
- compileSdkVersion project. hasProperty(' compileSdkVersion' ) ? rootProject. ext. compileSdkVersion : 30
28
+ compileSdk project. hasProperty(' compileSdkVersion' ) ? rootProject. ext. compileSdkVersion : 35
29
29
defaultConfig {
30
- minSdkVersion project. hasProperty(' minSdkVersion' ) ? rootProject. ext. minSdkVersion : 21
31
- targetSdkVersion project. hasProperty(' targetSdkVersion' ) ? rootProject. ext. targetSdkVersion : 30
30
+ minSdkVersion project. hasProperty(' minSdkVersion' ) ? rootProject. ext. minSdkVersion : 23
31
+ targetSdkVersion project. hasProperty(' targetSdkVersion' ) ? rootProject. ext. targetSdkVersion : 35
32
32
versionCode 1
33
33
versionName " 1.0"
34
34
testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
@@ -43,11 +43,11 @@ android {
43
43
abortOnError false
44
44
}
45
45
compileOptions {
46
- sourceCompatibility JavaVersion . VERSION_1_8
47
- targetCompatibility JavaVersion . VERSION_1_8
46
+ sourceCompatibility JavaVersion . VERSION_21
47
+ targetCompatibility JavaVersion . VERSION_21
48
48
}
49
49
kotlinOptions {
50
- jvmTarget = JavaVersion . VERSION_1_8
50
+ jvmTarget = JavaVersion . VERSION_21
51
51
}
52
52
}
53
53
0 commit comments