pull/93/head
deniscerri 3 years ago
parent b1db249959
commit f4c409edcb
No known key found for this signature in database
GPG Key ID: 95C43D517D830350

@ -19,6 +19,8 @@ jobs:
java-version: '11'
distribution: 'temurin'
cache: gradle
- name: Create Properties File
run: touch local.properties
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle

@ -15,6 +15,7 @@ android {
try {
def propertiesFile = rootProject.file("local.properties")
if(propertiesFile.text != ""){
properties.load(new FileInputStream(propertiesFile))
properties.load(new FileInputStream(propertiesFile))
@ -26,6 +27,7 @@ android {
keyPassword properties["signingConfig.keyPassword"]
}
}
}
}catch(IOException ignored){}
defaultConfig {
applicationId "com.deniscerri.ytdl"

Loading…
Cancel
Save