Add debug mode. (#294)

* Add debug mode.

* Triggering a build.
This commit is contained in:
Dessalines 2023-06-18 09:45:13 -04:00 committed by GitHub
parent d23f449a68
commit 36048094cf
5 changed files with 15 additions and 8 deletions

View File

@ -45,6 +45,10 @@ android {
signingConfig signingConfigs.release
}
}
debug {
applicationIdSuffix '.debug'
versionNameSuffix ' (DEBUG)'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
@ -64,7 +68,7 @@ android {
}
dependencies {
implementation "androidx.navigation:navigation-compose:2.5.3"
implementation "androidx.navigation:navigation-compose:2.6.0"
implementation 'com.github.alorma:compose-settings-ui-m3:0.27.0'
// To use Kotlin annotation processing tool

View File

@ -0,0 +1,3 @@
<resources>
<string name="app_name">Thumb-Key (Debug)</string>
</resources>

View File

@ -23,7 +23,7 @@
<service
android:name=".IMEService"
android:label="Thumb-Key"
android:label="@string/app_name"
android:permission="android.permission.BIND_INPUT_METHOD"
android:exported="false">
<intent-filter>

View File

@ -7,10 +7,10 @@ buildscript {
}
plugins {
id 'com.android.application' version '8.2.0-alpha07' apply false
id 'com.android.library' version '8.2.0-alpha07' apply false
id 'org.jetbrains.kotlin.android' version '1.8.21' apply false
id 'org.jmailen.kotlinter' version "3.14.0" apply false
id 'com.android.application' version '8.0.2' apply false
id 'com.android.library' version '8.0.2' apply false
id 'org.jetbrains.kotlin.android' version '1.8.20' apply false
id 'org.jmailen.kotlinter' version "3.15.0" apply false
id 'com.google.devtools.ksp' version "1.8.21-1.0.11" apply false
}

View File

@ -5,8 +5,8 @@ pluginManagement {
mavenCentral()
}
plugins {
id 'com.android.application' version '8.2.0-alpha07'
id 'com.android.library' version '8.2.0-alpha07'
id 'com.android.application' version '8.2.0-alpha08'
id 'com.android.library' version '8.2.0-alpha08'
id 'org.jetbrains.kotlin.android' version '1.6.21'
}
}