Skip to content

Commit d7c222a

Browse files
yogaswfacebook-github-bot
authored andcommittedOct 28, 2019
Update Broken Link #devcjog25 (facebook#27025)
Summary: Update broken link https://github.com/facebook/react-native/blob/master/react-native-cli/CONTRIBUTING.md to https://github.com/facebook/react-native/blob/master/CONTRIBUTING.md ## Changelog Pull Request resolved: facebook#27025 Differential Revision: D18173631 Pulled By: cpojer fbshipit-source-id: c3634c43c4de7e39e56ec31ef17b9f31db517128
1 parent e1395ec commit d7c222a

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed
 

‎.buckconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
[maven_repositories]
99
central = https://repo1.maven.org/maven2
10-
google = https://dl.google.com/dl/android/maven2/
10+
google = https://maven.google.com/
1111

1212
[alias]
1313
rntester = //RNTester/android/app:app

‎IntegrationTests/ImageCachePolicyTest.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class ImageCachePolicyTest extends React.Component<Props, $FlowFixMeState> {
6363
<Image
6464
source={{
6565
uri:
66-
'https://facebook.github.io/react-native/img/favicon.png?cacheBust=notinCache' +
66+
'https://raw.githubusercontent.com/facebook/react-native/master/Libraries/NewAppScreen/components/logo.png?cacheBust=notinCache' +
6767
Date.now(),
6868
cache: 'only-if-cached',
6969
}}
@@ -74,7 +74,7 @@ class ImageCachePolicyTest extends React.Component<Props, $FlowFixMeState> {
7474
<Image
7575
source={{
7676
uri:
77-
'https://facebook.github.io/react-native/img/favicon.png?cacheBust=notinCache' +
77+
'https://raw.githubusercontent.com/facebook/react-native/master/Libraries/NewAppScreen/components/logo.png?cacheBust=notinCache' +
7878
Date.now(),
7979
cache: 'default',
8080
}}
@@ -85,7 +85,7 @@ class ImageCachePolicyTest extends React.Component<Props, $FlowFixMeState> {
8585
<Image
8686
source={{
8787
uri:
88-
'https://facebook.github.io/react-native/img/favicon.png?cacheBust=notinCache' +
88+
'https://raw.githubusercontent.com/facebook/react-native/master/Libraries/NewAppScreen/components/logo.png?cacheBust=notinCache' +
8989
Date.now(),
9090
cache: 'reload',
9191
}}
@@ -96,7 +96,7 @@ class ImageCachePolicyTest extends React.Component<Props, $FlowFixMeState> {
9696
<Image
9797
source={{
9898
uri:
99-
'https://facebook.github.io/react-native/img/favicon.png?cacheBust=notinCache' +
99+
'https://raw.githubusercontent.com/facebook/react-native/master/Libraries/NewAppScreen/components/logo.png?cacheBust=notinCache' +
100100
Date.now(),
101101
cache: 'force-cache',
102102
}}

‎ReactAndroid/DevExperience.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Make sure you have the following installed:
88
- SDK build tools version 23
99
- Android Support Repository 17 (for Android Support Library)
1010

11-
Follow steps on https://github.com/facebook/react-native/blob/master/react-native-cli/CONTRIBUTING.md, but be sure to bump the version of react-native in package.json to some version > 0.9 (latest published npm version) or set up proxying properly for react-native
11+
Follow steps on https://github.com/react-native-community/cli/blob/master/CONTRIBUTING.md, but be sure to bump the version of react-native in package.json to some version > 0.9 (latest published npm version) or set up proxying properly for react-native
1212

1313
- From the react-native-android repo:
1414
- `./gradlew :ReactAndroid:installArchives`

‎flow/jest.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* @format
88
*/
99

10-
// Modified from https://raw.githubusercontent.com/flow-typed/flow-typed/master/definitions/npm/jest_v23.x.x/flow_v0.39.x-/jest_v23.x.x.js
10+
// Modified from https://raw.githubusercontent.com/flow-typed/flow-typed/master/definitions/npm/jest_v23.x.x/flow_v0.39.x-v0.103.x/jest_v23.x.x.js
1111
// List of modifications:
1212
// - fix some [] -> Array lint warnings
1313
// - make it.each/describe.each take $ReadOnlyArray instead of Array<mixed>

‎scripts/validate-android-device-env.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ if [ -z "$ANDROID_NDK" ]; then
1515
echo "Error: \$ANDROID_NDK is not configured."
1616
echo "You must first install the Android NDK and then set \$ANDROID_NDK."
1717
echo "If you already installed the Android SDK, well, the NDK is a different thing that you also need to install."
18-
echo "See https://facebook.github.io/react-native/docs/android-building-from-source.html for instructions."
18+
echo "See https://github.com/facebook/react-native/wiki/Building-from-source for instructions."
1919
exit 1
2020
fi
2121

0 commit comments

Comments
 (0)
Please sign in to comment.