12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- apply plugin: 'com.android.application'
- apply plugin: 'com.huawei.agconnect'
- android {
- signingConfigs {
- debug {
- storeFile file('../LimaoIm.jks')
- storePassword '@limaoim123'
- keyAlias = 'limaoim'
- keyPassword '@limaoim123'
- }
- release {
- storeFile file('/Users/songlun/Desktop/workspace/androidworkspace/LiMaoIm/LimaoIm.jks')
- storePassword '@limaoim123'
- keyAlias = 'limaoim'
- keyPassword '@limaoim123'
- }
- }
- compileSdkVersion rootProject.ext.compileSdkVersion
- aaptOptions.cruncherEnabled = false
- aaptOptions.useNewCruncher = false
- defaultConfig {
- applicationId "com.limao.im.limaoim"
- minSdkVersion rootProject.ext.minSdkVersion
- targetSdkVersion rootProject.ext.targetSdkVersion
- versionCode 1
- versionName "1.0"
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- vectorDrawables.useSupportLibrary = true
- multiDexEnabled true
- }
- packagingOptions {
- exclude 'META-INF/library_release.kotlin_module'
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- }
- dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- implementation 'androidx.appcompat:appcompat:1.1.0'
- implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
- testImplementation 'junit:junit:4.13'
- androidTestImplementation 'androidx.test.ext:junit:1.1.1'
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
- implementation 'com.facebook.stetho:stetho-okhttp3:1.3.1'
- implementation 'com.facebook.stetho:stetho:1.3.1'
- implementation project(':base')
- implementation project(':limkit')
- implementation project(':limlogin')
- implementation project(':limpush')
- implementation project(':limvideo')
- implementation project(':limgroupmanage')
- implementation project(':limscan')
- implementation project(':limcollection')
- }
|