mirror of
https://github.com/wgh136/pixes.git
synced 2025-09-27 04:57:23 +00:00
110 lines
3.5 KiB
Groovy
110 lines
3.5 KiB
Groovy
plugins {
|
|
id "com.android.application"
|
|
id "kotlin-android"
|
|
id "dev.flutter.flutter-gradle-plugin"
|
|
}
|
|
|
|
ext.abiCodes = ["armeabi-v7a": 1, "arm64-v8a": 2, "x86_64": 3]
|
|
|
|
def localProperties = new Properties()
|
|
def localPropertiesFile = rootProject.file('local.properties')
|
|
if (localPropertiesFile.exists()) {
|
|
localPropertiesFile.withReader('UTF-8') { reader ->
|
|
localProperties.load(reader)
|
|
}
|
|
}
|
|
|
|
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
|
|
if (flutterVersionCode == null) {
|
|
flutterVersionCode = '1'
|
|
}
|
|
|
|
def flutterVersionName = localProperties.getProperty('flutter.versionName')
|
|
if (flutterVersionName == null) {
|
|
flutterVersionName = '1.0'
|
|
}
|
|
|
|
def keystoreProperties = new Properties()
|
|
def keystorePropertiesFile = rootProject.file('key.properties')
|
|
if (keystorePropertiesFile.exists()) {
|
|
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
|
|
}
|
|
|
|
android {
|
|
namespace "com.github.wgh136.pixes"
|
|
compileSdk flutter.compileSdkVersion
|
|
ndkVersion flutter.ndkVersion
|
|
|
|
splits{
|
|
abi {
|
|
reset()
|
|
include 'armeabi-v7a', 'arm64-v8a', 'x86_64'
|
|
enable true
|
|
universalApk true
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
kotlinOptions{
|
|
jvmTarget = JavaVersion.VERSION_17
|
|
}
|
|
|
|
defaultConfig {
|
|
applicationId "com.github.wgh136.pixes"
|
|
// 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.
|
|
minSdkVersion flutter.minSdkVersion
|
|
targetSdk = flutter.targetSdkVersion
|
|
versionCode flutterVersionCode.toInteger()
|
|
versionName flutterVersionName
|
|
}
|
|
|
|
signingConfigs {
|
|
release {
|
|
keyAlias keystoreProperties['keyAlias']
|
|
keyPassword keystoreProperties['keyPassword']
|
|
storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null
|
|
storePassword keystoreProperties['storePassword']
|
|
}
|
|
debug {
|
|
keyAlias keystoreProperties['keyAlias']
|
|
keyPassword keystoreProperties['keyPassword']
|
|
storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null
|
|
storePassword keystoreProperties['storePassword']
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
ndk {
|
|
abiFilters "armeabi-v7a", "arm64-v8a", "x86_64"
|
|
}
|
|
signingConfig signingConfigs.release
|
|
applicationVariants.all { variant ->
|
|
variant.outputs.all { output ->
|
|
def abi = output.getFilter(com.android.build.OutputFile.ABI)
|
|
if (abi != null) {
|
|
outputFileName = "pixes-${variant.versionName}-${abi}.apk"
|
|
def abiVersionCode = project.ext.abiCodes.get(abi)
|
|
if (abiVersionCode != null) {
|
|
versionCodeOverride = variant.versionCode * 10 + abiVersionCode
|
|
}
|
|
} else {
|
|
outputFileName = "pixes-${variant.versionName}.apk"
|
|
versionCodeOverride = variant.versionCode * 10
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
flutter {
|
|
source '../..'
|
|
}
|
|
|
|
dependencies {}
|