feat(wire): migrate from protobuf -> wire (#4401)

Signed-off-by: James Rich <2199651+jamesarich@users.noreply.github.com>
This commit is contained in:
James Rich 2026-02-03 18:01:12 -06:00 committed by GitHub
parent 9dbc8b7fbf
commit 25657e8f8f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
239 changed files with 7149 additions and 6144 deletions

View file

@ -21,17 +21,6 @@ plugins {
apply(from = rootProject.file("gradle/publishing.gradle.kts"))
afterEvaluate {
publishing {
publications {
create<MavenPublication>("release") {
from(components["googleRelease"])
artifactId = "core-api"
}
}
}
}
configure<com.android.build.api.dsl.LibraryExtension> {
namespace = "org.meshtastic.core.api"
buildFeatures { aidl = true }
@ -44,4 +33,16 @@ configure<com.android.build.api.dsl.LibraryExtension> {
publishing { singleVariant("googleRelease") { withSourcesJar() } }
}
// Map the Android component to a Maven publication
afterEvaluate {
publishing {
publications {
create<MavenPublication>("googleRelease") {
from(components["googleRelease"])
artifactId = "core-api"
}
}
}
}
dependencies { api(projects.core.model) }