Skip to content

Instantly share code, notes, and snippets.

@pytqqq
Created January 20, 2023 09:14
Show Gist options
  • Save pytqqq/95eaba8b6e4f406707eb3652e851013f to your computer and use it in GitHub Desktop.
Save pytqqq/95eaba8b6e4f406707eb3652e851013f to your computer and use it in GitHub Desktop.
import React from 'react';
import { View } from 'react-native';
import codePush from 'react-native-code-push';
const MyApp = () => <View />;
export default codePush({
updateDialog: true,
checkFrequency: codePush.CheckFrequency.ON_APP_RESUME,
installMode: codePush.InstallMode.ON_NEXT_RESUME,
})(MyApp);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment