| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- apply plugin: 'com.android.application'
- def app_version_code = 1
- def app_version_name = '1.0.1'
- android {
- compileSdkVersion 29
- buildToolsVersion "29.0.2"
- defaultConfig {
- applicationId "com.ht.gate"
- minSdkVersion 24
- targetSdkVersion 29
- versionCode app_version_code
- versionName app_version_name
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- javaCompileOptions {
- annotationProcessorOptions {
- includeCompileClasspath true
- }
- }
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- android.applicationVariants.all {
- variant ->
- variant.outputs.all {
- outputFileName = "会议预定-${variant.variantData.variantConfiguration.buildType.name}-${app_version_name}(${app_version_code}).apk"
- }
- }
- }
- 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.12'
- androidTestImplementation 'androidx.test.ext:junit:1.1.1'
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
- implementation "android.arch.lifecycle:extensions:1.1.3"
- implementation 'androidx.recyclerview:recyclerview:1.1.0'
- implementation 'com.jakewharton:butterknife:10.2.0'
- annotationProcessor 'com.jakewharton:butterknife-compiler:10.2.0'
- implementation 'org.greenrobot:eventbus:3.1.1'
- implementation 'com.github.GrenderG:Toasty:1.4.2'
- implementation 'io.reactivex.rxjava2:rxjava:2.2.16'
- implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
- implementation 'com.squareup.retrofit2:retrofit:2.7.1'
- implementation 'com.squareup.retrofit2:converter-gson:2.7.1'
- implementation 'com.squareup.retrofit2:adapter-rxjava2:2.7.1'
- implementation "com.squareup.okhttp3:okhttp:3.14.4"
- implementation "com.squareup.okhttp3:logging-interceptor:3.10.0"
- implementation 'org.projectlombok:lombok:1.16.8'
- implementation 'org.glassfish:javax.annotation:10.0-b28'
- implementation 'com.squareup.picasso:picasso:2.71828'
- implementation 'com.zy.mocknet:mocknet:1.0'
- implementation 'cat.ereza:customactivityoncrash:2.2.0'
- implementation 'org.xutils:xutils:3.8.3'
- implementation 'com.blankj:utilcodex:1.28.4'
- implementation 'com.liulishuo.filedownloader:library:1.7.7'
- implementation group: 'org.apache.commons', name: 'commons-io', version: '1.3.2'
- implementation 'com.liulishuo.okdownload:okdownload:1.0.7'
- }
|