Files
andors-trail/AndorsTrail/AndroidManifest.xml
oskar.wiksten db7d65c355 - Added scrollbar to item info dialog (thanks ctnbeh13)
- Changed the color of the exp bar yet again (thanks Samuel)
- Update HP-bar graphics when player gets "Minor berserker rage" condition (thanks kabbie1882)
- Fixed walkable crosses near "Blackwater Border Patrol" (thanks ctnbeh13)
- Fixed walkable pile of armour near Waeges (thanks ctnbeh13)
- Fixed walkable chair near Harlenn's bodyguard (thanks ctnbeh13)
- Fixed walkable signs on west side of Prim (thanks ctnbeh13)
- Fixed walkable plant in Prim inn (thanks ctnbeh13)
- Changed sign into fence tile outside Elm mine near Prim (thanks ctnbeh13)
- Changed walkable grass tiles outside Elm mine near Prim (thanks ctnbeh13)
- Updated authors list

git-svn-id: https://andors-trail.googlecode.com/svn/trunk@117 08aca716-68be-ccc6-4d58-36f5abd142ac
2011-06-28 20:04:51 +00:00

52 lines
2.0 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.gpl.rpg.AndorsTrail"
android:versionCode="20"
android:versionName="0.6.9b2"
android:installLocation="auto"
>
<uses-sdk
android:minSdkVersion="4"
android:targetSdkVersion="10"
/>
<supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"
android:anyDensity="true"
/>
<application android:label="@string/app_name" android:name=".AndorsTrailApplication" android:icon="@drawable/icon">
<activity
android:name=".activity.MainActivity"
android:label="@string/app_name"
android:theme="@style/Theme.NoBackground"
>
</activity>
<activity android:name=".activity.HeroinfoActivity" />
<activity android:name=".activity.MonsterInfoActivity" android:theme="@android:style/Theme.Dialog" />
<activity android:name=".activity.ItemInfoActivity" android:theme="@android:style/Theme.Dialog" />
<activity android:name=".activity.StartScreenActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".activity.LevelUpActivity" android:theme="@android:style/Theme.Dialog" />
<activity android:name=".activity.MonsterEncounterActivity" android:theme="@android:style/Theme.Dialog" />
<activity android:name=".activity.ConversationActivity" android:theme="@android:style/Theme.Dialog" />
<activity android:name=".activity.ShopActivity" />
<activity android:name=".activity.AboutActivity" />
<activity android:name=".activity.LoadingActivity" />
<activity android:name=".activity.Preferences" />
<activity android:name=".activity.LoadSaveActivity" android:theme="@android:style/Theme.Dialog" />
<activity android:name=".activity.QuestLogActivity" />
</application>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
</manifest>