diff --git a/fastlane/FastFile b/fastlane/FastFile index 938a8bbc06..c0f8489e29 100644 --- a/fastlane/FastFile +++ b/fastlane/FastFile @@ -132,6 +132,7 @@ platform :android do skip_upload_metadata: true, skip_upload_images: true, skip_upload_screenshots: true, + skip_upload_apk: true, ) end diff --git a/fastlane/metadata/android/en-US/changelogs/default.txt b/fastlane/metadata/android/en-US/changelogs/default.txt index aa949b47b7..3add29309c 100644 --- a/fastlane/metadata/android/en-US/changelogs/default.txt +++ b/fastlane/metadata/android/en-US/changelogs/default.txt @@ -1 +1 @@ -Initial Release \ No newline at end of file +chore: Upload `google-services.json` file (#2295) diff --git a/mifosng-android/build.gradle.kts b/mifosng-android/build.gradle.kts index fac2a36dfb..5b776ce10c 100644 --- a/mifosng-android/build.gradle.kts +++ b/mifosng-android/build.gradle.kts @@ -54,7 +54,7 @@ android { // TODO:: Fix the proguard rules for release build release { isMinifyEnabled = false - isDebuggable = true + isDebuggable = false isShrinkResources = false applicationIdSuffix = MifosBuildType.RELEASE.applicationIdSuffix proguardFiles(getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro")