-
Notifications
You must be signed in to change notification settings - Fork 572
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update to Android 14 #1856
Update to Android 14 #1856
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see that "Android API 34" is showing up in the Android Studio SDK Manager.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CI is failing with:
/home/runner/work/oboe/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/TestColdStartLatencyActivity.java:188: error: getDeviceId() in TestColdStartLatencyActivity cannot override getDeviceId() in ContextWrapper
private native int getDeviceId();
^
attempting to assign weaker access privileges; was public
Note: Some input files use or override a deprecated API.
Which is odd because that file was not touched.
Android 14 must have added getDeviceId() to ContextWrapper! |
Yep! Maybe change it to getAudioDeviceId() to avoid the collision. |
Fixed! Thanks for catching this! |
Fixes #1855