Cd integration (#24)

* - fastlane added
* Updated config.yml
This commit is contained in:
2023-02-18 00:07:14 +00:00
committed by GitHub
parent b823d2f4fd
commit 1bfd6e38e5
10 changed files with 493 additions and 10 deletions

View File

@@ -21,10 +21,10 @@ if (flutterVersionName == null) {
flutterVersionName = '1.0'
}
def relStorePassword = System.getenv("storePassword")
def relKeyPassword = System.getenv("keyPassword")
def relKeyAlias = System.getenv("keyAlias")
def relStoreFile = System.getenv("storeFile")
def relStorePassword = System.getenv("RELEASE_STORE_PASSWORD")
def relKeyPassword = System.getenv("RELEASE_KEY_PASSWORD")
def relKeyAlias = System.getenv("RELEASE_KEY_ALIAS")
def relStoreFile = System.getenv("RELEASE_KEYSTORE")
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
@@ -51,7 +51,7 @@ android {
applicationId "com.appttude.h_mal.easycc"
// You can update the following values to match your application needs.
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-build-configuration.
minSdkVersion localProperties.getProperty('flutter.minSdkVersion').toInteger()
minSdkVersion 21
targetSdkVersion flutter.targetSdkVersion
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName