1
0
mirror of https://github.com/WuXiaolong/AndroidMVPSample.git synced 2025-12-23 18:59:33 +08:00

Initial commit

This commit is contained in:
WuXiaolong
2015-09-23 16:22:32 +08:00
commit d5a52112da
39 changed files with 877 additions and 0 deletions

26
app/build.gradle Normal file
View File

@@ -0,0 +1,26 @@
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "22.0.1"
defaultConfig {
applicationId "com.wuxiaolong.androidmvpsample"
minSdkVersion 14
targetSdkVersion 23
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.0.1'
compile 'com.loopj.android:android-async-http:1.4.9'
}