首次提交
This commit is contained in:
46
tuiconversation/build.gradle
Normal file
46
tuiconversation/build.gradle
Normal file
@@ -0,0 +1,46 @@
|
||||
plugins {
|
||||
id 'com.android.library'
|
||||
}
|
||||
//apply from: "../MobSdk.gradle"
|
||||
android {
|
||||
compileSdkVersion 30
|
||||
buildToolsVersion "30.0.3"
|
||||
|
||||
defaultConfig {
|
||||
minSdkVersion 16
|
||||
targetSdkVersion 30
|
||||
versionCode 1
|
||||
versionName "1.0"
|
||||
}
|
||||
|
||||
buildTypes {
|
||||
release {
|
||||
minifyEnabled false
|
||||
}
|
||||
}
|
||||
compileOptions {
|
||||
sourceCompatibility JavaVersion.VERSION_1_8
|
||||
targetCompatibility JavaVersion.VERSION_1_8
|
||||
}
|
||||
|
||||
sourceSets {
|
||||
main {
|
||||
res.srcDirs += "src/main/res-minimalistui"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
afterEvaluate{
|
||||
generateReleaseBuildConfig.enabled =false
|
||||
generateDebugBuildConfig.enabled =false
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
||||
implementation 'androidx.appcompat:appcompat:1.3.0'
|
||||
implementation 'com.google.android.material:material:1.3.0'
|
||||
implementation 'com.google.code.gson:gson:2.8.7'
|
||||
api 'org.greenrobot:eventbus:3.1.1'
|
||||
|
||||
api project(':tuicore')
|
||||
}
|
||||
Reference in New Issue
Block a user