Skip to content

Commit

Permalink
Update: Adjust signing configuration in build.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
judemont committed Jun 22, 2024
1 parent 2d60f85 commit db05efb
Showing 1 changed file with 4 additions and 12 deletions.
16 changes: 4 additions & 12 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,28 +51,20 @@ android {
versionName flutterVersionName
}

signingConfigs {
release {
storeFile file("release-key.jks")
storePassword "iu2t7LwN"
keyAlias "mykey"
keyPassword "iu2t7LwN"
}
}

buildTypes {
release {
signingConfig signingConfigs.release
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works.
signingConfig signingConfigs.debug
}
}

dependenciesInfo {
// Disables dependency metadata when building APKs.
includeInApk = false
// Disables dependency metadata when building Android App Bundles.
includeInBundle = false
}

}

flutter {
Expand Down

0 comments on commit db05efb

Please sign in to comment.