Skip to content

Commit acd314a

Browse files
committed
Upgrade libs
1 parent 80ce1ee commit acd314a

File tree

6 files changed

+14
-23
lines changed

6 files changed

+14
-23
lines changed

Crash/build.gradle

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,8 @@ android {
77
compileSdkVersion 31
88

99
defaultConfig {
10-
minSdkVersion 16
10+
minSdkVersion 19
1111
targetSdkVersion 31
12-
versionCode 1
13-
versionName "1.0"
1412

1513
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1614
consumerProguardFiles "consumer-rules.pro"
@@ -23,11 +21,8 @@ android {
2321
}
2422
}
2523
compileOptions {
26-
sourceCompatibility JavaVersion.VERSION_1_8
27-
targetCompatibility JavaVersion.VERSION_1_8
28-
}
29-
kotlinOptions {
30-
jvmTarget = '1.8'
24+
sourceCompatibility JavaVersion.VERSION_17
25+
targetCompatibility JavaVersion.VERSION_17
3126
}
3227
}
3328

app/build.gradle

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,10 @@ android {
3232

3333

3434
compileOptions {
35-
sourceCompatibility JavaVersion.VERSION_1_8
36-
targetCompatibility JavaVersion.VERSION_1_8
35+
sourceCompatibility JavaVersion.VERSION_17
36+
targetCompatibility JavaVersion.VERSION_17
3737
}
3838

39-
kotlinOptions.jvmTarget = "1.8"
4039

4140
}
4241

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
buildscript {
22
ext {
33
omegaRecyclerView = '1.10.1'
4-
omegaMoxy_version = '3.1.0'
4+
omegaMoxy_version = '3.1.2'
55
kotlinCorutines_version = '1.5.0'
66

77
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
@@ -10,8 +10,8 @@ buildscript {
1010
}
1111
}
1212
plugins {
13-
id 'com.android.application' version '7.3.0' apply false
14-
id 'com.android.library' version '7.3.0' apply false
13+
id 'com.android.application' version '7.4.2' apply false
14+
id 'com.android.library' version '7.4.2' apply false
1515
id 'org.jetbrains.kotlin.android' version '1.9.0' apply false
1616
id 'org.jetbrains.kotlin.jvm' version '1.9.0' apply false
1717
id 'com.google.devtools.ksp' version '1.9.0-1.0.11' apply false

core/build.gradle

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@ android {
3636
defaultConfig {
3737
minSdkVersion 21
3838
targetSdkVersion 31
39-
versionCode 1
40-
versionName "1.0"
4139

4240
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
4341

@@ -51,11 +49,10 @@ android {
5149
}
5250

5351
compileOptions {
54-
sourceCompatibility JavaVersion.VERSION_1_8
55-
targetCompatibility JavaVersion.VERSION_1_8
52+
sourceCompatibility JavaVersion.VERSION_17
53+
targetCompatibility JavaVersion.VERSION_17
5654
}
5755

58-
kotlinOptions.jvmTarget = "1.8"
5956
}
6057

6158

mvp-processor/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ publishing {
2929
}
3030

3131
java {
32-
sourceCompatibility = JavaVersion.VERSION_1_8
33-
targetCompatibility = JavaVersion.VERSION_1_8
32+
sourceCompatibility = JavaVersion.VERSION_17
33+
targetCompatibility = JavaVersion.VERSION_17
3434
}
3535

3636
dependencies {

stub/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ publishing {
1919
}
2020

2121
java {
22-
sourceCompatibility = JavaVersion.VERSION_1_7
23-
targetCompatibility = JavaVersion.VERSION_1_7
22+
sourceCompatibility = JavaVersion.VERSION_17
23+
targetCompatibility = JavaVersion.VERSION_17
2424
}

0 commit comments

Comments
 (0)