You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
BloodDonation/anymaps-base/build.gradle

36 lines
705 B

/*
* Copyright (c) 2015 Daimler AG / Moovel GmbH
*
* All rights reserved
*/
ext {
name = 'AnyMaps - Base Library'
artifactId = 'anymaps.base'
description = 'Base library for AnyMaps libraries. Contains common interface'
}
apply plugin: 'com.android.library'
apply plugin: 'maven'
android {
compileSdkVersion 28
buildToolsVersion "28.0.3"
defaultConfig {
minSdkVersion 15
targetSdkVersion 28
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
}
}
}
dependencies {
implementation 'com.android.support:support-annotations:28.0.0'
testImplementation 'junit:junit:4.12'
}