Files
android-new-app/.gitea/workflows/build.gradle.signed
T
CI Bot 0e114c81dc
Android Release / release (push) Failing after 20s
fix: 更新 build.gradle.signed 包名为 com.arkj.app
2026-06-02 23:01:39 +08:00

44 lines
939 B
Plaintext

plugins {
id 'com.android.application'
}
android {
namespace 'com.arkj.app'
compileSdk 34
defaultConfig {
applicationId 'com.arkj.app'
minSdk 24
targetSdk 34
versionCode 1
versionName '1.0'
}
signingConfigs {
release {
storeFile file('/root/.android/release.keystore')
storePassword System.getProperty('KEYSTORE_PASSWORD')
keyAlias System.getProperty('KEY_ALIAS')
keyPassword System.getProperty('KEY_PASSWORD')
v1SigningEnabled true
v2SigningEnabled true
}
}
buildTypes {
release {
signingConfig signingConfigs.release
minifyEnabled false
shrinkResources false
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
}
dependencies {
}