made some changes to the UI, removed leaderboards. updated gamesaves

This commit is contained in:
Warren H
2026-06-18 13:00:29 -04:00
parent 3c90998a61
commit a604569a2f
44 changed files with 2301 additions and 435 deletions
+14 -2
View File
@@ -7,8 +7,8 @@ android {
applicationId "com.warren.iwanttoheal"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 1
versionName "1.0"
versionCode 32
versionName "1.0.21"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
aaptOptions {
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.
@@ -24,6 +24,18 @@ android {
}
}
def invalidAndroidResCopies = tasks.register('removeInvalidAndroidResCopies', Delete) {
delete fileTree("${projectDir}/src/main/res") {
include '**/* *.*'
}
}
tasks.matching { task ->
task.name.startsWith('merge') && task.name.endsWith('Resources')
}.configureEach {
dependsOn(invalidAndroidResCopies)
}
repositories {
flatDir{
dirs '../capacitor-cordova-android-plugins/src/main/libs', 'libs'