Skip to content

Commit

Permalink
feat: tag v3.0.1+11
Browse files Browse the repository at this point in the history
  • Loading branch information
LeetaoGoooo committed Jul 24, 2024
1 parent 46cafc8 commit d9c5bad
Showing 1 changed file with 37 additions and 6 deletions.
43 changes: 37 additions & 6 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,26 +33,57 @@ android {
targetCompatibility = JavaVersion.VERSION_1_8
}

splits {
abi {
enable true
reset()
include 'x86', 'x86_64', 'armeabi', 'armeabi-v7a', 'mips', 'mips64', 'arm64-v8a'
universalApk true
}
}

defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId = "com.gmail.leetao94cn.rssaid"
applicationId = "com.gmail.cn.leetao94.rssaid"
// You can update the following values to match your application needs.
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
minSdk = flutter.minSdkVersion
targetSdk = flutter.targetSdkVersion
versionCode = flutterVersionCode.toInteger()
versionName = flutterVersionName
multiDexEnabled true
}

signingConfigs {
release {
storeFile file(System.getenv("KEYSTORE") ?:"keystore.jks")
storePassword System.getenv("KEYSTORE_PASSWORD")
keyAlias System.getenv("KEY_ALIAS")
keyPassword System.getenv("KEY_PASSWORD")
}
}

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
}
debug {
}
}

flavorDimensions "deploy"

productFlavors {
github {
dimension "deploy"
signingConfig signingConfigs.release
}
fdroid {
dimension "deploy"
signingConfig signingConfigs.debug
}
}
}

flutter {
source = "../.."
}
}

0 comments on commit d9c5bad

Please sign in to comment.