5bdfb7df51
This commit adds github and fdroid product flavors. Sentry is added only to github builds. Sentry is opt-in.
13 lines
340 B
Groovy
13 lines
340 B
Groovy
def dsnKey = 'DSN'
|
|
def defaultDsn = '\"\"'
|
|
|
|
final Properties properties = new Properties()
|
|
File propertiesFile = rootProject.file('sentry.properties')
|
|
if (!propertiesFile.exists()) {
|
|
propertiesFile.createNewFile()
|
|
}
|
|
properties.load(new FileInputStream(propertiesFile))
|
|
|
|
ext{
|
|
SENTRY_DSN = properties.getProperty(dsnKey, defaultDsn)
|
|
} |