.
This commit is contained in:
parent
e372f23ae7
commit
0ca391381b
1 changed files with 13 additions and 16 deletions
|
|
@ -8,28 +8,25 @@ plugins {
|
|||
}
|
||||
|
||||
def properties = new Properties()
|
||||
def propertiesFile = rootProject.file("local.properties")
|
||||
|
||||
|
||||
android {
|
||||
namespace 'com.deniscerri.ytdlnis'
|
||||
compileSdk 33
|
||||
|
||||
if(propertiesFile.exists()){
|
||||
try {
|
||||
properties.load(new FileInputStream(propertiesFile))
|
||||
signingConfigs {
|
||||
debug {
|
||||
storeFile file(properties["signingConfig.storeFile"])
|
||||
storePassword properties["signingConfig.storePassword"]
|
||||
keyAlias properties["signingConfig.keyAlias"]
|
||||
keyPassword properties["signingConfig.keyPassword"]
|
||||
}
|
||||
try {
|
||||
def propertiesFile = rootProject.file("local.properties")
|
||||
properties.load(new FileInputStream(propertiesFile))
|
||||
|
||||
properties.load(new FileInputStream(propertiesFile))
|
||||
signingConfigs {
|
||||
debug {
|
||||
storeFile file(properties["signingConfig.storeFile"])
|
||||
storePassword properties["signingConfig.storePassword"]
|
||||
keyAlias properties["signingConfig.keyAlias"]
|
||||
keyPassword properties["signingConfig.keyPassword"]
|
||||
}
|
||||
}catch(IOException ignored){}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}catch(IOException ignored){}
|
||||
defaultConfig {
|
||||
applicationId "com.deniscerri.ytdl"
|
||||
minSdk 23
|
||||
|
|
|
|||
Loading…
Reference in a new issue