Files
CI Bot d33e45a280
Android Release / release (push) Failing after 28s
fix: 添加 gradle.properties 配置修复 R 文件生成
2026-06-02 22:58:55 +08:00

41 lines
829 B
Groovy

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')
}
}
buildTypes {
release {
minifyEnabled false
signingConfig signingConfigs.release
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
}
dependencies {
}