Skip to content

Commit e23dd80

Browse files
authored
Merge pull request #527 from AppDevNext/compileSdk
Fix compileSdk deprecation
2 parents a8b2efc + 642edd5 commit e23dd80

5 files changed

Lines changed: 5 additions & 13 deletions

File tree

LogcatCoreLib/build.gradle

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@ plugins {
55
}
66

77
android {
8-
compileSdkVersion propCompileSdkVersion
9-
108
defaultConfig {
9+
compileSdk propCompileSdkVersion
1110
buildConfigField "String", "VERSIONNAME", "\"" + getTag() + "\""
1211

1312
minSdkVersion 16
@@ -18,7 +17,6 @@ android {
1817
sourceCompatibility JavaVersion.VERSION_17
1918
targetCompatibility JavaVersion.VERSION_17
2019
}
21-
2220
}
2321

2422
dependencies {

LogcatCoreUI/build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@ plugins {
55
}
66

77
android {
8-
compileSdkVersion propCompileSdkVersion
9-
108
defaultConfig {
9+
compileSdk propCompileSdkVersion
1110
buildConfigField "String", "VERSIONNAME", "\"" + getTag() + "\""
1211

1312
minSdkVersion 16

LogcatCountlyLib/build.gradle

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,8 @@ plugins {
55
}
66

77
android {
8-
compileSdkVersion propCompileSdkVersion
9-
108
defaultConfig {
11-
9+
compileSdk propCompileSdkVersion
1210
minSdkVersion 17
1311
project.archivesBaseName = "LogcatCountly"
1412
}

LogcatCrashlyticLib/build.gradle

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,8 @@ plugins {
66
}
77

88
android {
9-
compileSdkVersion propCompileSdkVersion
10-
119
defaultConfig {
12-
10+
compileSdk propCompileSdkVersion
1311
minSdkVersion 19
1412
project.archivesBaseName = "LogcatCrashlytic"
1513
}

sample/build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,13 @@ if (useFirebase() == "true") {
1111
}
1212

1313
android {
14-
compileSdkVersion propCompileSdkVersion
15-
1614
defaultConfig {
1715
applicationId 'info.hannes.logcat.sample'
1816
versionCode 1
1917
versionName "1.0"
2018

2119
minSdkVersion 16
20+
compileSdk propCompileSdkVersion
2221
targetSdkVersion 33
2322

2423
buildConfigField "boolean", 'WITH_FIREBASE', useFirebase()

0 commit comments

Comments
 (0)