Debug launcher icon

This commit is contained in:
Koitharu
2020-03-04 19:46:51 +02:00
parent 6953ca21a9
commit a5d863c84c
21 changed files with 122 additions and 9 deletions

View File

@@ -11,17 +11,17 @@ android {
buildToolsVersion '29.0.3'
defaultConfig {
applicationId "org.koitharu.kotatsu"
applicationId 'org.koitharu.kotatsu'
minSdkVersion 21
targetSdkVersion 29
versionCode gitCommits
versionName "0.1"
versionName '0.1'
buildConfigField 'String', 'GIT_BRANCH', "\"${gitBranch}\""
kapt {
arguments {
arg("room.schemaLocation", "$projectDir/schemas".toString())
arg('room.schemaLocation', "$projectDir/schemas".toString())
}
}
}
@@ -35,7 +35,7 @@ android {
}
buildTypes {
debug {
applicationIdSuffix = ".debug"
applicationIdSuffix = '.debug'
}
release {
minifyEnabled true
@@ -56,13 +56,13 @@ androidExtensions {
experimental = true
}
dependencies {
implementation fileTree(dir: "libs", include: ["*.jar", "*.aar"])
implementation fileTree(dir: 'libs', include: ['*.jar', '*.aar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.3'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.3'
implementation 'androidx.core:core-ktx:1.3.0-alpha01'
implementation "androidx.fragment:fragment-ktx:1.2.2"
implementation 'androidx.fragment:fragment-ktx:1.2.2'
implementation 'androidx.appcompat:appcompat:1.2.0-alpha02'
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta4'
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0-alpha03'
@@ -84,7 +84,7 @@ dependencies {
implementation 'com.squareup.okio:okio:2.4.3'
implementation 'org.jsoup:jsoup:1.12.2'
implementation 'org.koin:koin-android:2.1.0'
implementation 'org.koin:koin-android:2.1.1'
implementation 'io.coil-kt:coil:0.9.5'
implementation 'com.davemorrissey.labs:subsampling-scale-image-view:3.10.0'
implementation 'com.tomclaw.cache:cache:1.0'