-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Updated to the latest genymotion emulators #4750
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
base: master
Are you sure you want to change the base?
Conversation
@@ -108,7 +109,7 @@ const config = { | |||
headless: Boolean(process.env.CI), | |||
gpuMode: process.env.CI ? 'off' : undefined, | |||
device: { | |||
avdName: 'Pixel_3a_API_34' | |||
avdName: process.env.CI ? 'Pixel_3a_API_34' : 'Pixel_3a_API_35', |
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.
Nahhh this doesn't make sense. Let's just create this emulator in advance and start using it locally.
@@ -149,7 +149,11 @@ export default class example extends Component { | |||
|
|||
renderInnerScreen() { | |||
const Screen = this.state.screen; | |||
return <Screen setScreen={this.setScreen}/>; | |||
return ( | |||
<View style={{flex: 1, paddingTop: 24, paddingBottom: 50}}> |
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 don't like this direction... why can't we just listen to the insets natively and apply them? It would also prevent the unnecessary changes on iOS that technically shouldn't be here...
@@ -7,7 +7,7 @@ import com.wix.detox.espresso.action.common.MotionEvents | |||
* The delay between each motion event. | |||
* Reducing this value may fail the swipe on different devices. Please change with caution. | |||
*/ | |||
private const val EVENT_DELAY = 25L | |||
private const val EVENT_DELAY = 35L |
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.
Please check that this is fully backwards compatible
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.
@gosha212 see my notes. Please also write a fair description 😊
Description
In this pull request, I have …