65 lines
No EOL
2.2 KiB
Groovy
65 lines
No EOL
2.2 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'com.google.protobuf'
|
|
|
|
android {
|
|
compileSdkVersion 30
|
|
buildToolsVersion "30.0.2"
|
|
|
|
defaultConfig {
|
|
applicationId "dev.nuculabs.nucuhub"
|
|
minSdkVersion 29
|
|
targetSdkVersion 30
|
|
versionCode 1
|
|
versionName "1.0"
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
protobuf {
|
|
protoc { artifact = 'com.google.protobuf:protoc:3.12.0' }
|
|
plugins {
|
|
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.33.1' // CURRENT_GRPC_VERSION
|
|
}
|
|
}
|
|
generateProtoTasks {
|
|
all().each { task ->
|
|
task.builtins {
|
|
java { option 'lite' }
|
|
}
|
|
task.plugins {
|
|
grpc { // Options added to --grpc_out
|
|
option 'lite' }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: "libs", include: ["*.jar"])
|
|
implementation 'androidx.appcompat:appcompat:1.1.0'
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
|
implementation 'com.google.android.material:material:1.0.0'
|
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
|
implementation 'androidx.navigation:navigation-fragment:2.1.0'
|
|
implementation 'androidx.navigation:navigation-ui:2.1.0'
|
|
implementation 'androidx.lifecycle:lifecycle-extensions:2.1.0'
|
|
implementation 'androidx.preference:preference:1.1.0'
|
|
testImplementation 'junit:junit:4.12'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
|
|
// You need to build grpc-java to obtain these libraries below.
|
|
implementation 'io.grpc:grpc-okhttp:1.33.1' // CURRENT_GRPC_VERSION
|
|
implementation 'io.grpc:grpc-protobuf-lite:1.33.1' // CURRENT_GRPC_VERSION
|
|
implementation 'io.grpc:grpc-stub:1.33.1' // CURRENT_GRPC_VERSION
|
|
compileOnly 'org.apache.tomcat:annotations-api:6.0.53' // necessary for Java 9+
|
|
compileOnly 'org.projectlombok:lombok:1.18.16'
|
|
annotationProcessor 'org.projectlombok:lombok:1.18.16'
|
|
} |