Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion articles/quickstart/native/react-native/interactive.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,11 @@ pod install

</code></pre>

</p><p><div class="alert-container" severity="default"><p>At runtime, the <code>applicationId</code> value will automatically update with your application&#39;s package name or ID (e.g. <code>com.example.app</code>). You can change this value from the <code>build.gradle</code> file. You can also check it at the top of your <code>AndroidManifest.xml</code> file.</p></div></p><h3>Configure iOS</h3><p>In the file <code>ios/&lt;YOUR PROJECT&gt;/AppDelegate.mm</code>, add the following:</p><p><pre><code>#import &lt;React/RCTLinkingManager.h&gt;
</p><p><div class="alert-container" severity="default"><p>At runtime, the <code>applicationId</code> value will automatically update with your application&#39;s package name or ID (e.g. <code>com.example.app</code>). You can change this value from the <code>build.gradle</code> file. You can also check it at the top of your <code>AndroidManifest.xml</code> file.</p></div></p>
<h3>Configure iOS</h3><h4>AppDelegate Setup (Choose Based on Architecture)</h4><p>If you're using (Swift - <code>ios/&lt;YOUR PROJECT&gt;/AppDelegat.swift</code>) add the following in `AppDelegate` class:</p><p><pre><code>func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey : Any] = [:]) -&gt Bool {
return RCTLinkingManager.application(app, open: url, options: options)
}</code></pre></p>
<p>If you're using (Objective-C++ - <code>ios/&lt;YOUR PROJECT&gt;/AppDelegate.mm</code>) add the following:</p><p><pre><code>#import &lt;React/RCTLinkingManager.h&gt;



Expand Down
10 changes: 9 additions & 1 deletion fr-ca/articles/quickstart/native/react-native/00-login.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,16 @@ At runtime, the `applicationId` value will automatically update with your applic
:::

### Configure iOS
#### AppDelegate Setup (Choose Based on Architecture)

In the file `ios/<YOUR PROJECT>/AppDelegate.mm` add the following:
If you're using (Swift - `ios/<YOUR PROJECT>/AppDelegat.swift`) add the following in `AppDelegate` class:

```swift
func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey : Any] = [:]) -> Bool {
return RCTLinkingManager.application(app, open: url, options: options)
}
```
If you're using (Objective-C++ - `ios/<YOUR PROJECT>/AppDelegate.mm`) add the following:

```objc
#import <React/RCTLinkingManager.h>
Expand Down
10 changes: 9 additions & 1 deletion ja-jp/articles/quickstart/native/react-native/00-login.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,16 @@ At runtime, the `applicationId` value will automatically update with your applic
:::

### Configure iOS
#### AppDelegate Setup (Choose Based on Architecture)

In the file `ios/<YOUR PROJECT>/AppDelegate.mm` add the following:
If you're using (Swift - `ios/<YOUR PROJECT>/AppDelegat.swift`) add the following in `AppDelegate` class:

```swift
func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey : Any] = [:]) -> Bool {
return RCTLinkingManager.application(app, open: url, options: options)
}
```
If you're using (Objective-C++ - `ios/<YOUR PROJECT>/AppDelegate.mm`) add the following:

```objc
#import <React/RCTLinkingManager.h>
Expand Down