____ _ _______ __
/ __ \ | /| / / __/ |/ /
/ /_/ / |/ |/ / _// /
\____/|__/|__/___/_||_/
owenclave / library/proto-stub/build.gradle.kts
import com.google.protobuf.gradle.*
plugins {
id("com.android.library")
alias(libs.plugins.protobuf)
}
setupCommon()
dependencies {
protobuf(project(":library:proto"))
api(libs.protobuf.java)
}
android {
namespace = "com.github.owenewans.owenclave.core"
buildTypes {
release {
isMinifyEnabled = false
}
}
}
protobuf {
protoc {
artifact = "com.google.protobuf:protoc:4.35.1"
}
generateProtoTasks {
all().forEach {
it.plugins {
create("java")
}
}
}
}