/* * Copyright 2013-2019 microG Project Team * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ apply plugin: 'com.android.library' apply plugin: 'kotlin-android' dependencies { implementation project(':play-services-maps') implementation project(':play-services-base-core') implementation project(':play-services-location') implementation("org.maplibre.gl:android-sdk:10.2.0") implementation("org.maplibre.gl:android-plugin-annotation-v9:2.0.1") { exclude group: 'com.google.android.gms' } implementation 'org.maplibre.gl:android-sdk-turf:5.9.0' implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlinVersion" } def execResult(...args) { def stdout = new ByteArrayOutputStream() exec { commandLine args standardOutput = stdout } return stdout.toString().trim() } android { namespace "org.microg.gms.maps.mapbox" compileSdkVersion androidCompileSdk buildToolsVersion "$androidBuildVersionTools" buildFeatures { buildConfig = true } defaultConfig { versionName version minSdkVersion androidMinSdk targetSdkVersion androidTargetSdk buildConfigField "String", "MAPBOX_KEY", "\"${localProperties.getProperty("mapbox.key", System.getenv('MAPBOX_VECTOR_TILES_KEY') ?: "")}\"" buildConfigField "String", "STADIA_KEY", "\"${localProperties.getProperty("stadia.key", System.getenv('STADIA_API_KEY') ?: "")}\"" ndk { abiFilters "armeabi", "armeabi-v7a", "arm64-v8a", "x86", "x86_64" } } sourceSets { main.java.srcDirs += 'src/main/kotlin' } lintOptions { disable 'GradleCompatible' } compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } kotlinOptions { jvmTarget = 1.8 } } if (file('user.gradle').exists()) { apply from: 'user.gradle' }