File tree 8 files changed +23
-21
lines changed
8 files changed +23
-21
lines changed Original file line number Diff line number Diff line change 1
1
// Top-level build file where you can add configuration options common to all sub-projects/modules.
2
2
3
3
buildscript {
4
- ext. kotlin_version = ' 1.9.23 '
4
+ ext. kotlin_version = ' 2.1.0 '
5
5
6
6
repositories {
7
7
google()
8
8
mavenCentral()
9
9
}
10
10
dependencies {
11
- classpath ' com.android.tools.build:gradle:8.4.0 '
11
+ classpath ' com.android.tools.build:gradle:8.7.3 '
12
12
classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
13
13
14
-
15
14
// NOTE: Do not place your application dependencies here; they belong
16
15
// in the individual module build.gradle files
17
16
}
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ apply from: file('../gradle/signing.gradle')
21
21
22
22
android {
23
23
defaultConfig {
24
- compileSdk 34
24
+ compileSdk 35
25
25
applicationId " com.damn.anotherglass.glass.ee"
26
26
minSdkVersion 27
27
27
// noinspection ExpiredTargetSdkVersion
@@ -67,9 +67,9 @@ dependencies {
67
67
implementation project(' :glass-shared' )
68
68
implementation project(' :glass-ee-gestures' )
69
69
implementation ' androidx.recyclerview:recyclerview:1.3.2'
70
- implementation ' androidx.constraintlayout:constraintlayout:2.1.4 '
70
+ implementation ' androidx.constraintlayout:constraintlayout:2.2.0 '
71
71
implementation ' com.google.android.material:material:1.12.0'
72
- implementation ' androidx.core:core-ktx:1.13.1 '
72
+ implementation ' androidx.core:core-ktx:1.15.0 '
73
73
74
74
implementation ' io.coil-kt:coil:2.6.0'
75
75
}
Original file line number Diff line number Diff line change @@ -5,9 +5,9 @@ plugins {
5
5
6
6
android {
7
7
namespace ' com.damn.glass.shared'
8
- compileSdk 29
9
8
10
9
defaultConfig {
10
+ compileSdk 35
11
11
minSdk 19
12
12
13
13
testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
@@ -21,15 +21,15 @@ android {
21
21
}
22
22
}
23
23
compileOptions {
24
- sourceCompatibility JavaVersion . VERSION_1_8
25
- targetCompatibility JavaVersion . VERSION_1_8
24
+ sourceCompatibility JavaVersion . VERSION_17
25
+ targetCompatibility JavaVersion . VERSION_17
26
26
}
27
27
kotlinOptions {
28
- jvmTarget = ' 1.8 '
28
+ jvmTarget = JavaVersion . VERSION_17 . toString()
29
29
}
30
30
}
31
31
32
32
dependencies {
33
33
implementation project(' :shared' )
34
- implementation " androidx.annotation:annotation:1.7.1 "
34
+ implementation ' androidx.annotation:annotation:1.9.1 '
35
35
}
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ android {
30
30
}
31
31
}
32
32
33
+ // Later Java versions are not compatible with Glass GDK
33
34
compileOptions {
34
35
sourceCompatibility JavaVersion . VERSION_1_8
35
36
targetCompatibility JavaVersion . VERSION_1_8
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
3
3
distributionPath =wrapper/dists
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
6
- distributionUrl =https\://services.gradle.org/distributions/gradle-8.6 -all.zip
6
+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.9 -all.zip
Original file line number Diff line number Diff line change @@ -4,11 +4,12 @@ apply plugin: 'kotlin-android'
4
4
apply from : file(' ../gradle/signing.gradle' )
5
5
6
6
android {
7
- compileSdk 34
8
7
defaultConfig {
9
- applicationId " com.damn.anotherglass.phone "
8
+ compileSdk 35
10
9
minSdkVersion 21
11
10
targetSdkVersion 33
11
+
12
+ applicationId " com.damn.anotherglass.phone"
12
13
versionCode 1
13
14
versionName " 1.0"
14
15
}
@@ -49,12 +50,12 @@ dependencies {
49
50
50
51
implementation fileTree(dir : ' libs' , include : [' *.jar' ])
51
52
52
- implementation ' androidx.appcompat:appcompat:1.6.1 '
53
- implementation ' androidx.activity:activity-ktx:1.9.0 '
53
+ implementation ' androidx.appcompat:appcompat:1.7.0 '
54
+ implementation ' androidx.activity:activity-ktx:1.9.3 '
54
55
implementation ' com.google.android.material:material:1.12.0'
55
56
56
- implementation ' androidx.constraintlayout:constraintlayout:2.1.4 '
57
- implementation " org.jetbrains.kotlin:kotlin-stdlib-jdk7 :$kotlin_version "
57
+ implementation ' androidx.constraintlayout:constraintlayout:2.2.0 '
58
+ implementation " org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version "
58
59
59
60
implementation ' org.greenrobot:eventbus:3.3.1'
60
61
Original file line number Diff line number Diff line change 1
1
apply plugin : ' com.android.library'
2
2
3
3
android {
4
- compileSdkVersion 29
4
+
5
5
defaultConfig {
6
+ compileSdk 35
6
7
minSdkVersion 19
7
8
// noinspection ExpiredTargetSdkVersion
8
9
targetSdkVersion 29
@@ -18,5 +19,5 @@ android {
18
19
}
19
20
20
21
dependencies {
21
- implementation " androidx.annotation:annotation:1.7 .1"
22
+ implementation " androidx.annotation:annotation:1.9 .1"
22
23
}
You can’t perform that action at this time.
0 commit comments