Skip to content

Commit

Permalink
del: removed proguard. providers don't work with minification enabled…
Browse files Browse the repository at this point in the history
… :((
  • Loading branch information
rhenwinch committed Apr 17, 2024
1 parent 0c5ae82 commit 9cb5da5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 103 deletions.
16 changes: 2 additions & 14 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -46,24 +46,12 @@ android {
}

buildTypes {
release {
isMinifyEnabled = true
isShrinkResources = true
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
)
}

getByName("prerelease") {
initWith(getByName("release"))
isMinifyEnabled = false
isShrinkResources = false

applicationIdSuffix = ".pre_release"
versionNameSuffix = "-PreR-[${getCommitVersion()}]"
versionNameSuffix = "-[${getCommitVersion()}]"

resValue("string", "app_name", "$applicationName Pre-Release")
resValue("string", "app_name", "$applicationName Beta")
resValue("string", "application_id", _applicationId + applicationIdSuffix)
resValue("string", "version_name", _versionName + versionNameSuffix)
}
Expand Down
89 changes: 0 additions & 89 deletions app/proguard-rules.pro

This file was deleted.

0 comments on commit 9cb5da5

Please sign in to comment.