Skip to content

Commit 0eb4830

Browse files
authored
Add a new example with the latest version of React Native and fix the broken issue on the new architecture (#811)
1 parent 8024e0e commit 0eb4830

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+12064
-2982
lines changed

Example/0.73.4/.bundle/config

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
BUNDLE_PATH: "vendor/bundle"
2+
BUNDLE_FORCE_RUBY_PLATFORM: 1

Example/0.73.4/.env

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
ENV=dev
2+
API_URL=http://localhost

Example/0.73.4/.env.production

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
ENV=production
2+
API_URL=https://myapi.com

Example/0.73.4/.gitignore

+74
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
# OSX
2+
#
3+
.DS_Store
4+
5+
# Xcode
6+
#
7+
build/
8+
*.pbxuser
9+
!default.pbxuser
10+
*.mode1v3
11+
!default.mode1v3
12+
*.mode2v3
13+
!default.mode2v3
14+
*.perspectivev3
15+
!default.perspectivev3
16+
xcuserdata
17+
*.xccheckout
18+
*.moved-aside
19+
DerivedData
20+
*.hmap
21+
*.ipa
22+
*.xcuserstate
23+
**/.xcode.env.local
24+
25+
# Android/IntelliJ
26+
#
27+
build/
28+
.idea
29+
.gradle
30+
local.properties
31+
*.iml
32+
*.hprof
33+
.cxx/
34+
*.keystore
35+
!debug.keystore
36+
37+
# node.js
38+
#
39+
node_modules/
40+
npm-debug.log
41+
yarn-error.log
42+
43+
# fastlane
44+
#
45+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
46+
# screenshots whenever they are needed.
47+
# For more information about the recommended setup visit:
48+
# https://docs.fastlane.tools/best-practices/source-control/
49+
50+
**/fastlane/report.xml
51+
**/fastlane/Preview.html
52+
**/fastlane/screenshots
53+
**/fastlane/test_output
54+
55+
# Bundle artifact
56+
*.jsbundle
57+
58+
# Ruby / CocoaPods
59+
**/Pods/
60+
/vendor/bundle/
61+
62+
# Temporary files created by Metro to check the health of the file watcher
63+
.metro-health-check*
64+
65+
# testing
66+
/coverage
67+
68+
# Yarn
69+
.yarn/*
70+
!.yarn/patches
71+
!.yarn/plugins
72+
!.yarn/releases
73+
!.yarn/sdks
74+
!.yarn/versions

Example/0.73.4/.java-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
18

Example/0.73.4/.ruby-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.1.3

Example/0.73.4/.watchmanconfig

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

Example/0.73.4/App.tsx

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
/**
2+
* Sample React Native App
3+
* https://github.com/facebook/react-native
4+
*
5+
* Generated with the TypeScript template
6+
* https://github.com/react-native-community/react-native-template-typescript
7+
*
8+
* @format
9+
*/
10+
11+
import React from 'react';
12+
import {
13+
StyleSheet,
14+
Text,
15+
View,
16+
} from 'react-native';
17+
import Config from 'react-native-config';
18+
19+
const App = () => {
20+
return (
21+
<View style={styles.container}>
22+
<Text style={styles.text}>ENV={Config.ENV}</Text>
23+
<Text style={styles.text}>API_URL={Config.API_URL}</Text>
24+
</View>
25+
);
26+
};
27+
28+
const styles = StyleSheet.create({
29+
container: {
30+
flex: 1,
31+
justifyContent: 'center',
32+
alignItems: 'center',
33+
backgroundColor: '#F5FCFF',
34+
},
35+
text: {
36+
fontSize: 20,
37+
textAlign: 'center',
38+
margin: 10,
39+
color: 'black',
40+
},
41+
});
42+
43+
export default App;

Example/0.73.4/Gemfile

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
source 'https://rubygems.org'
2+
3+
# You may use http://rbenv.org/ or https://rvm.io/ to install and use this version
4+
ruby ">= 2.6.10"
5+
6+
# Cocoapods 1.15 introduced a bug which break the build. We will remove the upper
7+
# bound in the template on Cocoapods with next React Native release.
8+
gem 'cocoapods', '>= 1.13', '< 1.15'
9+
gem 'activesupport', '>= 6.1.7.5', '< 7.1.0'

Example/0.73.4/README.md

+79
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
This is a new [**React Native**](https://reactnative.dev) project, bootstrapped using [`@react-native-community/cli`](https://github.com/react-native-community/cli).
2+
3+
# Getting Started
4+
5+
>**Note**: Make sure you have completed the [React Native - Environment Setup](https://reactnative.dev/docs/environment-setup) instructions till "Creating a new application" step, before proceeding.
6+
7+
## Step 1: Start the Metro Server
8+
9+
First, you will need to start **Metro**, the JavaScript _bundler_ that ships _with_ React Native.
10+
11+
To start Metro, run the following command from the _root_ of your React Native project:
12+
13+
```bash
14+
# using npm
15+
npm start
16+
17+
# OR using Yarn
18+
yarn start
19+
```
20+
21+
## Step 2: Start your Application
22+
23+
Let Metro Bundler run in its _own_ terminal. Open a _new_ terminal from the _root_ of your React Native project. Run the following command to start your _Android_ or _iOS_ app:
24+
25+
### For Android
26+
27+
```bash
28+
# using npm
29+
npm run android
30+
31+
# OR using Yarn
32+
yarn android
33+
```
34+
35+
### For iOS
36+
37+
```bash
38+
# using npm
39+
npm run ios
40+
41+
# OR using Yarn
42+
yarn ios
43+
```
44+
45+
If everything is set up _correctly_, you should see your new app running in your _Android Emulator_ or _iOS Simulator_ shortly provided you have set up your emulator/simulator correctly.
46+
47+
This is one way to run your app — you can also run it directly from within Android Studio and Xcode respectively.
48+
49+
## Step 3: Modifying your App
50+
51+
Now that you have successfully run the app, let's modify it.
52+
53+
1. Open `App.tsx` in your text editor of choice and edit some lines.
54+
2. For **Android**: Press the <kbd>R</kbd> key twice or select **"Reload"** from the **Developer Menu** (<kbd>Ctrl</kbd> + <kbd>M</kbd> (on Window and Linux) or <kbd>Cmd ⌘</kbd> + <kbd>M</kbd> (on macOS)) to see your changes!
55+
56+
For **iOS**: Hit <kbd>Cmd ⌘</kbd> + <kbd>R</kbd> in your iOS Simulator to reload the app and see your changes!
57+
58+
## Congratulations! :tada:
59+
60+
You've successfully run and modified your React Native App. :partying_face:
61+
62+
### Now what?
63+
64+
- If you want to add this new React Native code to an existing application, check out the [Integration guide](https://reactnative.dev/docs/integration-with-existing-apps).
65+
- If you're curious to learn more about React Native, check out the [Introduction to React Native](https://reactnative.dev/docs/getting-started).
66+
67+
# Troubleshooting
68+
69+
If you can't get this to work, see the [Troubleshooting](https://reactnative.dev/docs/troubleshooting) page.
70+
71+
# Learn More
72+
73+
To learn more about React Native, take a look at the following resources:
74+
75+
- [React Native Website](https://reactnative.dev) - learn more about React Native.
76+
- [Getting Started](https://reactnative.dev/docs/environment-setup) - an **overview** of React Native and how setup your environment.
77+
- [Learn the Basics](https://reactnative.dev/docs/getting-started) - a **guided tour** of the React Native **basics**.
78+
- [Blog](https://reactnative.dev/blog) - read the latest official React Native **Blog** posts.
79+
- [`@facebook/react-native`](https://github.com/facebook/react-native) - the Open Source; GitHub **repository** for React Native.

Example/0.73.4/__tests__/App.test.tsx

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
/**
2+
* @format
3+
*/
4+
5+
import 'react-native';
6+
import React from 'react';
7+
import App from '../App';
8+
9+
// Note: import explicitly to use the types shipped with jest.
10+
import {it} from '@jest/globals';
11+
12+
// Note: test renderer must be required after react-native.
13+
import renderer from 'react-test-renderer';
14+
15+
it('renders correctly', () => {
16+
renderer.create(<App />);
17+
});
+121
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,121 @@
1+
apply plugin: "com.android.application"
2+
apply plugin: "org.jetbrains.kotlin.android"
3+
apply plugin: "com.facebook.react"
4+
5+
apply from: project(':react-native-config').projectDir.getPath() + "/dotenv.gradle"
6+
7+
/**
8+
* This is the configuration block to customize your React Native Android app.
9+
* By default you don't need to apply any configuration, just uncomment the lines you need.
10+
*/
11+
react {
12+
/* Folders */
13+
// The root of your project, i.e. where "package.json" lives. Default is '..'
14+
// root = file("../")
15+
// The folder where the react-native NPM package is. Default is ../node_modules/react-native
16+
// reactNativeDir = file("../node_modules/react-native")
17+
// The folder where the react-native Codegen package is. Default is ../node_modules/@react-native/codegen
18+
// codegenDir = file("../node_modules/@react-native/codegen")
19+
// The cli.js file which is the React Native CLI entrypoint. Default is ../node_modules/react-native/cli.js
20+
// cliFile = file("../node_modules/react-native/cli.js")
21+
22+
/* Variants */
23+
// The list of variants to that are debuggable. For those we're going to
24+
// skip the bundling of the JS bundle and the assets. By default is just 'debug'.
25+
// If you add flavors like lite, prod, etc. you'll have to list your debuggableVariants.
26+
// debuggableVariants = ["liteDebug", "prodDebug"]
27+
28+
/* Bundling */
29+
// A list containing the node command and its flags. Default is just 'node'.
30+
// nodeExecutableAndArgs = ["node"]
31+
//
32+
// The command to run when bundling. By default is 'bundle'
33+
// bundleCommand = "ram-bundle"
34+
//
35+
// The path to the CLI configuration file. Default is empty.
36+
// bundleConfig = file(../rn-cli.config.js)
37+
//
38+
// The name of the generated asset file containing your JS bundle
39+
// bundleAssetName = "MyApplication.android.bundle"
40+
//
41+
// The entry file for bundle generation. Default is 'index.android.js' or 'index.js'
42+
// entryFile = file("../js/MyApplication.android.js")
43+
//
44+
// A list of extra flags to pass to the 'bundle' commands.
45+
// See https://github.com/react-native-community/cli/blob/main/docs/commands.md#bundle
46+
// extraPackagerArgs = []
47+
48+
/* Hermes Commands */
49+
// The hermes compiler command to run. By default it is 'hermesc'
50+
// hermesCommand = "$rootDir/my-custom-hermesc/bin/hermesc"
51+
//
52+
// The list of flags to pass to the Hermes compiler. By default is "-O", "-output-source-map"
53+
// hermesFlags = ["-O", "-output-source-map"]
54+
}
55+
56+
/**
57+
* Set this to true to Run Proguard on Release builds to minify the Java bytecode.
58+
*/
59+
def enableProguardInReleaseBuilds = false
60+
61+
/**
62+
* The preferred build flavor of JavaScriptCore (JSC)
63+
*
64+
* For example, to use the international variant, you can use:
65+
* `def jscFlavor = 'org.webkit:android-jsc-intl:+'`
66+
*
67+
* The international variant includes ICU i18n library and necessary data
68+
* allowing to use e.g. `Date.toLocaleString` and `String.localeCompare` that
69+
* give correct results when using with locales other than en-US. Note that
70+
* this variant is about 6MiB larger per architecture than default.
71+
*/
72+
def jscFlavor = 'org.webkit:android-jsc:+'
73+
74+
android {
75+
ndkVersion rootProject.ext.ndkVersion
76+
buildToolsVersion rootProject.ext.buildToolsVersion
77+
compileSdk rootProject.ext.compileSdkVersion
78+
79+
namespace "com.example"
80+
defaultConfig {
81+
applicationId "com.example"
82+
minSdkVersion rootProject.ext.minSdkVersion
83+
targetSdkVersion rootProject.ext.targetSdkVersion
84+
versionCode 1
85+
versionName "1.0"
86+
}
87+
signingConfigs {
88+
debug {
89+
storeFile file('debug.keystore')
90+
storePassword 'android'
91+
keyAlias 'androiddebugkey'
92+
keyPassword 'android'
93+
}
94+
}
95+
buildTypes {
96+
debug {
97+
signingConfig signingConfigs.debug
98+
}
99+
release {
100+
// Caution! In production, you need to generate your own keystore file.
101+
// see https://reactnative.dev/docs/signed-apk-android.
102+
signingConfig signingConfigs.debug
103+
minifyEnabled enableProguardInReleaseBuilds
104+
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
105+
}
106+
}
107+
}
108+
109+
dependencies {
110+
// The version of react-native is set by the React Native Gradle Plugin
111+
implementation("com.facebook.react:react-android")
112+
implementation project(':react-native-config')
113+
114+
if (hermesEnabled.toBoolean()) {
115+
implementation("com.facebook.react:hermes-android")
116+
} else {
117+
implementation jscFlavor
118+
}
119+
}
120+
121+
apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project)
2.2 KB
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Add project specific ProGuard rules here.
2+
# By default, the flags in this file are appended to flags specified
3+
# in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt
4+
# You can edit the include path and order by changing the proguardFiles
5+
# directive in build.gradle.
6+
#
7+
# For more details, see
8+
# http://developer.android.com/guide/developing/tools/proguard.html
9+
10+
# Add any project specific keep options here:
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
xmlns:tools="http://schemas.android.com/tools">
4+
5+
<application
6+
android:usesCleartextTraffic="true"
7+
tools:targetApi="28"
8+
tools:ignore="GoogleAppIndexingWarning"/>
9+
</manifest>

0 commit comments

Comments
 (0)