diff options
author | tobrun <tobrun.van.nuland@gmail.com> | 2018-07-17 15:05:53 +0200 |
---|---|---|
committer | tobrun <tobrun.van.nuland@gmail.com> | 2018-07-23 17:58:17 +0200 |
commit | f400615dc87c5583d5faabbb61287155ee500971 (patch) | |
tree | d4a48e709f389cafcc80bc969fe4e2f4152f1de6 /platform/android/MapboxGLAndroidModuleBase/build.gradle | |
parent | 681e0141de63d0d5a545e87c40216163b2d63fc6 (diff) | |
download | qtlocation-mapboxgl-upstream/tvn-http-module.tar.gz |
[android] - modularise used http clientupstream/tvn-http-module
Diffstat (limited to 'platform/android/MapboxGLAndroidModuleBase/build.gradle')
-rw-r--r-- | platform/android/MapboxGLAndroidModuleBase/build.gradle | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/platform/android/MapboxGLAndroidModuleBase/build.gradle b/platform/android/MapboxGLAndroidModuleBase/build.gradle new file mode 100644 index 0000000000..58b150e867 --- /dev/null +++ b/platform/android/MapboxGLAndroidModuleBase/build.gradle @@ -0,0 +1,19 @@ +apply plugin: 'com.android.library' + +android { + compileSdkVersion androidVersions.compileSdkVersion + + defaultConfig { + minSdkVersion androidVersions.minSdkVersion + targetSdkVersion androidVersions.targetSdkVersion + buildConfigField "String", "MAPBOX_VERSION_STRING", String.format("\"Mapbox/%s\"", project.VERSION_NAME) + buildConfigField "String", "MAPBOX_SDK_IDENTIFIER", String.format("\"%s\"", "mapbox-maps-android") + buildConfigField "String", "MAPBOX_SDK_VERSION", String.format("\"%s\"", project.VERSION_NAME) + versionCode 1 + versionName "1.0" + } + + dependencies { + implementation dependenciesList.supportAnnotations + } +}
\ No newline at end of file |