fix: 更新 build.gradle.signed 包名为 com.arkj.app
Android Release / release (push) Failing after 20s

This commit is contained in:
CI Bot
2026-06-02 23:01:39 +08:00
parent d33e45a280
commit 0e114c81dc
+6 -8
View File
@@ -3,11 +3,11 @@ plugins {
} }
android { android {
namespace 'com.example.newapp' namespace 'com.arkj.app'
compileSdk 34 compileSdk 34
defaultConfig { defaultConfig {
applicationId 'com.example.newapp' applicationId 'com.arkj.app'
minSdk 24 minSdk 24
targetSdk 34 targetSdk 34
versionCode 1 versionCode 1
@@ -16,10 +16,10 @@ android {
signingConfigs { signingConfigs {
release { release {
storeFile file('release.keystore') storeFile file('/root/.android/release.keystore')
storePassword System.getenv('KEYSTORE_PASSWORD') storePassword System.getProperty('KEYSTORE_PASSWORD')
keyAlias System.getenv('KEY_ALIAS') keyAlias System.getProperty('KEY_ALIAS')
keyPassword System.getenv('KEY_PASSWORD') keyPassword System.getProperty('KEY_PASSWORD')
v1SigningEnabled true v1SigningEnabled true
v2SigningEnabled true v2SigningEnabled true
} }
@@ -40,6 +40,4 @@ android {
} }
dependencies { dependencies {
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.11.0'
} }