mirror of https://github.com/grpc/grpc-java.git
35 lines
1.0 KiB
Groovy
35 lines
1.0 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 22
|
|
buildToolsVersion '22.0.1'
|
|
|
|
defaultConfig {
|
|
applicationId "io.grpc.android.integrationtest"
|
|
minSdkVersion 9
|
|
targetSdkVersion 22
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile 'com.android.support:appcompat-v7:22.1.1'
|
|
compile 'com.google.android.gms:play-services-base:7.3.0'
|
|
compile 'com.google.code.findbugs:jsr305:3.0.0'
|
|
compile 'com.google.guava:guava:18.0'
|
|
compile 'com.squareup.okhttp:okhttp:2.2.0'
|
|
testCompile 'junit:junit:4.12'
|
|
// You need to build grpc-java to obtain these libraries below.
|
|
compile 'io.grpc:grpc-core:0.8.0-SNAPSHOT'
|
|
compile 'io.grpc:grpc-protobuf-nano:0.8.0-SNAPSHOT'
|
|
compile 'io.grpc:grpc-okhttp:0.8.0-SNAPSHOT'
|
|
compile 'io.grpc:grpc-stub:0.8.0-SNAPSHOT'
|
|
}
|