mirror of
https://github.com/WuKongIM/WuKongIMAndroidSDK
synced 2025-06-05 08:51:23 +00:00
50 lines
1.5 KiB
Groovy
50 lines
1.5 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 platform("org.jetbrains.kotlin:kotlin-bom:$kotlin_version")
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
|
|
|
implementation project(':wkim')
|
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
|
implementation 'com.google.android.material:material:1.11.0'
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
|
implementation 'org.jetbrains:annotations:24.1.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
|
|
}
|
|
} |