fedilab-Android-App/app/src/playstore/AndroidManifest.xml

33 lines
1.0 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
>
<application android:name=".MainApplication">
<receiver
android:name=".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=".expandedcontrols.ExpandedControlsActivity"
android:theme="@style/AppTheme"
/>
<meta-data
android:name="com.google.android.gms.cast.framework.OPTIONS_PROVIDER_CLASS_NAME"
android:value="app.fedilab.android.peertube.provider.CastOptionsProvider" />
</application>
</manifest>