Compare commits

...

3 Commits

  1. 2
      .gitignore
  2. 4
      BUILDING.md
  3. 5
      android/.gitignore
  4. BIN
      android/app/src/main/res/drawable-land-hdpi/splash.png
  5. BIN
      android/app/src/main/res/drawable-land-mdpi/splash.png
  6. BIN
      android/app/src/main/res/drawable-land-xhdpi/splash.png
  7. BIN
      android/app/src/main/res/drawable-land-xxhdpi/splash.png
  8. BIN
      android/app/src/main/res/drawable-land-xxxhdpi/splash.png
  9. BIN
      android/app/src/main/res/drawable-port-hdpi/splash.png
  10. BIN
      android/app/src/main/res/drawable-port-mdpi/splash.png
  11. BIN
      android/app/src/main/res/drawable-port-xhdpi/splash.png
  12. BIN
      android/app/src/main/res/drawable-port-xxhdpi/splash.png
  13. BIN
      android/app/src/main/res/drawable-port-xxxhdpi/splash.png
  14. BIN
      android/app/src/main/res/drawable/splash.png
  15. 8
      android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
  16. 8
      android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
  17. BIN
      android/app/src/main/res/mipmap-hdpi/ic_launcher.png
  18. BIN
      android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png
  19. BIN
      android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
  20. BIN
      android/app/src/main/res/mipmap-mdpi/ic_launcher.png
  21. BIN
      android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png
  22. BIN
      android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
  23. BIN
      android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
  24. BIN
      android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png
  25. BIN
      android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
  26. BIN
      android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
  27. BIN
      android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png
  28. BIN
      android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
  29. BIN
      android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
  30. BIN
      android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png
  31. BIN
      android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
  32. BIN
      assets/icon-only.jpg
  33. BIN
      assets/icon.png
  34. 4
      ios/.gitignore
  35. BIN
      ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png
  36. 14
      ios/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json
  37. 23
      ios/App/App/Assets.xcassets/Splash.imageset/Contents.json
  38. BIN
      ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png
  39. BIN
      ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png
  40. BIN
      ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png

2
.gitignore

@ -51,3 +51,5 @@ vendor/
# Build logs # Build logs
build_logs/ build_logs/
# PWA icon files generated by capacitor-assets
icons

4
BUILDING.md

@ -187,7 +187,11 @@ Prerequisites: macOS with Xcode installed
3. Copy the assets: 3. Copy the assets:
```bash ```bash
# It makes no sense why capacitor-assets will not run without these but it actually changes the contents.
mkdir -p ios/App/App/Assets.xcassets/AppIcon.appiconset mkdir -p ios/App/App/Assets.xcassets/AppIcon.appiconset
echo '{"images":[]}' > ios/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json
mkdir -p ios/App/App/Assets.xcassets/Splash.imageset
echo '{"images":[]}' > ios/App/App/Assets.xcassets/Splash.imageset/Contents.json
npx capacitor-assets generate --ios npx capacitor-assets generate --ios
``` ```

5
android/.gitignore

@ -102,3 +102,8 @@ app/src/main/assets/public
app/src/main/assets/capacitor.config.json app/src/main/assets/capacitor.config.json
app/src/main/assets/capacitor.plugins.json app/src/main/assets/capacitor.plugins.json
app/src/main/res/xml/config.xml app/src/main/res/xml/config.xml
# Generated Icons from capacitor-assets
app/src/main/res/drawable/*.png
app/src/main/res/drawable-*/*.png
app/src/main/res/mipmap-*/*.png

BIN
android/app/src/main/res/drawable-land-hdpi/splash.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.5 KiB

BIN
android/app/src/main/res/drawable-land-mdpi/splash.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.9 KiB

BIN
android/app/src/main/res/drawable-land-xhdpi/splash.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.0 KiB

BIN
android/app/src/main/res/drawable-land-xxhdpi/splash.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

BIN
android/app/src/main/res/drawable-land-xxxhdpi/splash.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

BIN
android/app/src/main/res/drawable-port-hdpi/splash.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.7 KiB

BIN
android/app/src/main/res/drawable-port-mdpi/splash.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.0 KiB

BIN
android/app/src/main/res/drawable-port-xhdpi/splash.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.6 KiB

BIN
android/app/src/main/res/drawable-port-xxhdpi/splash.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

BIN
android/app/src/main/res/drawable-port-xxxhdpi/splash.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

BIN
android/app/src/main/res/drawable/splash.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.9 KiB

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

@ -1,5 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background"/> <background>
<foreground android:drawable="@mipmap/ic_launcher_foreground"/> <inset android:drawable="@mipmap/ic_launcher_background" android:inset="16.7%" />
</background>
<foreground>
<inset android:drawable="@mipmap/ic_launcher_foreground" android:inset="16.7%" />
</foreground>
</adaptive-icon> </adaptive-icon>

8
android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml

@ -1,5 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background"/> <background>
<foreground android:drawable="@mipmap/ic_launcher_foreground"/> <inset android:drawable="@mipmap/ic_launcher_background" android:inset="16.7%" />
</background>
<foreground>
<inset android:drawable="@mipmap/ic_launcher_foreground" android:inset="16.7%" />
</foreground>
</adaptive-icon> </adaptive-icon>

BIN
android/app/src/main/res/mipmap-hdpi/ic_launcher.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

BIN
android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

BIN
android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

BIN
android/app/src/main/res/mipmap-mdpi/ic_launcher.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

BIN
android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

BIN
android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

BIN
android/app/src/main/res/mipmap-xhdpi/ic_launcher.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.9 KiB

BIN
android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.9 KiB

BIN
android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.4 KiB

BIN
android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.5 KiB

BIN
android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.6 KiB

BIN
android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

BIN
android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.2 KiB

BIN
android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

BIN
android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

BIN
assets/icon-only.jpg

Binary file not shown.

Before

Width:  |  Height:  |  Size: 60 KiB

BIN
assets/icon.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 99 KiB

4
ios/.gitignore

@ -21,3 +21,7 @@ fastlane/report.xml
fastlane/Preview.html fastlane/Preview.html
fastlane/screenshots fastlane/screenshots
fastlane/test_output fastlane/test_output
# Generated Icons from capacitor-assets
App/App/Assets.xcassets/AppIcon.appiconset/*.png
App/App/Assets.xcassets/Splash.imageset/*.png

BIN
ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 116 KiB

14
ios/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json

@ -1,14 +0,0 @@
{
"images": [
{
"idiom": "universal",
"size": "1024x1024",
"filename": "AppIcon-512@2x.png",
"platform": "ios"
}
],
"info": {
"author": "xcode",
"version": 1
}
}

23
ios/App/App/Assets.xcassets/Splash.imageset/Contents.json

@ -1,23 +0,0 @@
{
"images" : [
{
"idiom" : "universal",
"filename" : "splash-2732x2732-2.png",
"scale" : "1x"
},
{
"idiom" : "universal",
"filename" : "splash-2732x2732-1.png",
"scale" : "2x"
},
{
"idiom" : "universal",
"filename" : "splash-2732x2732.png",
"scale" : "3x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}

BIN
ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 40 KiB

BIN
ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 40 KiB

BIN
ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 40 KiB

Loading…
Cancel
Save