/* * Copyright (c) 2022 NetEase, Inc. All rights reserved. * Use of this source code is governed by a MIT license that can be * found in the LICENSE file. */ plugins { id("com.android.library") kotlin("android") } android { compileSdk = 33 defaultConfig { minSdk = 21 targetSdk = 33 consumerProguardFiles("consumer-rules.pro") buildConfigField("String", "versionName", "\"9.6.2\"") } buildTypes { getByName("release") { isMinifyEnabled = true proguardFiles( getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro" ) } } compileOptions { sourceCompatibility = JavaVersion.VERSION_1_8 targetCompatibility = JavaVersion.VERSION_1_8 } namespace = "com.netease.yunxin.kit.locationkit" } dependencies { implementation(project(":chatkit-ui")) api("com.netease.yunxin.kit.common:common-ui:1.2.0") api("org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.6.21") implementation("androidx.appcompat:appcompat:1.4.2") implementation("com.google.android.material:material:1.5.0") implementation("androidx.recyclerview:recyclerview:1.2.1") implementation("com.airbnb.android:lottie:5.0.3") implementation("com.github.bumptech.glide:glide:4.13.1") implementation("androidx.core:core-ktx:1.7.0") implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4") implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4") // api("com.amap.api:3dmap:9.8.2") api("com.amap.api:3dmap:latest.integration") implementation ("com.amap.api:search:9.7.0") }