|
|
|
@ -25,6 +25,12 @@ apply plugin: 'com.android.application'
|
|
|
|
|
apply plugin: 'kotlin-android' |
|
|
|
|
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" |
|
|
|
|
|
|
|
|
|
def keystoreProperties = new Properties() |
|
|
|
|
def keystorePropertiesFile = rootProject.file('key.properties') |
|
|
|
|
if (keystorePropertiesFile.exists()) { |
|
|
|
|
keystoreProperties.load(new FileInputStream(keystorePropertiesFile)) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
android { |
|
|
|
|
compileSdkVersion 31 |
|
|
|
|
|
|
|
|
@ -50,11 +56,17 @@ android {
|
|
|
|
|
versionName flutterVersionName |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
signingConfigs { |
|
|
|
|
release { |
|
|
|
|
keyAlias keystoreProperties['keyAlias'] |
|
|
|
|
keyPassword keystoreProperties['keyPassword'] |
|
|
|
|
storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null |
|
|
|
|
storePassword keystoreProperties['storePassword'] |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
buildTypes { |
|
|
|
|
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 |
|
|
|
|
signingConfig signingConfigs.release |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|