mirror of
https://github.com/OMGeeky/andors-trail.git
synced 2026-02-23 15:38:29 +01:00
Refactored resourceloader of conversationcollection. Now the game only loads conversations when they are used in the ConversationActivity, instead of loading them all when the game starts. These two changes drastically reduces the memory footprint of the game, thus allowing devices with lower maximum heap size to run the game. Changed link to forums (http://andorstrail.com/) git-svn-id: https://andors-trail.googlecode.com/svn/trunk@181 08aca716-68be-ccc6-4d58-36f5abd142ac
63 lines
2.6 KiB
XML
63 lines
2.6 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="25"
|
|
android:versionName="0.6.10b1"
|
|
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"
|
|
android:description="@string/app_description"
|
|
>
|
|
<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>
|