android adaptive icon fixed
android 12 support added for v2
10
.github/workflows/flutter-build.yml
vendored
@ -27,9 +27,6 @@ jobs:
|
||||
- run: chmod +x /usr/local/bin/appimagetool
|
||||
- run: pip3 install appimage-builder
|
||||
- run: make appimage
|
||||
# Building Android Application
|
||||
- run: flutter build apk
|
||||
- run: make apk
|
||||
- uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: Spotube-Linux-Bundle
|
||||
@ -37,6 +34,13 @@ jobs:
|
||||
build/Spotube-linux-x86_64.deb
|
||||
build/Spotube-linux-x86_64.tar.xz
|
||||
build/Spotube-*-x86_64.AppImage
|
||||
# Building Android Application
|
||||
- run: flutter build apk
|
||||
- run: make apk
|
||||
- uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: Spotube-Android-Bundle
|
||||
path: |
|
||||
build/Spotube-android-all-arch.apk
|
||||
build_windows:
|
||||
runs-on: windows-latest
|
||||
|
@ -34,7 +34,7 @@
|
||||
</intent-filter>
|
||||
</service>
|
||||
|
||||
<receiver android:name="com.ryanheise.audioservice.MediaButtonReceiver">
|
||||
<receiver android:name="com.ryanheise.audioservice.MediaButtonReceiver" android:exported="false">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MEDIA_BUTTON" />
|
||||
</intent-filter>
|
||||
|
After Width: | Height: | Size: 7.9 KiB |
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 8.3 KiB |
After Width: | Height: | Size: 4.6 KiB |
Before Width: | Height: | Size: 9.9 KiB After Width: | Height: | Size: 4.3 KiB |
After Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 13 KiB |
After Width: | Height: | Size: 23 KiB |
Before Width: | Height: | Size: 49 KiB After Width: | Height: | Size: 27 KiB |
After Width: | Height: | Size: 37 KiB |
Before Width: | Height: | Size: 74 KiB After Width: | Height: | Size: 43 KiB |
BIN
assets/spotube-logo-foreground.jpg
Normal file
After Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 114 KiB |
@ -123,5 +123,5 @@ msix_config:
|
||||
flutter_icons:
|
||||
android: true
|
||||
image_path: "assets/spotube-logo.png"
|
||||
adaptive_icon_foreground: "assets/spotube-logo-foreground.png"
|
||||
adaptive_icon_foreground: "assets/spotube-logo-foreground.jpg"
|
||||
adaptive_icon_background: "#ffffff"
|
||||
|