2019-10-04 14:41:45 +02:00
|
|
|
apply plugin: 'com.android.library'
|
2019-10-11 10:25:44 +02:00
|
|
|
apply plugin: 'com.github.dcendents.android-maven'
|
|
|
|
|
2019-10-11 12:21:53 +02:00
|
|
|
group = 'com.github.osmandapp'
|
2019-10-11 15:38:01 +02:00
|
|
|
version = '2.0.1'
|
2019-10-04 14:41:45 +02:00
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 27
|
|
|
|
buildToolsVersion "27.0.3"
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion 14
|
|
|
|
targetSdkVersion 26
|
|
|
|
versionCode 2
|
|
|
|
versionName "2.0"
|
|
|
|
}
|
2019-10-11 15:38:01 +02:00
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
lintOptions {
|
|
|
|
abortOnError false
|
|
|
|
}
|
2019-10-04 14:41:45 +02:00
|
|
|
sourceSets {
|
|
|
|
main {
|
|
|
|
manifest.srcFile "AndroidManifest.xml"
|
|
|
|
aidl.srcDirs = ["src"]
|
|
|
|
java.srcDirs = ["src"]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
implementation 'com.android.support:support-annotations:27.1.1'
|
|
|
|
}
|