Commit 2863514 1 parent 7db9f50 commit 2863514 Copy full SHA for 2863514
File tree 5 files changed +27
-33
lines changed
5 files changed +27
-33
lines changed Original file line number Diff line number Diff line change 1
1
plugins {
2
- alias(libs.plugins. android.application)
3
- alias(libs.plugins .kotlin.android)
4
- alias(libs.plugins .marathon)
2
+ id( " com. android.application" )
3
+ id( " org.jetbrains .kotlin.android" )
4
+ id( " com.badoo .marathon" )
5
5
}
6
6
7
7
java {
@@ -11,13 +11,9 @@ java {
11
11
}
12
12
13
13
android {
14
- compileSdk = 34
15
14
namespace = " com.example"
16
15
17
16
defaultConfig {
18
- minSdk = 21
19
- targetSdk = 34
20
-
21
17
applicationId = " com.example"
22
18
versionCode = 1
23
19
versionName = " 1.0"
Original file line number Diff line number Diff line change 1
1
plugins {
2
- alias(libs.plugins. android.application) apply false
3
- alias(libs.plugins. android.library) apply false
4
- alias(libs.plugins .kotlin.android) apply false
5
- alias(libs.plugins .marathon)
2
+ id( " com. android.application" ) apply false
3
+ id( " com. android.library" ) apply false
4
+ id( " org.jetbrains .kotlin.android" ) apply false
5
+ id( " com.badoo .marathon" )
6
6
}
7
7
8
8
marathon {
Original file line number Diff line number Diff line change 1
1
[versions ]
2
- android-gradle-plugin = " 8.8.1"
3
2
androidx-appcompat = " 1.7.0"
4
3
androidx-constraintlayout = " 2.1.4"
5
4
androidx-test-runner = " 1.6.2"
6
5
androidx-test-junit = " 1.2.1"
7
- kotlin-gradle-plugin = " 2.1.10"
8
6
9
7
[libraries ]
10
8
androidx-appcompat = { module = " androidx.appcompat:appcompat" , version.ref = " androidx-appcompat" }
11
9
androidx-constraintlayout = { module = " androidx.constraintlayout:constraintlayout" , version.ref = " androidx-constraintlayout" }
12
10
androidx-test-runner = { module = " androidx.test:runner" , version.ref = " androidx-test-runner" }
13
11
androidx-test-junit = { module = " androidx.test.ext:junit" , version.ref = " androidx-test-junit" }
14
-
15
- [plugins ]
16
- android-application = { id = " com.android.application" , version.ref = " android-gradle-plugin" }
17
- android-library = { id = " com.android.library" , version.ref = " android-gradle-plugin" }
18
- kotlin-android = { id = " org.jetbrains.kotlin.android" , version.ref = " kotlin-gradle-plugin" }
19
- marathon = { id = " com.badoo.marathon" }
Original file line number Diff line number Diff line change 1
1
plugins {
2
- alias(libs.plugins. android.library)
3
- alias(libs.plugins .kotlin.android)
4
- alias(libs.plugins .marathon)
2
+ id( " com. android.library" )
3
+ id( " org.jetbrains .kotlin.android" )
4
+ id( " com.badoo .marathon" )
5
5
}
6
6
7
7
java {
@@ -11,22 +11,11 @@ java {
11
11
}
12
12
13
13
android {
14
- compileSdk = 34
15
14
namespace = " com.example.library"
16
15
17
16
defaultConfig {
18
- minSdk = 21
19
-
20
17
testInstrumentationRunner = " androidx.test.runner.AndroidJUnitRunner"
21
18
}
22
-
23
- lint {
24
- targetSdk = 34
25
- }
26
-
27
- testOptions {
28
- targetSdk = 34
29
- }
30
19
}
31
20
32
21
dependencies {
Original file line number Diff line number Diff line change @@ -5,9 +5,26 @@ pluginManagement {
5
5
google()
6
6
maven(" https://jitpack.io" )
7
7
}
8
+ plugins {
9
+ val androidPluginVersion = " 8.8.1"
10
+ id(" com.android.application" ) version androidPluginVersion
11
+ id(" com.android.library" ) version androidPluginVersion
12
+ id(" com.android.settings" ) version androidPluginVersion
13
+ id(" org.jetbrains.kotlin.android" ) version " 2.1.10"
14
+ }
8
15
includeBuild(" .." )
9
16
}
10
17
18
+ plugins {
19
+ id(" com.android.settings" )
20
+ }
21
+
22
+ android {
23
+ compileSdk = 34
24
+ minSdk = 21
25
+ targetSdk = 34
26
+ }
27
+
11
28
dependencyResolutionManagement {
12
29
repositories {
13
30
mavenCentral()
You can’t perform that action at this time.
0 commit comments