File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -20,21 +20,24 @@ android {
2020 }
2121
2222 defaultConfig {
23- // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
2423 applicationId = " com.rdnbenet.rdnbenet"
25- // You can update the following values to match your application needs.
26- // For more information, see: https://flutter.dev/to/review-gradle-config.
2724 minSdk = flutter.minSdkVersion
2825 targetSdk = flutter.targetSdkVersion
2926 versionCode = flutter.versionCode
3027 versionName = flutter.versionName
3128 }
3229
30+ signingConfigs {
31+ release {
32+ storeFile file(System .getenv(" KEYSTORE_FILE" ) ? : " keystore.jks" )
33+ storePassword System .getenv(" KEYSTORE_PASSWORD" )
34+ keyAlias System .getenv(" KEY_ALIAS" )
35+ keyPassword System .getenv(" KEY_PASSWORD" )
36+ }
37+ }
3338 buildTypes {
3439 release {
35- // TODO: Add your own signing config for the release build.
36- // Signing with the debug keys for now, so `flutter run --release` works.
37- signingConfig = signingConfigs.getByName(" debug" )
40+ signingConfig signingConfigs.release
3841 }
3942 }
4043}
Original file line number Diff line number Diff line change 11name : rdnbenet
22description : " Network connectivity checker - test domains and IP ranges"
33publish_to : ' none'
4- version : 0.1.7
4+ version : 0.1.8
55
66environment :
77 sdk : ^3.10.4
You can’t perform that action at this time.
0 commit comments