mirror of
https://github.com/WuXiaolong/AndroidMVPSample.git
synced 2025-06-07 22:04:04 +08:00
34 lines
1014 B
Groovy
34 lines
1014 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 23
|
|
buildToolsVersion "23.0.2"
|
|
|
|
defaultConfig {
|
|
applicationId "com.wuxiaolong.androidmvpsample"
|
|
minSdkVersion 14
|
|
targetSdkVersion 22
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(include: ['*.jar'], dir: 'libs')
|
|
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'
|
|
}
|