diff --git a/app/build.gradle b/app/build.gradle index 31d2faefc..bc2c15447 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,8 +1,10 @@ apply plugin: 'com.android.application' def configProps = new Properties() -def configPath = project.hasProperty('configPath') ? project.configPath : rootProject.file('config.prop') -configProps.load(new FileInputStream(configPath)) +def configPath = project.hasProperty('configPath') ? + new File(project.configPath) : rootProject.file('config.prop') +if (configPath.exists()) + configPath.withInputStream { is -> configProps.load(is) } android { defaultConfig {