1
0
mirror of https://github.com/WuXiaolong/AndroidMVPSample.git synced 2025-12-24 03:09:33 +08:00
This commit is contained in:
wuxiaolong.me
2016-06-11 22:53:56 +08:00
parent b0925459b2
commit 64ebcd133f
23 changed files with 510 additions and 119 deletions

View File

@@ -2,12 +2,12 @@ apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "22.0.1"
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "com.wuxiaolong.androidmvpsample"
minSdkVersion 14
targetSdkVersion 23
targetSdkVersion 22
versionCode 1
versionName "1.0"
}
@@ -21,6 +21,13 @@ android {
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:23.0.1'
compile 'com.android.support:appcompat-v7:23.3.0'
compile 'com.loopj.android:android-async-http:1.4.9'
compile 'com.jakewharton:butterknife:7.0.1'
compile 'com.squareup.retrofit2:retrofit:2.0.2'
compile 'com.squareup.okhttp3:logging-interceptor:3.1.2'
compile 'com.squareup.retrofit2:converter-gson:2.0.2'
compile 'com.squareup.retrofit2:adapter-rxjava:2.0.2'
compile 'io.reactivex:rxandroid:1.1.0'
compile 'io.reactivex:rxjava:1.1.0'
}