feat(compose-shortcut): allow user to choose account

This commit is contained in:
LucasGGamerM
2024-07-24 15:22:18 -03:00
parent 1d7cbcc4e1
commit fa6abd44c3
4 changed files with 65 additions and 23 deletions

View File

@@ -81,6 +81,15 @@
<data android:mimeType="*/*"/>
</intent-filter>
</activity>
<activity android:name=".ChooseAccountForComposeActivity" android:exported="true" android:configChanges="orientation|screenSize" android:windowSoftInputMode="adjustResize"
android:theme="@style/TransparentDialog">
<intent-filter>
<action android:name="android.intent.action.CHOOSER"/>
<category android:name="android.intent.category.LAUNCHER"/>
<data android:mimeType="*/*"/>
</intent-filter>
</activity>
<service android:name=".AudioPlayerService" android:foregroundServiceType="mediaPlayback"/>