Files
android-new-app/.gitea/workflows/build.gradle.signed
T
amos eefbd207bd
Android Release / release (push) Failing after 19s
fix: 添加 Material3 依赖修复主题问题
2026-06-02 23:06:23 +08:00

45 lines
994 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 {
implementation 'com.google.android:material:1.9.0'
}