WuKongIMAndroidSDK/app/build.gradle

46 lines
1.3 KiB
Groovy

plugins {
id 'com.android.application'
id 'kotlin-parcelize'
id 'kotlin-android'
}
android {
compileSdk 34
defaultConfig {
applicationId "com.xinbida.wukongdemo"
minSdkVersion 21
targetSdkVersion 34
versionCode 1
versionName "1.0"
multiDexEnabled true
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
namespace 'com.xinbida.wukongdemo'
kotlinOptions {
jvmTarget = '17'
}
}
dependencies {
implementation project(':wkim')
implementation 'androidx.appcompat:appcompat:1.7.0'
implementation 'com.google.android.material:material:1.12.0'
implementation 'androidx.constraintlayout:constraintlayout:2.2.0'
implementation 'org.jetbrains:annotations:23.0.0'
implementation 'com.github.CymChad:BaseRecyclerViewAdapterHelper:3.0.7'
implementation 'com.github.li-xiaojun:XPopup:2.9.19'
implementation('com.github.bumptech.glide:glide:4.16.0') {
transitive = true
}
}