| apply plugin: 'com.android.application' |
| apply plugin: 'com.google.protobuf' |
| |
| android { |
| compileSdkVersion 22 |
| buildToolsVersion '22.0.1' |
| |
| defaultConfig { |
| applicationId "io.grpc.android.integrationtest" |
| minSdkVersion 9 |
| targetSdkVersion 22 |
| versionCode 1 |
| versionName "1.0" |
| } |
| buildTypes { |
| debug { |
| minifyEnabled false |
| } |
| release { |
| minifyEnabled true |
| proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' |
| } |
| } |
| lintOptions { |
| disable 'InvalidPackage', 'HardcodedText' |
| } |
| } |
| |
| protobuf { |
| protoc { |
| artifact = 'com.google.protobuf:protoc:3.1.0' |
| } |
| plugins { |
| grpc { |
| artifact = 'io.grpc:protoc-gen-grpc-java:1.1.0-SNAPSHOT' // CURRENT_GRPC_VERSION |
| } |
| } |
| generateProtoTasks { |
| all().each { task -> |
| task.builtins { |
| javanano { |
| // Options added to --javanano_out |
| option 'ignore_services=true' |
| } |
| } |
| |
| task.plugins { |
| grpc { |
| // Options added to --grpc_out |
| option 'nano' |
| } |
| } |
| } |
| } |
| } |
| |
| 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' |
| // You need to build grpc-java to obtain these libraries below. |
| compile 'io.grpc:grpc-protobuf-nano:1.1.0-SNAPSHOT' // CURRENT_GRPC_VERSION |
| compile 'io.grpc:grpc-okhttp:1.1.0-SNAPSHOT' // CURRENT_GRPC_VERSION |
| compile 'io.grpc:grpc-stub:1.1.0-SNAPSHOT' // CURRENT_GRPC_VERSION |
| compile 'io.grpc:grpc-testing:1.1.0-SNAPSHOT' // CURRENT_GRPC_VERSION |
| compile 'javax.annotation:javax.annotation-api:1.2' |
| } |
| |
| gradle.projectsEvaluated { |
| tasks.withType(JavaCompile) { |
| options.compilerArgs << "-Xlint:deprecation" |
| } |
| } |