1
1
ext {
2
2
junitVersion = project. hasProperty(' junitVersion' ) ? rootProject. ext. junitVersion : ' 4.13.2'
3
- androidxAppCompatVersion = project. hasProperty(' androidxAppCompatVersion' ) ? rootProject. ext. androidxAppCompatVersion : ' 1.4.2 '
4
- androidxJunitVersion = project. hasProperty(' androidxJunitVersion' ) ? rootProject. ext. androidxJunitVersion : ' 1.1.3 '
5
- androidxEspressoCoreVersion = project. hasProperty(' androidxEspressoCoreVersion' ) ? rootProject. ext. androidxEspressoCoreVersion : ' 3.4.0 '
3
+ androidxAppCompatVersion = project. hasProperty(' androidxAppCompatVersion' ) ? rootProject. ext. androidxAppCompatVersion : ' 1.6.1 '
4
+ androidxJunitVersion = project. hasProperty(' androidxJunitVersion' ) ? rootProject. ext. androidxJunitVersion : ' 1.1.5 '
5
+ androidxEspressoCoreVersion = project. hasProperty(' androidxEspressoCoreVersion' ) ? rootProject. ext. androidxEspressoCoreVersion : ' 3.5.1 '
6
6
}
7
7
8
8
buildscript {
@@ -18,7 +18,7 @@ buildscript {
18
18
maven { url " https://jitpack.io" }
19
19
}
20
20
dependencies {
21
- classpath ' com.android.tools.build:gradle:7.2.1 '
21
+ classpath ' com.android.tools.build:gradle:8.0.0 '
22
22
classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion "
23
23
}
24
24
}
@@ -29,10 +29,10 @@ apply plugin: 'kotlin-parcelize'
29
29
30
30
android {
31
31
namespace " com.resgrid.plugins.resgrid"
32
- compileSdkVersion project. hasProperty(' compileSdkVersion' ) ? rootProject. ext. compileSdkVersion : 32
32
+ compileSdkVersion project. hasProperty(' compileSdkVersion' ) ? rootProject. ext. compileSdkVersion : 33
33
33
defaultConfig {
34
34
minSdkVersion project. hasProperty(' minSdkVersion' ) ? rootProject. ext. minSdkVersion : 22
35
- targetSdkVersion project. hasProperty(' targetSdkVersion' ) ? rootProject. ext. targetSdkVersion : 32
35
+ targetSdkVersion project. hasProperty(' targetSdkVersion' ) ? rootProject. ext. targetSdkVersion : 33
36
36
versionCode 1
37
37
versionName " 1.0"
38
38
testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
@@ -47,8 +47,8 @@ android {
47
47
abortOnError false
48
48
}
49
49
compileOptions {
50
- sourceCompatibility JavaVersion . VERSION_11
51
- targetCompatibility JavaVersion . VERSION_11
50
+ sourceCompatibility JavaVersion . VERSION_17
51
+ targetCompatibility JavaVersion . VERSION_17
52
52
}
53
53
buildFeatures {
54
54
viewBinding = true
@@ -66,7 +66,7 @@ dependencies {
66
66
implementation fileTree(dir : ' libs' , include : [' *.jar' ])
67
67
implementation project(' :capacitor-android' )
68
68
implementation " androidx.appcompat:appcompat:$androidxAppCompatVersion "
69
- implementation " org.jetbrains.kotlin:kotlin-stdlib-jdk7: $k otlinVersion "
69
+ implementation " org.jetbrains.kotlin:kotlin-stdlib: $k otlin_version "
70
70
implementation " org.jetbrains.kotlinx:kotlinx-coroutines-android:${ coroutinesVersion} "
71
71
implementation ' com.google.android.material:material:1.6.1'
72
72
implementation ' androidx.appcompat:appcompat:1.4.2'
0 commit comments