blob: 1b3c151df2698c4236f2496811eb94c1ce404790 [file] [log] [blame]
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion '25.0.2'
defaultConfig {
applicationId 'com.google.reviewit'
minSdkVersion 17
targetSdkVersion 23
versionCode 1
versionName '1.0'
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
useLibrary 'org.apache.http.legacy'
}
dependencies {
testCompile 'junit:junit:4.12'
compile 'com.github.uwolfer:gerrit-rest-java-client:dd4837b'
compile 'com.google.guava:guava:20.0'
compile 'com.google.code.gson:gson:2.8.0'
final ANDROID_SUPPORT_VERSION = '25.0.1'
compile "com.android.support:appcompat-v7:${ANDROID_SUPPORT_VERSION}"
compile "com.android.support:design:${ANDROID_SUPPORT_VERSION}"
compile "com.android.support:support-v4:${ANDROID_SUPPORT_VERSION}"
}