Обновление зависимости Protobuf в Android-проекте

★ 7.1 · integration

Обновление версии Protobuf-схем (proto-bump) is a Claude Code skill that updates the `org.meshtastic:protobufs` Maven pin in Meshtastic-Android — switching the Gradle version catalog to a tagged release or to `develop-SNAPSHOT` for a preview, then verifying the change and opening a PR. Reach for it when you need to pull in new proto fields before an official release, when Renovate has opened a bump PR and you need to drive it to completion (verify, triage failures, adapt call sites), or when the change you need only exists on the protobufs `develop` branch and hasn't landed in any tag yet. Two modes: Mode A targets a tagged release — edits `gradle/libs.versions.toml`, removes the transitive resolution-force block if present, runs `test`/`allTests` via a gradle-runner subagent (a green compile alone isn't enough — the downgrade failure is a runtime classpath issue invisible to compilation), audits the new field surface, and opens a mergeable PR. Mode B targets `develop-SNAPSHOT` — adds a `resolutionStrategy.eachDependency` block to `build.gradle.kts` that forces the snapshot over the tagged transitive pin from `takpacket-sdk` (without this, the test runtime silently downgrades and throws `NoSuchFieldError`), then opens the PR as a draft.