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') }