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 {
namespace 'com.example.newapp'
namespace 'com.arkj.app'
compileSdk 34
defaultConfig {
applicationId 'com.example.newapp'
applicationId 'com.arkj.app'
minSdk 24
targetSdk 34
versionCode 1
@@ -16,10 +16,10 @@ android {
signingConfigs {
release {
storeFile file('release.keystore')
storePassword System.getenv('KEYSTORE_PASSWORD')
keyAlias System.getenv('KEY_ALIAS')
keyPassword System.getenv('KEY_PASSWORD')
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
}
@@ -40,6 +40,4 @@ android {
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.11.0'
}