blob: 04ac98e88b4c5f0af08b86937491dbb4dbce2738 [file] [log] [blame]
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "24.0.3"
defaultConfig {
applicationId "com.android.devtools.server"
minSdkVersion 18
targetSdkVersion 22
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
lintOptions {
abortOnError false
}
}
dependencies {
compile 'com.android.support:appcompat-v7:25.1.0'
compile 'com.android.support:support-annotations:25.1.0'
compile 'com.android.support.test.uiautomator:uiautomator-v18:2.1.2'
compile 'com.android.support.test:runner:0.4'
compile 'com.android.support.test:rules:0.4'
compile 'com.google.guava:guava:19.0'
compile 'org.hamcrest:hamcrest-library:1.3'
compile group: 'org.mortbay.jetty', name: 'jetty', version: '6.1.22'
compile group: 'com.google.code.gson', name: 'gson', version: '2.3.1'
}