From 0e114c81dc66db0006200c887f427344f6fffc32 Mon Sep 17 00:00:00 2001 From: CI Bot Date: Tue, 2 Jun 2026 23:01:39 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=9B=B4=E6=96=B0=20build.gradle.signed?= =?UTF-8?q?=20=E5=8C=85=E5=90=8D=E4=B8=BA=20com.arkj.app?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/build.gradle.signed | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/.gitea/workflows/build.gradle.signed b/.gitea/workflows/build.gradle.signed index 8d311bb..fa20acb 100644 --- a/.gitea/workflows/build.gradle.signed +++ b/.gitea/workflows/build.gradle.signed @@ -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' }