-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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 M3 library, Increase target sdk to 34 #12106
Conversation
alperozturk96
commented
Oct 30, 2023
•
edited by AndyScherzinger
Loading
edited by AndyScherzinger
- Tests written, or not not needed
@@ -84,8 +84,8 @@ android { | |||
|
|||
defaultConfig { | |||
minSdkVersion 24 | |||
targetSdkVersion 33 | |||
compileSdk 33 | |||
targetSdkVersion 34 |
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.
Needed for latest M3 library
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.
Seems to work well during my brief tests. Have the behavioural changes of Android 14 been addressed already?
According to the lint bot there are apparently some missing super
calls in various activities that haven't been changed by this pull request. Maybe something else or some requirements have changed in the meantime?
As far as I know regarding behavioural changes on Android 14 nothing specifically done in codebase. Regardless targetSdkVersion if device have Android 14 that changes automatically done so increasing or decreasing targetSdkVersion not going to effect anything on Android 14 devices. @ZetaTom We must check "Behavior changes" for Android 14 device but I think it's not related to this PR. Seems like after targetSdkVersion change Linter seeing those intentionally not called super method as warning. However, I see that the default action is not requested in those activities. If we call super methods, the behavior of the application may change. In this case we can use "Suppress" annotation. |
bf64bb7
to
bb73d47
Compare
Unit tests are failing to compile:
|
Android 14 specific can and should be discussed in #11791 |
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.
Tests are failing to compile
/rebase |
2 similar comments
/rebase |
/rebase |
@alperozturk96 has conflicts on rebase (!) |
/rebase |
1 similar comment
/rebase |
@alperozturk96 you need to rebase yourself, since you will have to resolve conflicts which you originally resolved during pulling in master. So the rebase comment won't work. |
903d331
to
03b548d
Compare
Signed-off-by: alperozturk <[email protected]>
Signed-off-by: alperozturk <[email protected]>
41cb8df
to
9e075bc
Compare
Signed-off-by: Andy Scherzinger <[email protected]>
9e075bc
to
273b7e5
Compare
Signed-off-by: Andy Scherzinger <[email protected]>
APK file: https://www.kaminsky.me/nc-dev/android-artifacts/12106.apk |
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.
Unit tests are fine, only codecov upload fails (not related) and Drone failures are also not related.
@tobiasKaminsky @ZetaTom works for my on my phone, however I didn't check for the behavioral changed but as stated by Tobias are to be discussed in the or ticket. So for me the PR is good to go. |