Skip to content

Commit ebfb41f

Browse files
committed
Format file (no other change)
1 parent 6e7bbd6 commit ebfb41f

File tree

1 file changed

+17
-7
lines changed

1 file changed

+17
-7
lines changed

features/call/src/main/AndroidManifest.xml

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,12 @@
1616

1717
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
1818

19-
<uses-feature android:name="android.hardware.camera" android:required="false" />
20-
<uses-feature android:name="android.hardware.microphone" android:required="false" />
19+
<uses-feature
20+
android:name="android.hardware.camera"
21+
android:required="false" />
22+
<uses-feature
23+
android:name="android.hardware.microphone"
24+
android:required="false" />
2125

2226
<uses-permission android:name="android.permission.RECORD_AUDIO" />
2327
<uses-permission android:name="android.permission.CAMERA" />
@@ -28,14 +32,15 @@
2832
<application>
2933
<activity
3034
android:name=".ui.ElementCallActivity"
31-
android:label="@string/element_call"
32-
android:exported="true"
33-
android:taskAffinity="io.element.android.features.call"
3435
android:configChanges="screenSize|screenLayout|orientation|keyboardHidden|keyboard|navigation|uiMode"
35-
android:launchMode="singleTask">
36+
android:exported="true"
37+
android:label="@string/element_call"
38+
android:launchMode="singleTask"
39+
android:taskAffinity="io.element.android.features.call">
3640

3741
<intent-filter android:autoVerify="true">
3842
<action android:name="android.intent.action.VIEW" />
43+
3944
<category android:name="android.intent.category.DEFAULT" />
4045
<category android:name="android.intent.category.BROWSABLE" />
4146

@@ -46,6 +51,7 @@
4651
<!-- Custom scheme to handle urls from other domains in the format: element://call?url=https%3A%2F%2Felement.io -->
4752
<intent-filter>
4853
<action android:name="android.intent.action.VIEW" />
54+
4955
<category android:name="android.intent.category.DEFAULT" />
5056
<category android:name="android.intent.category.BROWSABLE" />
5157

@@ -55,14 +61,18 @@
5561
<!-- Custom scheme to handle urls from other domains in the format: io.element.call:/?url=https%3A%2F%2Felement.io -->
5662
<intent-filter>
5763
<action android:name="android.intent.action.VIEW" />
64+
5865
<category android:name="android.intent.category.DEFAULT" />
5966
<category android:name="android.intent.category.BROWSABLE" />
6067

6168
<data android:scheme="io.element.call" />
6269
</intent-filter>
6370

6471
</activity>
65-
<service android:name=".CallForegroundService" android:enabled="true" android:foregroundServiceType="mediaPlayback" />
72+
<service
73+
android:name=".CallForegroundService"
74+
android:enabled="true"
75+
android:foregroundServiceType="mediaPlayback" />
6676
</application>
6777

6878
</manifest>

0 commit comments

Comments
 (0)