123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- apply plugin: 'com.android.application'
- android {
- compileSdkVersion 29
- defaultConfig {
- applicationId "com.mylove.okhttp"
- minSdkVersion 15
- targetSdkVersion 29
- versionCode 1
- versionName "1.0"
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- multiDexEnabled true
- }
- signingConfigs {
- release {
- storeFile file("kth_android_key.jks")
- storePassword "jxkthfinger"
- keyAlias "jxkth"
- keyPassword "jxkthfinger"
- }
- debug {
- storeFile file("kth_android_key.jks")
- storePassword "jxkthfinger"
- keyAlias "jxkth"
- keyPassword "jxkthfinger"
- }
- }
- buildTypes {
- release {
- minifyEnabled false
- signingConfig signingConfigs.release
- proguardFiles getDefaultProguardFile('proguard-android.txt'), project.file('proguard-rules.pro')
- }
- debug {
- debuggable true
- minifyEnabled false
- signingConfig signingConfigs.debug
- }
- }
- lintOptions {
- abortOnError false
- }
- }
- dependencies {
- implementation fileTree(include: ['*.jar'], dir: 'libs')
- implementation 'androidx.appcompat:appcompat:1.2.0'
- testImplementation 'junit:junit:4.13'
- androidTestImplementation 'androidx.test.ext:junit:1.1.2'
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
- // implementation project(':okhttplib')
- implementation 'com.yanyi.benyanyi:Logger:1.1.3'
- implementation 'com.yanyi.benyanyi:PermissionHelper:1.1.8'
- implementation 'io.reactivex.rxjava2:rxjava:2.2.10'
- implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
- implementation 'org.greenrobot:eventbus:3.1.1'
- implementation 'com.google.code.gson:gson:2.8.7'
- implementation project(path: ':okhttplib')
- }
|