Skip to content

Commit 92f87cb

Browse files
committed
Add icons
1 parent 528250b commit 92f87cb

File tree

80 files changed

+308
-42
lines changed

Some content is hidden

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

80 files changed

+308
-42
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,7 @@ next-env.d.ts
3939

4040
# electron
4141
/out-desktop/
42-
certificates
42+
certificates
43+
44+
# capacitor
45+
resources/android/**/*
Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,31 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8" ?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
3-
43
<application
54
android:allowBackup="true"
65
android:icon="@mipmap/ic_launcher"
76
android:label="@string/app_name"
87
android:roundIcon="@mipmap/ic_launcher_round"
98
android:supportsRtl="true"
109
android:theme="@style/AppTheme">
11-
1210
<activity
1311
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode"
1412
android:name=".MainActivity"
1513
android:label="@string/title_activity_main"
1614
android:theme="@style/AppTheme.NoActionBarLaunch"
1715
android:launchMode="singleTask"
1816
android:exported="true">
19-
2017
<intent-filter>
2118
<action android:name="android.intent.action.MAIN" />
2219
<category android:name="android.intent.category.LAUNCHER" />
2320
</intent-filter>
24-
2521
</activity>
2622

2723
<provider
2824
android:name="androidx.core.content.FileProvider"
2925
android:authorities="${applicationId}.fileprovider"
3026
android:exported="false"
3127
android:grantUriPermissions="true">
32-
<meta-data
33-
android:name="android.support.FILE_PROVIDER_PATHS"
34-
android:resource="@xml/file_paths"></meta-data>
28+
<meta-data android:name="android.support.FILE_PROVIDER_PATHS" android:resource="@xml/file_paths" />
3529
</provider>
3630
</application>
3731

@@ -45,4 +39,4 @@
4539
<!-- Storage -->
4640
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
4741
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
48-
</manifest>
42+
</manifest>
52.5 KB
16.8 KB
25.6 KB
60 KB
16.8 KB
29.5 KB
121 KB
181 KB

0 commit comments

Comments
 (0)