Skip to content

Commit

Permalink
add: icon and splash
Browse files Browse the repository at this point in the history
  • Loading branch information
gopi2401 committed Oct 20, 2023
1 parent cf14fb0 commit 1e27deb
Show file tree
Hide file tree
Showing 16 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
<item>
<bitmap
android:gravity="center"
android:src="@mipmap/ic_launcher" />
android:src="@mipmap/splash" />
</item>
</layer-list>
Binary file modified android/app/src/main/res/drawable/app_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified android/app/src/main/res/drawable/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion android/app/src/main/res/drawable/launch_background.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
<item>
<bitmap
android:gravity="center"
android:src="@mipmap/ic_launcher" />
android:src="@mipmap/splash" />
</item>
</layer-list>
Binary file modified android/app/src/main/res/mipmap-hdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added android/app/src/main/res/mipmap-hdpi/splash.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified android/app/src/main/res/mipmap-mdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added android/app/src/main/res/mipmap-xhdpi/splash.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added android/app/src/main/res/mipmap-xxhdpi/splash.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed insta-banner.png
Binary file not shown.
3 changes: 2 additions & 1 deletion lib/Functions/download.dart
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,8 @@ class DownloadController extends GetxController {
var ssss = dddddd['text']
.toString()
.replaceAll(RegExp(r"[&/\\#,+()$~%.\':*?<>{}]+"), '')
.replaceAll("\n", "_");
.replaceAll("\n", "_")
.replaceAll("|", "_");
ssss.length >= 60
? fileName = ssss.substring(0, 60)
: fileName = ssss;
Expand Down

0 comments on commit 1e27deb

Please sign in to comment.