File tree 2 files changed +16
-9
lines changed
unifiedpush_android/android
2 files changed +16
-9
lines changed Original file line number Diff line number Diff line change @@ -2,14 +2,14 @@ group 'org.unifiedpush.flutter.connector'
2
2
version ' 1.0-SNAPSHOT'
3
3
4
4
buildscript {
5
- ext. kotlin_version = ' 1.7.20 '
5
+ ext. kotlin_version = ' 2.0.10 '
6
6
repositories {
7
7
google()
8
8
mavenCentral()
9
9
}
10
10
11
11
dependencies {
12
- classpath ' com.android.tools.build:gradle:8.2.0 '
12
+ classpath ' com.android.tools.build:gradle:8.5.1 '
13
13
classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
14
14
}
15
15
}
@@ -30,14 +30,20 @@ rootProject.allprojects {
30
30
apply plugin : ' com.android.library'
31
31
apply plugin : ' kotlin-android'
32
32
33
-
34
- kotlin {
35
- jvmToolchain(8 )
36
- }
37
-
38
33
android {
39
34
compileSdk 34
40
35
36
+ compileOptions{
37
+ sourceCompatibility JavaVersion . VERSION_1_8
38
+ targetCompatibility JavaVersion . VERSION_1_8
39
+ }
40
+
41
+ kotlinOptions {
42
+ jvmTarget = ' 1.8'
43
+ // languageVersion provides source compatibility with the specified version of Kotlin
44
+ languageVersion = ' 1.7'
45
+ }
46
+
41
47
sourceSets {
42
48
main. java. srcDirs + = ' src/main/kotlin'
43
49
}
Original file line number Diff line number Diff line change 1
- # Wed Dec 27 11:09:44 CET 2023
2
1
distributionBase =GRADLE_USER_HOME
3
2
distributionPath =wrapper/dists
4
- distributionUrl =https\://services.gradle.org/distributions/gradle-8.2-bin.zip
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.9-bin.zip
4
+ networkTimeout =10000
5
+ validateDistributionUrl =true
5
6
zipStoreBase =GRADLE_USER_HOME
6
7
zipStorePath =wrapper/dists
You can’t perform that action at this time.
0 commit comments