Fixed gradle version number, dependency implementation, and bool value.

On branch main
 Your branch is up to date with 'origin/main'.

 Changes to be committed:
	modified:   app/build.gradle
	modified:   app/src/fdroid/res/values/bools.xml
	modified:   app/src/main/kotlin/com/simplemobiletools/keyboard/activities/SettingsActivity.kt
This commit is contained in:
Jovier 2022-05-22 17:34:29 -04:00
parent 059487a18b
commit f35e7a668d
3 changed files with 5 additions and 5 deletions

View File

@ -16,8 +16,8 @@ android {
applicationId "com.simplemobiletools.keyboard"
minSdk 23
targetSdk 31
versionCode 7
versionName "5.1.1"
versionCode 8
versionName "5.1.2"
multiDexEnabled true
setProperty("archivesBaseName", "keyboard")
vectorDrawables.useSupportLibrary = true
@ -64,7 +64,7 @@ android {
}
dependencies {
implementation 'com.github.SimpleMobileTools:Simple-Commons:e5a4973e6a'
implementation 'com.github.SimpleMobileTools:Simple-Commons:795a4ae3e3'
kapt 'androidx.room:room-compiler:2.4.2'
implementation 'androidx.room:room-runtime:2.4.2'

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<bool name="show_donate_in_about">true</bool>
<bool name="avoid_showing_rating_prompt">true</bool>
<bool name="hide_google_relations">true</bool>
<bool name="pretend_thank_you_installed">true</bool>
</resources>