mirror of
https://github.com/OMGeeky/andors-trail.git
synced 2026-01-20 02:21:11 +01:00
Updated dialog of Oluag, Unnmir and Gaela for when the player has already talked to them. Updated conversation of guard in Prim main hall. Sort skills according to id. Renamed old healing potions to differentiate them from the new healing potions. Spelling corrections to v0.6.10 conversation content. Removed overScrollFooter for conversation listview (for issue 205) git-svn-id: https://andors-trail.googlecode.com/svn/trunk@173 08aca716-68be-ccc6-4d58-36f5abd142ac
62 lines
2.5 KiB
XML
62 lines
2.5 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="24"
|
|
android:versionName="0.6.10a3"
|
|
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:name=".AndorsTrailApplication"
|
|
android:label="@string/app_name"
|
|
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.ActorConditionInfoActivity" android:theme="@android:style/Theme.Dialog" />
|
|
<activity android:name=".activity.BulkSelectionInterface" android:theme="@android:style/Theme.Dialog" />
|
|
<activity android:name=".activity.SkillInfoActivity" android:theme="@android:style/Theme.Dialog" />
|
|
<activity android:name=".activity.HeroinfoActivity_Quests" />
|
|
<activity android:name=".activity.HeroinfoActivity_Stats" />
|
|
<activity android:name=".activity.HeroinfoActivity_Skills" />
|
|
<activity android:name=".activity.HeroinfoActivity_Inventory" />
|
|
</application>
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
</manifest>
|