-
Notifications
You must be signed in to change notification settings - Fork 341
Skip animation as default #520
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
Skip animation as default #520
Conversation
1. Remove package namespace definition in Manifest. Setting the namespace via the package attribute in the source AndroidManifest.xml is no longer supported. 2. Specify an explicit value for `android:exported` when the component has an intent filter defined. 3. Add androidx.appcompat:appcompat build dependency in build.gradle 4. Complete the PwaWrapperSplashScreenStrategy()'s startChromeBeforeAnimationComplete argument in test
ishitatsuyuki
left a comment
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.
From offline discussion, it seems PwaWrapperSplashScreenStrategyTest.java is still testing with startChromeBeforeAnimationComplete = false? I think we should ensure the defaults are tested, and if waitsForEnterAnimationCompletion_BeforeDeclaringReady breaks, we should state in the changelog that the API contract is changing.
The default behavior is to not wait enter animation complete before starting twa in browser. The waitsForEnterAnimationCompletion_BeforeDeclaringReady test does not need to be kept.
f3d8583 to
6de79c4
Compare
|
Yes, if we change the behavior to not wait on animation complete, the test waitsForEnterAnimationCompletion_BeforeDeclaringReady is not so meaningful. Added commits to delete it from current test suite. |
The skip animation as default PR(GoogleChrome#520) changes behaviour of abh. Added the change description to changelog. Also, bump up the version & version code.
The skip animation as default PR(GoogleChrome#520) changes behaviour of abh. Added the change description to changelog. Also, bump up the version & version code.
The skip animation as default PR(GoogleChrome#520) changes behaviour of abh. Added the change description to changelog. Also, bump up the version & version code.
Make start chrome before animation complete as default behavior. Helps improve twa start-up time.