summaryrefslogtreecommitdiffstats
path: root/app/src/playstore/AndroidManifest.xml
blob: ae40442570d249eb7974b205a1e7c8c13a76beb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"

    package="app.fedilab.android">


    <application android:name=".MainApplication">
        <receiver
            android:name=".mastodon.services.EmbeddedDistrib"
            android:enabled="true"
            android:exported="false">
            <intent-filter>
                <action android:name="org.unifiedpush.android.distributor.feature.BYTES_MESSAGE" />
                <action android:name="org.unifiedpush.android.distributor.REGISTER" />
                <action android:name="org.unifiedpush.android.distributor.UNREGISTER" />
            </intent-filter>
        </receiver>


        <activity
            android:name=".peertube.expandedcontrols.ExpandedControlsActivity"
            android:theme="@style/AppThemeNoActionBar"

            />

        <meta-data
            android:name="com.google.android.gms.cast.framework.OPTIONS_PROVIDER_CLASS_NAME"
            android:value="app.fedilab.android.peertube.provider.CastOptionsProvider" />

    </application>


</manifest>