Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…-native-template into feat/ios-workflow
  • Loading branch information
himanshu-wedensday committed Apr 18, 2024
2 parents 13bad95 + 3769d60 commit 57fb221
Show file tree
Hide file tree
Showing 65 changed files with 8,475 additions and 11,856 deletions.
9 changes: 4 additions & 5 deletions App.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,18 @@
* @format
*/

import { AppRegistry } from 'react-native';
import { registerRootComponent } from 'expo';
import App from '@app/app';
import { name as appName } from './app.json';

if (!window.Intl) {
new Promise(resolve => {
resolve(import('intl'));
})
.then(() => Promise.all([import('intl/locale-data/jsonp/en.js')]))
.then(() => AppRegistry.registerComponent(appName, () => App))
.then(() => Promise.all([import('intl/locale-data/jsonp/en')]))
.then(() => registerRootComponent(App))
.catch(alert);
} else {
AppRegistry.registerComponent(appName, () => App);
registerRootComponent(App);
}

export default App;
6 changes: 0 additions & 6 deletions android/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,5 @@ local.properties
*.iml
*.hprof

# BUCK
buck-out/
\.buckd/
*.keystore
!debug.keystore

# Bundle artifacts
*.jsbundle
55 changes: 0 additions & 55 deletions android/app/BUCK

This file was deleted.

Loading

0 comments on commit 57fb221

Please sign in to comment.