Use newer gradle syntax

pull/456/head
Thonsi 3 years ago committed by GitHub
parent 925c24471e
commit e9480617da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -14,10 +14,10 @@ android {
defaultConfig { defaultConfig {
applicationId 'org.koitharu.kotatsu' applicationId 'org.koitharu.kotatsu'
minSdkVersion 21 minSdk = 21
targetSdkVersion 34 targetSdk = 34
versionCode 570 versionCode = 570
versionName '6.0-a1' versionName = "6.0-a1"
generatedDensities = [] generatedDensities = []
testInstrumentationRunner "org.koitharu.kotatsu.HiltTestRunner" testInstrumentationRunner "org.koitharu.kotatsu.HiltTestRunner"
ksp { ksp {

@ -21,6 +21,6 @@ allprojects {
} }
} }
task clean(type: Delete) { tasks.register('clean', Delete) {
delete rootProject.buildDir delete rootProject.buildDir
} }

Loading…
Cancel
Save