Fix Build Release APK (Maybe)
Some checks failed
Android Release / release (push) Failing after 1m23s
Some checks failed
Android Release / release (push) Failing after 1m23s
This commit is contained in:
@@ -1,12 +1,8 @@
|
||||
plugins {
|
||||
alias(libs.plugins.android.application)
|
||||
}
|
||||
plugins { alias(libs.plugins.android.application) }
|
||||
|
||||
android {
|
||||
namespace 'com.anabasis.vkchatmanager'
|
||||
compileSdk {
|
||||
version = release(36)
|
||||
}
|
||||
compileSdk 36
|
||||
|
||||
defaultConfig {
|
||||
applicationId "com.anabasis.vkchatmanager"
|
||||
@@ -18,24 +14,26 @@ android {
|
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
}
|
||||
|
||||
signingConfigs {
|
||||
release {
|
||||
// путь от корня проекта (там где gradlew)
|
||||
storeFile file("release.keystore")
|
||||
storePassword System.getenv("KEYSTORE_PASSWORD") ?: "change_me"
|
||||
keyAlias System.getenv("KEY_ALIAS") ?: "change_me"
|
||||
keyPassword System.getenv("KEY_PASSWORD") ?: "change_me"
|
||||
}
|
||||
}
|
||||
|
||||
buildTypes {
|
||||
release {
|
||||
minifyEnabled true
|
||||
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
||||
signingConfig signingConfigs.release
|
||||
}
|
||||
}
|
||||
|
||||
compileOptions {
|
||||
sourceCompatibility JavaVersion.VERSION_17
|
||||
targetCompatibility JavaVersion.VERSION_17
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
||||
implementation libs.recyclerview
|
||||
implementation libs.viewpager2
|
||||
implementation libs.material
|
||||
implementation libs.swiperefreshlayout
|
||||
implementation libs.okhttp
|
||||
implementation libs.json
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user