Fix CI APK build and Robolectric test failures - #74
Merged
anchildress1 merged 1 commit intoAug 13, 2026
Merged
Conversation
Copilot
AI
changed the title
Fix failing CI APK build and Robolectric tests
Fix CI APK build and Robolectric test failures
Aug 4, 2026
Copilot created this pull request from a session on behalf of
anchildress1
August 4, 2026 12:30
View session
anchildress1
approved these changes
Aug 6, 2026
There was a problem hiding this comment.
Pull request overview
Fixes CI failures by aligning R8 and Robolectric configuration with current dependency/tooling expectations: R8 is instructed to ignore a missing compile-time-only protobuf annotation, and Robolectric is pinned to an SDK level it supports for JVM tests.
Changes:
- Add an R8
-dontwarnentry forcom.google.protobuf.Internal$ProtoMethodMayReturnNullto unblock release-classpath verification. - Pin Robolectric SDK to 34 for
appJVM tests viarobolectric.properties. - Pin Robolectric SDK to 34 for
core-storageJVM tests viarobolectric.properties.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| core-storage/src/test/resources/robolectric.properties | Pins Robolectric test SDK to 34 for storage JVM tests. |
| app/src/test/resources/robolectric.properties | Pins Robolectric test SDK to 34 for app JVM tests. |
| app/proguard-rules.pro | Suppresses R8 warning for a compile-time-only protobuf annotation class. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: anchildress1 <6563688+anchildress1@users.noreply.github.com>
anchildress1
force-pushed
the
dependabot/gradle/pkg-e2c21cacf6
branch
from
August 11, 2026 01:34
c1c0b5b to
3788c92
Compare
anchildress1
force-pushed
the
copilot/fix-failing-github-actions
branch
from
August 11, 2026 01:34
41f5854 to
1de8e7c
Compare
|
anchildress1
merged commit Aug 13, 2026
a95f946
into
dependabot/gradle/pkg-e2c21cacf6
8 checks passed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



The required CI run failed during release-classpath verification because R8 could not resolve a protobuf annotation class. The test job also failed because Robolectric selected unsupported SDK 37.