OsmAnd/OsmAnd-api/build.gradle

47 lines
921 B
Groovy
Raw Normal View History

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'
version = '2.0.0'
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 {
}
2019-10-11 16:30:48 +02:00
debug {
}
2019-10-11 15:38:01 +02:00
}
lintOptions {
abortOnError false
}
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'
2019-10-11 16:18:01 +02:00
}
task sourcesJar(type: Jar) {
classifier = 'sources'
2019-10-11 16:30:48 +02:00
from android.sourceSets.main.java.srcDirs
2019-10-11 16:18:01 +02:00
}
artifacts {
archives sourcesJar
}