Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 12 additions & 5 deletions exp.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,27 @@
"name": "Instagram Stories",
"description": "UI Challenge #3: Instagram Stories Clone written in React Native. https://medium.com/@yousefkama/building-instagram-stories-d14763682e98 for a writeup, source at https://github.com/mastermoo/rn-instagram-stories",
"slug": "instagram-stories",
"sdkVersion": "10.0.0",
"sdkVersion": "16.0.0",
"version": "1.0.0",
"orientation": "portrait",
"primaryColor": "#cccccc",
"iconUrl": "https://s3.amazonaws.com/exp-brand-assets/ExponentEmptyManifest_192.png",
"icon": "https://s3.amazonaws.com/exp-brand-assets/ExponentEmptyManifest_192.png",
"notification": {
"iconUrl": "https://s3.amazonaws.com/exp-us-standard/placeholder-push-icon-blue-circle.png",
"icon": "https://s3.amazonaws.com/exp-us-standard/placeholder-push-icon-blue-circle.png",
"color": "#000000"
},
"loading": {
"iconUrl": "https://s3.amazonaws.com/exp-brand-assets/ExponentEmptyManifest_192.png",
"icon": "https://s3.amazonaws.com/exp-brand-assets/ExponentEmptyManifest_192.png",
"hideExponentText": false
},
"packagerOpts": {
"assetExts": ["ttf", "mp4"]
}
},
ios: {
bundleIdentifier: "com.laurentroger.instagramstories",
"supportsTablet": true
},
android: {
package: "com.laurentroger.instagramstories",
}
}
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Exponent from 'exponent';
import Exponent from 'expo';
import App from './src/app';

Exponent.registerRootComponent(App);
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
"main": "main.js",
"dependencies": {
"babel-preset-react-native-stage-0": "^1.0.1",
"exponent": "~10.0.0",
"mobx": "^2.6.0",
"mobx-react": "^3.5.8",
"react": "~15.3.1",
"react-native": "github:exponentjs/react-native#sdk-10.1.0",
"expo": "16.0.0",
"react": "16.0.0-alpha.6",
"react-native": "https://github.com/expo/react-native/archive/sdk-16.0.0.tar.gz",
"react-native-image-progress": "^0.6.0",
"react-native-progress": "^3.1.0"
}
Expand Down