Merge pull request #463 from thonsi/devel

This commit is contained in:
Koitharu
2023-08-21 10:49:12 +03:00
committed by GitHub
2 changed files with 6 additions and 6 deletions

View File

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

View File

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