This commit is contained in:
@@ -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'
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user