Skip to content

Commit 4e8d43b

Browse files
committed
chore(demo): update demo
1 parent 9d3fb8c commit 4e8d43b

File tree

3 files changed

+37
-1
lines changed

3 files changed

+37
-1
lines changed

tools/assets/App_Resources/Android/src/main/AndroidManifest.xml

+8
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
android:value="ca-app-pub-3940256099942544~3347511713"/>
3030

3131
<activity
32+
android:launchMode="singleTask"
3233
android:exported="true"
3334
android:name="com.tns.NativeScriptActivity"
3435
android:label="@string/title_activity_kimera"
@@ -41,6 +42,13 @@
4142
<action android:name="android.intent.action.MAIN" />
4243
<category android:name="android.intent.category.LAUNCHER" />
4344
</intent-filter>
45+
46+
<intent-filter>
47+
<action android:name="android.intent.action.VIEW" />
48+
<category android:name="android.intent.category.DEFAULT" />
49+
<category android:name="android.intent.category.BROWSABLE" />
50+
<data android:scheme="iogithubtriniwiznativescriptfirebasedemo" />
51+
</intent-filter>
4452
</activity>
4553
<activity android:name="com.tns.ErrorReportActivity"/>
4654
</application>

tools/assets/App_Resources/iOS/Info.plist

+12-1
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,17 @@
6666
<string>app-1-292142294722-ios-f1b9ddf525a3dbe1287d5b</string>
6767
</array>
6868
</dict>
69+
70+
<dict>
71+
<key>CFBundleTypeRole</key>
72+
<string>Editor</string>
73+
<key>CFBundleURLName</key>
74+
<string>io.github.triniwiz.nativescript.firebasedemo</string>
75+
<key>CFBundleURLSchemes</key>
76+
<array>
77+
<string>iogithubtriniwiznativescriptfirebasedemo</string>
78+
</array>
79+
</dict>
6980
</array>
7081
</dict>
71-
</plist>
82+
</plist>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>aps-environment</key>
6+
<string>development</string>
7+
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
8+
<true/>
9+
<key>com.apple.security.network.client</key>
10+
<true/>
11+
<key>com.apple.developer.associated-domains</key>
12+
<array>
13+
<string>applinks:triniwiz.page.link</string>
14+
<string>applinks:nativescript.org</string>
15+
</array>
16+
</dict>
17+
</plist>

0 commit comments

Comments
 (0)