Skip to content

Commit f130ccd

Browse files
Merge pull request #41 from NathanWalker/fix/esm-build
fix: esm build and other updates
2 parents 76474d8 + 1e4cf9d commit f130ccd

19 files changed

+23561
-5836
lines changed

Diff for: demo-angular/App_Resources/Android/src/main/AndroidManifest.xml

+7-1
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,17 @@
2323
android:requestLegacyExternalStorage="true"
2424
android:networkSecurityConfig="@xml/network_security_config">
2525

26+
<provider android:name="androidx.core.content.FileProvider" android:authorities="${applicationId}.fileprovider" android:exported="false" android:grantUriPermissions="true">
27+
<meta-data android:name="android.support.FILE_PROVIDER_PATHS" android:resource="@xml/file_paths"/>
28+
</provider>
29+
2630
<activity
2731
android:name="com.tns.NativeScriptActivity"
2832
android:label="@string/title_activity_kimera"
2933
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|locale|uiMode"
30-
android:theme="@style/LaunchScreenTheme">
34+
android:theme="@style/LaunchScreenTheme"
35+
android:launchMode="singleTask"
36+
android:exported="true">
3137

3238
<meta-data android:name="SET_THEME_ON_LAUNCH" android:resource="@style/AppTheme" />
3339

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<paths xmlns:android="http://schemas.android.com/apk/res/android">
3+
<external-path
4+
name="external"
5+
path="." />
6+
<external-files-path
7+
name="external_files"
8+
path="." />
9+
<cache-path
10+
name="cache"
11+
path="." />
12+
<external-cache-path
13+
name="external_cache"
14+
path="." />
15+
<files-path
16+
name="files"
17+
path="." />
18+
</paths>

0 commit comments

Comments
 (0)