Skip to content

Commit a771637

Browse files
committed
Bumps example to RN 0.25.
1 parent 00b3e4b commit a771637

File tree

8 files changed

+21
-25
lines changed

8 files changed

+21
-25
lines changed

Example/.flowconfig

+3-3
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,9 @@ suppress_type=$FlowIssue
8888
suppress_type=$FlowFixMe
8989
suppress_type=$FixMe
9090

91-
suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(2[0-2]\\|1[0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)
92-
suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(2[0-2]\\|1[0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+
91+
suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(2[0-3]\\|1[0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)
92+
suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(2[0-3]\\|1[0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+
9393
suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy
9494

9595
[version]
96-
^0.22.0
96+
0.23.0

Example/android/app/BUCK

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import re
55
# - install Buck
66
# - `npm start` - to start the packager
77
# - `cd android`
8-
# - `cp ~/.android/debug.keystore keystores/debug.keystore`
8+
# - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US`
99
# - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck
1010
# - `buck install -r android/app` - compile, install and run application
1111
#

Example/android/app/proguard-rules.pro

-4
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,3 @@
6161
-dontwarn java.nio.file.*
6262
-dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement
6363
-dontwarn okio.**
64-
65-
# stetho
66-
67-
-dontwarn com.facebook.stetho.**

Example/app.js

+10-10
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,18 @@
44
*/
55
'use strict';
66

7-
var React = require('react-native');
7+
var React = require('react');
88
var {
99
AppRegistry,
10-
StyleSheet,
10+
Dimensions,
11+
Image,
1112
Navigator,
1213
ScrollView,
13-
Image,
14-
View,
14+
StyleSheet,
1515
Text,
16-
Dimensions,
1716
TouchableOpacity,
18-
} = React;
17+
View,
18+
} = require('react-native');
1919

2020
var Lightbox = require('react-native-lightbox');
2121
var Carousel = require('react-native-looped-carousel');
@@ -26,7 +26,7 @@ var BASE_PADDING = 10;
2626
var LightboxView = React.createClass({
2727
renderCarousel: function() {
2828
return (
29-
<Carousel style={{flex: 1}}>
29+
<Carousel style={{ width: WINDOW_WIDTH, height: WINDOW_WIDTH }}>
3030
<Image
3131
style={{flex: 1}}
3232
resizeMode="contain"
@@ -47,7 +47,7 @@ var LightboxView = React.createClass({
4747
<Image
4848
style={styles.contain}
4949
resizeMode="contain"
50-
source={{ uri: 'http://www.yayomg.com/wp-content/uploads/2014/04/yayomg-pig-wearing-party-hat.jpg' }}
50+
source={{ uri: 'https://www.yayomg.com/wp-content/uploads/2014/04/yayomg-pig-wearing-party-hat.jpg' }}
5151
/>
5252
</Lightbox>
5353
<View style={styles.text}><Text>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. </Text></View>
@@ -157,8 +157,8 @@ var styles = StyleSheet.create({
157157
color: 'white',
158158
},
159159
carousel: {
160-
height: 300,
161-
flex: 1,
160+
height: WINDOW_WIDTH - BASE_PADDING * 2,
161+
width: WINDOW_WIDTH - BASE_PADDING * 2,
162162
backgroundColor: 'white',
163163
},
164164
contain: {

Example/iOS/ExampleTests/ExampleTests.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#import "RCTLog.h"
1414
#import "RCTRootView.h"
1515

16-
#define TIMEOUT_SECONDS 240
16+
#define TIMEOUT_SECONDS 600
1717
#define TEXT_TO_LOOK_FOR @"Welcome to React Native!"
1818

1919
@interface ExampleTests : XCTestCase

Example/index.android.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
*/
55
'use strict';
66

7-
var React = require('react-native');
7+
var { AppRegistry } = require('react-native');
88

9-
React.AppRegistry.registerComponent('Example', () => require('./app'));
9+
AppRegistry.registerComponent('Example', () => require('./app'));

Example/index.ios.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
*/
55
'use strict';
66

7-
var React = require('react-native');
7+
var { AppRegistry } = require('react-native');
88

9-
React.AppRegistry.registerComponent('Example', () => require('./app'));
9+
AppRegistry.registerComponent('Example', () => require('./app'));

Example/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
},
88
"dependencies": {
99
"react": "^0.14.8",
10-
"react-native": "^0.24.0",
10+
"react-native": "^0.25.1",
1111
"react-native-lightbox": "file:../",
12-
"react-native-looped-carousel": "^0.0.11"
12+
"react-native-looped-carousel": "0.0.12"
1313
}
1414
}

0 commit comments

Comments
 (0)