12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- apply plugin: 'com.android.application'
- android {
- compileSdkVersion 28
- defaultConfig {
- applicationId "com.mylove.okhttp"
- minSdkVersion 15
- targetSdkVersion 28
- versionCode 1
- versionName "1.0"
- testInstrumentationRunner "android.support.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 'com.android.support:appcompat-v7:28.0.0'
- testImplementation 'junit:junit:4.12'
- androidTestImplementation 'com.android.support.test:runner:1.0.2'
- androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
- implementation project(':okhttplib')
- implementation 'com.yanyi.benyanyi:loglib:1.0.3'
- 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.6'
- }
|