-
Notifications
You must be signed in to change notification settings - Fork 339
Feature: Add minimized video service (YouTube-style PiP) #5423
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: feature/bma/minimizeVideoPlayer
Are you sure you want to change the base?
Changes from 4 commits
9f024c7
a111b5e
16db3ab
bbc5458
0f3fec9
fe18ef7
49a765d
daf7461
46d226b
d07dc1e
b99e67f
2f9f56d
7c13c1f
b9f415f
a90c19a
6a3cb61
f91d167
1466e74
b33720c
d4228a8
19defb1
2cf92d5
44105d2
1978751
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,7 +9,7 @@ | |
|
|
||
| <!-- To be able to install APK from the application --> | ||
| <uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" /> | ||
|
|
||
| <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" /> | ||
| <application | ||
| android:name=".ElementXApplication" | ||
| android:allowBackup="false" | ||
|
|
@@ -26,7 +26,10 @@ | |
| android:supportsRtl="true" | ||
| android:theme="@style/Theme.ElementX" | ||
| tools:targetApi="33"> | ||
|
|
||
| <service | ||
|
||
| android:name="io.element.android.libraries.mediaviewer.impl.floatingvideo.FloatingVideoService" | ||
| android:enabled="true" | ||
| android:exported="false" /> | ||
| <meta-data | ||
| android:name="com.google.android.gms.car.application" | ||
| android:resource="@xml/automotive_app_desc" /> | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This declaration should be located in the AndroidManifest of the module where
FloatingVideoServiceis defined.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done