Skip to content

Commit

Permalink
Merge pull request #446 from infinitered/no_maps
Browse files Browse the repository at this point in the history
No maps
  • Loading branch information
GantMan authored Oct 22, 2016
2 parents 771a029 + 51d654e commit 11583d3
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 10 deletions.
3 changes: 0 additions & 3 deletions ignite-base/App/Containers/UsageExamplesScreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,9 +126,6 @@ class UsageExamplesScreen extends React.Component {
<View>
<RoundedButton text='Listview Sections' onPress={NavigationActions.listviewSectionsExample} />
</View>
<View>
<RoundedButton text='Mapview' onPress={NavigationActions.mapviewExample} />
</View>
</View>
)
}
Expand Down
4 changes: 2 additions & 2 deletions ignite-base/App/Navigation/NavigationRouter.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ import LoginScreen from '../Containers/LoginScreen'
import ListviewExample from '../Containers/ListviewExample'
import ListviewGridExample from '../Containers/ListviewGridExample'
import ListviewSectionsExample from '../Containers/ListviewSectionsExample'
import MapviewExample from '../Containers/MapviewExample'
// No maps by default for now
// import MapviewExample from '../Containers/MapviewExample'
import APITestingScreen from '../Containers/APITestingScreen'
import ThemeScreen from '../Containers/ThemeScreen'
import DeviceInfoScreen from '../Containers/DeviceInfoScreen'
Expand All @@ -34,7 +35,6 @@ class NavigationRouter extends Component {
<Scene key='listviewExample' component={ListviewExample} title='Listview Example' />
<Scene key='listviewGridExample' component={ListviewGridExample} title='Listview Grid' />
<Scene key='listviewSectionsExample' component={ListviewSectionsExample} title='Listview Sections' />
<Scene key='mapviewExample' component={MapviewExample} title='Mapview Example' />
<Scene key='apiTesting' component={APITestingScreen} title='API Testing' />
<Scene key='theme' component={ThemeScreen} title='Theme' />
<Scene key='deviceInfo' component={DeviceInfoScreen} title='Device Info' />
Expand Down
1 change: 0 additions & 1 deletion ignite-base/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
"react-native-device-info": "^0.9.5",
"react-native-drawer": "^2.3.0",
"react-native-i18n": "^0.1.1",
"react-native-maps": "^0.8.2",
"react-native-router-flux": "^3.35.0",
"react-native-vector-icons": "^2.1.0",
"react-redux": "^4.4.2",
Expand Down
1 change: 0 additions & 1 deletion ignite-base/package.json.template
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
"react-native-device-info": "^0.9.5",
"react-native-drawer": "^2.3.0",
"react-native-i18n": "^0.1.1",
"react-native-maps": "^0.8.2",
"react-native-router-flux": "^3.35.0",
"react-native-vector-icons": "^2.1.0",
"react-redux": "^4.4.2",
Expand Down
2 changes: 1 addition & 1 deletion ignite-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-ignite",
"version": "1.10.0",
"version": "1.10.1",
"description": "Create new react native files that fit the IR workflow",
"files": [
"index.js"
Expand Down
2 changes: 1 addition & 1 deletion ignite-generator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "generator-react-native-ignite",
"version": "1.10.0",
"version": "1.10.1",
"description": "Create new react native files that fit the IR workflow",
"files": [
"app",
Expand Down
2 changes: 1 addition & 1 deletion ignite-generator/src/app/index.es
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import ora from 'ora'

const igniteBase = 'ignite-base'
const lockedReactNativeVersion = '0.35.0'
const lockedIgniteVersion = '1.10.0'
const lockedIgniteVersion = '1.10.1'

const emptyFolder = (folder) => {
Shell.rm('-rf', folder)
Expand Down

0 comments on commit 11583d3

Please sign in to comment.