blob: 2d012137faf16a060013e0f53bc6a42433647e17 [file] [log] [blame]
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
useLibrary 'org.apache.http.legacy'
defaultConfig {
applicationId "google.simpleapplication"
minSdkVersion 19
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
lintOptions {
abortOnError false
}
}
dependencies {
api fileTree(dir: 'libs', include: ['*.jar'])
api 'com.android.support:appcompat-v7:+'
api 'com.google.guava:guava:19.0'
api 'com.android.support.constraint:constraint-layout:1.0.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:+'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:+'
}