-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
Use List.of(). #4816
Use List.of(). #4816
Conversation
Was the build.gradle change intentional? |
Yeah, because |
238746f
to
2046500
Compare
2046500
to
715c0c2
Compare
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.
@Isira-Seneviratne code looks good to me. Thank you!
Are you sure that increasing the compileSdkVersion
to 30
doesn't break backwards-compatibility with API 19, since we're using the old file://
scheme there which afaik is not allowed on Android 11?
See #3777
We should not touch the |
715c0c2
to
1198e40
Compare
I didn't know there was such a restriction. |
a648a16
to
696b023
Compare
93a017d
to
88b5440
Compare
24d5e04
to
6d241e2
Compare
326469e
to
261795d
Compare
261795d
to
966f197
Compare
679bc75
to
2aeccc0
Compare
Closing this for now:
Also in my opinion this PR should be split into 2 smaller parts:
Makes it easier and faster to review. Feel free to reopen it when there is progress again 😄 |
What is it?
Description of the changes in your PR
compileSdkVersion
to 30.List.of()
factory methods introduced in API level 30, which are desugared for API levels below 30:APK testing
debug.zip
Due diligence