breadcrumbs
This commit is contained in:
parent
fca43ed67d
commit
195281cf91
1 changed files with 11 additions and 4 deletions
|
|
@ -1,16 +1,23 @@
|
||||||
|
import java.util.regex.Pattern
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
id 'com.android.application'
|
id 'com.android.application'
|
||||||
id 'com.google.secrets_gradle_plugin' version '0.4'
|
id 'com.google.secrets_gradle_plugin' version '0.4'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
def properties = new Properties()
|
||||||
|
try {
|
||||||
|
def propertiesFile = rootProject.file("local.properties")
|
||||||
|
properties.load(new FileInputStream(propertiesFile))
|
||||||
|
}catch(IOException ignored){}
|
||||||
|
|
||||||
android {
|
android {
|
||||||
signingConfigs {
|
signingConfigs {
|
||||||
debug {
|
debug {
|
||||||
storeFile file('C:\\Users\\denis\\androidkeystore\\androidstudio.jks')
|
storeFile file(properties["signingConfig.storeFile"])
|
||||||
storePassword 'realniggajeffery'
|
storePassword properties["signingConfig.storePassword"]
|
||||||
keyAlias 'ytdlniskey'
|
keyAlias properties["signingConfig.keyAlias"]
|
||||||
keyPassword 'realniggajeffery'
|
keyPassword properties["signingConfig.keyPassword"]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
compileSdkVersion 31
|
compileSdkVersion 31
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue