Last active
January 31, 2019 13:46
-
-
Save luizguilhermefr/9d578b3bcb0640be3b9df7fef0d34e13 to your computer and use it in GitHub Desktop.
Chromecast Sender Application
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:tools="http://schemas.android.com/tools" | |
package="io.github.luizguilhermefr.castcastcast"> | |
<uses-permission android:name="android.permission.INTERNET" /> | |
<application | |
android:icon="@mipmap/ic_launcher" | |
android:label="@string/app_name" | |
android:roundIcon="@mipmap/ic_launcher_round" | |
tools:ignore="GoogleAppIndexingWarning" | |
android:theme="@style/Base.Theme.AppCompat"> | |
<activity android:name=".MainActivity"> | |
<intent-filter> | |
<action android:name="android.intent.action.MAIN" /> | |
<category android:name="android.intent.category.LAUNCHER" /> | |
</intent-filter> | |
</activity> | |
<meta-data | |
android:name="com.google.android.gms.cast.framework.OPTIONS_PROVIDER_CLASS_NAME" | |
android:value="io.github.luizguilhermefr.castcastcast.CastOptionsProvider" | |
/> | |
</application> | |
</manifest> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment