Skip to content

Commit

Permalink
update gradle files with fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
nain-F49FF806 committed Oct 2, 2024
1 parent a655700 commit 67670f2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ android {
signingConfigs {
if (rootProject.ext.get("keyStoreFile") != null && (rootProject.ext.get("keyStoreFile") as File).exists()) {
create("aer") {
storeFile = file(rootProject.ext.get("keyStoreFile") as String)
storeFile = file(rootProject.ext.get("keyStoreFile") as File)
storePassword = rootProject.ext.get("keyStorePassword") as String
keyAlias = rootProject.ext.get("keyAlias") as String
keyPassword = rootProject.ext.get("keyPassword") as String
Expand Down
1 change: 0 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
android.defaults.buildfeatures.buildconfig=true
android.nonFinalResIds=false
android.nonTransitiveRClass=true
android.useAndroidX=true
Expand Down

0 comments on commit 67670f2

Please sign in to comment.