Skip to content
This repository has been archived by the owner on Sep 9, 2024. It is now read-only.

Commit

Permalink
fix(android): move signingConfigs before buildTypes
Browse files Browse the repository at this point in the history
  • Loading branch information
Craftplacer committed Mar 1, 2024
1 parent 233cce3 commit 5f65fb7
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions packages/kaiteki/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,15 @@ android {
main.java.srcDirs += 'src/main/kotlin'
}

signingConfigs {
release {
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null
storePassword keystoreProperties['storePassword']
}
}

buildTypes {
debug {
applicationIdSuffix ".debug"
Expand All @@ -63,15 +72,6 @@ android {
versionName flutterVersionName
}

signingConfigs {
release {
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null
storePassword keystoreProperties['storePassword']
}
}

flavorDimensions 'distribution'

productFlavors {
Expand Down

0 comments on commit 5f65fb7

Please sign in to comment.