1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- 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
- }
- buildTypes {
- debug {
- // buildConfigField "boolean", "LOG_DEBUG", "true"
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- release {
- // buildConfigField "boolean", "LOG_DEBUG", "false"
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- 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:loglib:1.0.5'
- implementation 'com.yanyi.benyanyi:permissionlib:1.0.9'
- 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')
- }
|