| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion 27
- buildToolsVersion "27.0.2"
- defaultConfig {
- minSdkVersion 18
- targetSdkVersion 27
- versionCode 1
- versionName "1.0"
- testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
- dependencies {
- compile fileTree(dir: 'libs', include: ['*.jar'])
- compile 'com.android.support:appcompat-v7:27.1.0'
- testCompile 'junit:junit:4.12'
- androidTestCompile('com.android.support.test.espresso:espresso-core:3.0.2', {
- exclude group: 'com.android.support', module: 'support-annotations'
- })
- /* SQ全家桶 */
- compile 'com.squareup.retrofit2:adapter-rxjava:2.1.0'
- compile 'com.squareup.retrofit2:retrofit:2.4.0'
- compile 'com.squareup.retrofit2:converter-gson:2.4.0'
- compile 'com.squareup.okhttp3:okhttp:3.10.0'
- /* 网络请求生命周期绑定 */
- compile 'com.trello:rxlifecycle:1.0'
- compile 'com.trello:rxlifecycle-components:1.0'
- /* RX全家桶 */
- compile 'io.reactivex.rxjava2:rxandroid:2.1.0'
- compile 'io.reactivex.rxjava2:rxjava:2.2.2'
- /* JSON解析 */
- compile 'com.google.code.gson:gson:2.8.2'
- /* 日志打印 */
- compile 'com.orhanobut:logger:2.2.0'
- /* 媒体选择 */
- compile 'com.zhihu.android:matisse:0.5.1'
- }
|