2017-06-13 16:04:55 -04:00
|
|
|
buildscript
|
|
|
|
{
|
|
|
|
repositories
|
|
|
|
{
|
|
|
|
jcenter()
|
2019-05-20 16:30:17 -04:00
|
|
|
google()
|
2017-06-13 16:04:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies
|
|
|
|
{
|
2019-06-04 16:23:07 -04:00
|
|
|
classpath 'com.android.tools.build:gradle:3.3.2'
|
2019-05-20 16:30:17 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects
|
|
|
|
{
|
|
|
|
repositories
|
|
|
|
{
|
|
|
|
jcenter()
|
|
|
|
google()
|
2017-06-13 16:04:55 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android
|
|
|
|
{
|
2018-02-04 16:37:02 -05:00
|
|
|
compileSdkVersion compile_sdk_version.toInteger()
|
2017-08-06 17:15:08 -04:00
|
|
|
buildToolsVersion build_tools_ver
|
2017-06-13 16:04:55 -04:00
|
|
|
|
2020-08-27 04:28:13 -04:00
|
|
|
signingConfigs
|
|
|
|
{
|
|
|
|
release
|
|
|
|
{
|
|
|
|
storeFile file(keystore)
|
|
|
|
storePassword storepass
|
|
|
|
keyAlias alias
|
|
|
|
keyPassword storepass
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes
|
|
|
|
{
|
|
|
|
release
|
|
|
|
{
|
|
|
|
signingConfig signingConfigs.release
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-13 16:04:55 -04:00
|
|
|
sourceSets
|
|
|
|
{
|
|
|
|
main
|
|
|
|
{
|
|
|
|
manifest.srcFile 'AndroidManifest.xml'
|
|
|
|
jniLibs.srcDirs = ['libs']
|
|
|
|
res.srcDirs = ['res']
|
|
|
|
assets.srcDirs = ['assets']
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-03-13 09:31:33 -04:00
|
|
|
|
|
|
|
dependencies
|
|
|
|
{
|
|
|
|
implementation 'org.minidns:minidns-hla:0.3.3'
|
|
|
|
}
|