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