Created
October 13, 2017 18:03
-
-
Save JaniKibichi/f9b15a379c1fef640a26b769a090eef4 to your computer and use it in GitHub Desktop.
Enhanced Snake Game
This file contains hidden or 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
<?xml version="1.0" encoding="utf-8"?> | |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
package="com.mjuaji.snake1720"> | |
<uses-permission android:name="android.permission.INTERNET"></uses-permission> | |
<application | |
android:allowBackup="true" | |
android:icon="@mipmap/ic_launcher" | |
android:label="@string/app_name" | |
android:roundIcon="@mipmap/ic_launcher_round" | |
android:supportsRtl="true" | |
android:theme="@style/AppTheme"> | |
<activity | |
android:name=".MainActivity" | |
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"> | |
<intent-filter> | |
<action android:name="android.intent.action.MAIN" /> | |
<category android:name="android.intent.category.LAUNCHER" /> | |
</intent-filter> | |
</activity> | |
<activity android:name=".GameActivity" | |
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"></activity> | |
<meta-data android:name="com.google.android.gms.games.APP_ID" android:value="@string/app_id"></meta-data> | |
<meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version"></meta-data> | |
</application> | |
</manifest> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment