Skip to content

Commit

Permalink
revert changes
Browse files Browse the repository at this point in the history
  • Loading branch information
hichemfantar committed Jan 3, 2025
1 parent d16150c commit 74c66dc
Show file tree
Hide file tree
Showing 12 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion website/versioned_docs/version-0.70/profiling.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ The first step for debugging this jank is to answer the fundamental question of
First, connect a device that exhibits the stuttering you want to investigate to your computer via USB and get it to the point right before the navigation/animation you want to profile. Run `systrace` as follows:

```shell
<path_to_android_sdk>/platform-tools/systrace/systrace.py --time=10 -o trace.html sched gfx view -a <your_package_name>
$ <path_to_android_sdk>/platform-tools/systrace/systrace.py --time=10 -o trace.html sched gfx view -a <your_package_name>
```

A quick breakdown of this command:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Next, make sure you have [installed the yarn package manager](https://yarnpkg.co
Install the `react` and `react-native` packages. Open a terminal or command prompt, then navigate to the directory with your `package.json` file and run:

```shell
yarn add react-native
$ yarn add react-native
```

This will print a message similar to the following (scroll up in the yarn output to see it):
Expand All @@ -48,7 +48,7 @@ This will print a message similar to the following (scroll up in the yarn output
This is OK, it means we also need to install React:

```shell
yarn add react@version_printed_above
$ yarn add react@version_printed_above
```

Yarn has created a new `/node_modules` folder. This folder stores all the JavaScript dependencies required to build your project.
Expand All @@ -62,7 +62,7 @@ Add `node_modules/` to your `.gitignore` file.
We recommend installing CocoaPods using [Homebrew](http://brew.sh/).

```shell
brew install cocoapods
$ brew install cocoapods
```

> It is technically possible not to use CocoaPods, but that would require manual library and linker additions that would overly complicate this process.
Expand All @@ -88,7 +88,7 @@ The list of supported `subspec`s is available in [`/node_modules/react-native/Re
You can specify which `subspec`s your app will depend on in a `Podfile` file. The easiest way to create a `Podfile` is by running the CocoaPods `init` command in the `/ios` subfolder of your project:

```shell
pod init
$ pod init
```

The `Podfile` will contain a boilerplate setup that you will tweak for your integration purposes.
Expand All @@ -101,7 +101,7 @@ Ultimately, your `Podfile` should look something similar to this:
After you have created your `Podfile`, you are ready to install the React Native pod.

```shell
pod install
$ pod install
```

You should see output such as:
Expand Down Expand Up @@ -299,7 +299,7 @@ Apple has blocked implicit cleartext HTTP resource loading. So we need to add th
To run your app, you need to first start the development server. To do this, run the following command in the root directory of your React Native project:

```shell
npm start
$ npm start
```

##### 3. Run the app
Expand Down
2 changes: 1 addition & 1 deletion website/versioned_docs/version-0.71/profiling.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ The first step for debugging this jank is to answer the fundamental question of
First, connect a device that exhibits the stuttering you want to investigate to your computer via USB and get it to the point right before the navigation/animation you want to profile. Run `systrace` as follows:

```shell
<path_to_android_sdk>/platform-tools/systrace/systrace.py --time=10 -o trace.html sched gfx view -a <your_package_name>
$ <path_to_android_sdk>/platform-tools/systrace/systrace.py --time=10 -o trace.html sched gfx view -a <your_package_name>
```

A quick breakdown of this command:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ Add `node_modules/` to your `.gitignore` file.
We recommend installing CocoaPods using [Homebrew](http://brew.sh/).

```shell
brew install cocoapods
$ brew install cocoapods
```

> It is technically possible not to use CocoaPods, but that would require manual library and linker additions that would overly complicate this process.
Expand All @@ -114,7 +114,7 @@ The list of supported `subspec`s is available in [`/node_modules/react-native/Re
You can specify which `subspec`s your app will depend on in a `Podfile` file. The easiest way to create a `Podfile` is by running the CocoaPods `init` command in the `/ios` subfolder of your project:

```shell
pod init
$ pod init
```

The `Podfile` will contain a boilerplate setup that you will tweak for your integration purposes.
Expand All @@ -127,7 +127,7 @@ Ultimately, your `Podfile` should look something similar to this:
After you have created your `Podfile`, you are ready to install the React Native pod.

```shell
pod install
$ pod install
```

You should see output such as:
Expand Down
2 changes: 1 addition & 1 deletion website/versioned_docs/version-0.72/profiling.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ The first step for debugging this jank is to answer the fundamental question of
First, connect a device that exhibits the stuttering you want to investigate to your computer via USB and get it to the point right before the navigation/animation you want to profile. Run `systrace` as follows:

```shell
<path_to_android_sdk>/platform-tools/systrace/systrace.py --time=10 -o trace.html sched gfx view -a <your_package_name>
$ <path_to_android_sdk>/platform-tools/systrace/systrace.py --time=10 -o trace.html sched gfx view -a <your_package_name>
```

A quick breakdown of this command:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ Add `node_modules/` to your `.gitignore` file.
We recommend installing CocoaPods using [Homebrew](https://brew.sh/).

```shell
brew install cocoapods
$ brew install cocoapods
```

> It is technically possible not to use CocoaPods, but that would require manual library and linker additions that would overly complicate this process.
Expand All @@ -114,7 +114,7 @@ The list of supported `subspec`s is available in [`/node_modules/react-native/Re
You can specify which `subspec`s your app will depend on in a `Podfile` file. The easiest way to create a `Podfile` is by running the CocoaPods `init` command in the `/ios` subfolder of your project:

```shell
pod init
$ pod init
```

The `Podfile` will contain a boilerplate setup that you will tweak for your integration purposes.
Expand All @@ -127,7 +127,7 @@ Ultimately, your `Podfile` should look something similar to this:
After you have created your `Podfile`, you are ready to install the React Native pod.

```shell
pod install
$ pod install
```

You should see output such as:
Expand Down
2 changes: 1 addition & 1 deletion website/versioned_docs/version-0.73/profiling.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ The first step for debugging this jank is to answer the fundamental question of
First, connect a device that exhibits the stuttering you want to investigate to your computer via USB and get it to the point right before the navigation/animation you want to profile. Run `systrace` as follows:

```shell
<path_to_android_sdk>/platform-tools/systrace/systrace.py --time=10 -o trace.html sched gfx view -a <your_package_name>
$ <path_to_android_sdk>/platform-tools/systrace/systrace.py --time=10 -o trace.html sched gfx view -a <your_package_name>
```

A quick breakdown of this command:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ Add `node_modules/` to your `.gitignore` file.
We recommend installing CocoaPods using [Homebrew](https://brew.sh/).

```shell
brew install cocoapods
$ brew install cocoapods
```

> It is technically possible not to use CocoaPods, but that would require manual library and linker additions that would overly complicate this process.
Expand All @@ -114,7 +114,7 @@ The list of supported `subspec`s is available in [`/node_modules/react-native/Re
You can specify which `subspec`s your app will depend on in a `Podfile` file. The easiest way to create a `Podfile` is by running the CocoaPods `init` command in the `/ios` subfolder of your project:

```shell
pod init
$ pod init
```

The `Podfile` will contain a boilerplate setup that you will tweak for your integration purposes.
Expand All @@ -127,7 +127,7 @@ Ultimately, your `Podfile` should look something similar to this:
After you have created your `Podfile`, you are ready to install the React Native pod.

```shell
pod install
$ pod install
```

You should see output such as:
Expand Down
2 changes: 1 addition & 1 deletion website/versioned_docs/version-0.74/profiling.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ The first step for debugging this jank is to answer the fundamental question of
First, connect a device that exhibits the stuttering you want to investigate to your computer via USB and get it to the point right before the navigation/animation you want to profile. Run `systrace` as follows:

```shell
<path_to_android_sdk>/platform-tools/systrace/systrace.py --time=10 -o trace.html sched gfx view -a <your_package_name>
$ <path_to_android_sdk>/platform-tools/systrace/systrace.py --time=10 -o trace.html sched gfx view -a <your_package_name>
```

A quick breakdown of this command:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ Add `node_modules/` to your `.gitignore` file.
We recommend installing CocoaPods using [Homebrew](https://brew.sh/).

```shell
brew install cocoapods
$ brew install cocoapods
```

> It is technically possible not to use CocoaPods, but that would require manual library and linker additions that would overly complicate this process.
Expand All @@ -114,7 +114,7 @@ The list of supported `subspec`s is available in [`/node_modules/react-native/Re
You can specify which `subspec`s your app will depend on in a `Podfile` file. The easiest way to create a `Podfile` is by running the CocoaPods `init` command in the `/ios` subfolder of your project:

```shell
pod init
$ pod init
```

The `Podfile` will contain a boilerplate setup that you will tweak for your integration purposes.
Expand All @@ -127,7 +127,7 @@ Ultimately, your `Podfile` should look something similar to this:
After you have created your `Podfile`, you are ready to install the React Native pod.

```shell
pod install
$ pod install
```

You should see output such as:
Expand Down
2 changes: 1 addition & 1 deletion website/versioned_docs/version-0.75/profiling.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ The first step for debugging this jank is to answer the fundamental question of
First, connect a device that exhibits the stuttering you want to investigate to your computer via USB and get it to the point right before the navigation/animation you want to profile. Run `systrace` as follows:

```shell
<path_to_android_sdk>/platform-tools/systrace/systrace.py --time=10 -o trace.html sched gfx view -a <your_package_name>
$ <path_to_android_sdk>/platform-tools/systrace/systrace.py --time=10 -o trace.html sched gfx view -a <your_package_name>
```

A quick breakdown of this command:
Expand Down
2 changes: 1 addition & 1 deletion website/versioned_docs/version-0.76/profiling.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ The first step for debugging this jank is to answer the fundamental question of
First, connect a device that exhibits the stuttering you want to investigate to your computer via USB and get it to the point right before the navigation/animation you want to profile. Run `systrace` as follows:

```shell
<path_to_android_sdk>/platform-tools/systrace/systrace.py --time=10 -o trace.html sched gfx view -a <your_package_name>
$ <path_to_android_sdk>/platform-tools/systrace/systrace.py --time=10 -o trace.html sched gfx view -a <your_package_name>
```

A quick breakdown of this command:
Expand Down

0 comments on commit 74c66dc

Please sign in to comment.