Skip to content

Commit 8933aef

Browse files
committed
Rename the app to Prism File Explorer and change app's icon
1 parent 6cde2cb commit 8933aef

File tree

118 files changed

+25
-31
lines changed

Some content is hidden

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

118 files changed

+25
-31
lines changed

app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
android:hardwareAccelerated="true"
2626
android:dataExtractionRules="@xml/data_extraction_rules"
2727
android:fullBackupContent="@xml/backup_rules"
28-
android:icon="@mipmap/ic_launcher"
28+
android:icon="@mipmap/app_icon"
2929
android:label="@string/app_name"
3030
android:supportsRtl="true"
3131
android:networkSecurityConfig="@xml/network_security_config"

app/src/main/java/com/raival/compose/file/explorer/screen/main/tab/files/FilesTab.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ class FilesTab(
437437
.setIcon(
438438
android.graphics.drawable.Icon.createWithResource(
439439
context,
440-
if (file.isFile()) R.mipmap.default_shortcut_icon else R.mipmap.folder_shortcut_icon
440+
if (file.isFile()) R.mipmap.default_shortcut else R.mipmap.folder_shortcut
441441
)
442442
)
443443
.setShortLabel(file.displayName)

app/src/main/java/com/raival/compose/file/explorer/screen/main/tab/files/service/ContentOperationService.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ class ContentOperationService : Service() {
5959
if (userActionRequired) getString(R.string.action_required)
6060
else globalClass.getString(R.string.task_running_notification_text)
6161
)
62-
.setSmallIcon(R.mipmap.ic_launcher)
62+
.setSmallIcon(R.mipmap.app_icon)
6363
.setContentIntent(pendingIntent)
6464
.setOngoing(true)
6565
.setNumber(activeTasksCount)
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
3+
<background android:drawable="@mipmap/default_shortcut_background" />
4+
<foreground android:drawable="@mipmap/default_shortcut_foreground" />
5+
<monochrome android:drawable="@mipmap/default_shortcut_monochrome" />
6+
</adaptive-icon>

app/src/main/res/mipmap-anydpi-v26/default_shortcut_icon.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
3+
<background android:drawable="@mipmap/folder_shortcut_background" />
4+
<foreground android:drawable="@mipmap/folder_shortcut_foreground" />
5+
<monochrome android:drawable="@mipmap/folder_shortcut_monochrome" />
6+
</adaptive-icon>

app/src/main/res/mipmap-anydpi-v26/folder_shortcut_icon.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.
8.06 KB
5.25 KB

0 commit comments

Comments
 (0)