Newer
Older
HelloAndroid / RiverCrossingAI / AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="library.core.mainAI"
    android:versionCode="1"
    android:versionName="1.1" >

    <uses-sdk
        android:minSdkVersion="14"
        android:targetSdkVersion="19" />

   <uses-permission android:name="android.permission.WAKE_LOCK"/>
   <application
       android:name="library.core.mainAI.RiverCrossingAI"
        android:allowBackup="true" android:icon="@drawable/test" android:label="@string/app_name">
        <activity android:name="sample.game.main.MainActivity" android:label="@string/app_name" android:configChanges="orientation|screenSize" android:screenOrientation="landscape">


        </activity>
        <activity android:name="sample.game.main.UserGameTitle" android:label="@string/app_name" android:configChanges="orientation|screenSize" android:screenOrientation="landscape">
	
        </activity>

		<activity android:name="sample.game.main.HowToPlay" android:label="@string/app_name" android:configChanges="orientation|screenSize" android:screenOrientation="landscape">

        </activity>


        <activity android:name="sample.game.main.AiGameTitle" android:label="@string/app_name" android:configChanges="orientation|screenSize" android:screenOrientation="landscape">
            
        </activity>

        <activity android:name="sample.game.main.StartActivity" android:label="@string/app_name" android:configChanges="orientation|screenSize" android:screenOrientation="landscape">
		 <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

    </application>



</manifest>