2015-05-27 16:02:13 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-01-21 13:23:00 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2015-05-27 16:48:19 +00:00
|
|
|
package="com.habitrpg.android.habitica"
|
2016-04-25 13:26:36 +00:00
|
|
|
android:versionCode="61"
|
|
|
|
|
android:versionName="0.0.29"
|
2016-01-21 07:34:04 +00:00
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:installLocation="auto" >
|
2015-05-27 16:02:13 +00:00
|
|
|
|
|
|
|
|
<uses-sdk
|
2015-11-13 19:33:26 +00:00
|
|
|
android:minSdkVersion="15"
|
|
|
|
|
android:targetSdkVersion="23" />
|
2015-06-20 18:47:02 +00:00
|
|
|
|
2015-06-27 18:18:25 +00:00
|
|
|
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
|
2015-06-20 18:47:02 +00:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2015-10-19 18:25:57 +00:00
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
|
|
|
<uses-permission android:name="com.android.vending.BILLING" />
|
2015-06-20 18:47:02 +00:00
|
|
|
|
2015-05-27 16:02:13 +00:00
|
|
|
<application
|
2015-06-27 18:18:25 +00:00
|
|
|
android:name=".HabiticaApplication"
|
2015-05-27 16:02:13 +00:00
|
|
|
android:allowBackup="true"
|
2015-06-20 18:47:02 +00:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
2015-05-27 16:02:13 +00:00
|
|
|
android:label="@string/app_name"
|
2015-12-14 19:52:56 +00:00
|
|
|
android:theme="@style/AppTheme">
|
2015-05-27 16:02:13 +00:00
|
|
|
<activity
|
2015-12-21 19:19:51 +00:00
|
|
|
android:name=".ui.activities.MainActivity"
|
2015-06-27 18:18:25 +00:00
|
|
|
android:label="@string/app_name"
|
2016-01-06 17:38:54 +00:00
|
|
|
android:windowSoftInputMode="stateHidden|adjustPan"
|
2015-12-14 19:52:56 +00:00
|
|
|
android:screenOrientation="portrait">
|
2015-05-27 16:02:13 +00:00
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
2015-06-20 18:47:02 +00:00
|
|
|
<activity
|
2015-12-21 19:19:51 +00:00
|
|
|
android:name=".ui.activities.PrefsActivity"
|
|
|
|
|
android:parentActivityName=".ui.activities.MainActivity"
|
2015-12-14 19:52:56 +00:00
|
|
|
android:label="@string/PS_settings_title"
|
2016-01-21 13:23:00 +00:00
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
tools:ignore="UnusedAttribute">
|
2015-06-20 18:47:02 +00:00
|
|
|
</activity>
|
|
|
|
|
<activity
|
2015-12-21 19:19:51 +00:00
|
|
|
android:name=".ui.activities.LoginActivity"
|
2015-06-20 18:47:02 +00:00
|
|
|
android:label="@string/LoginActivityName"
|
2015-08-18 16:00:25 +00:00
|
|
|
android:theme="@style/AppThemeWithActionBarBlackText"
|
2015-12-14 19:52:56 +00:00
|
|
|
android:windowSoftInputMode="adjustResize"
|
|
|
|
|
android:screenOrientation="portrait">
|
2015-05-27 16:02:13 +00:00
|
|
|
</activity>
|
2016-01-28 13:09:10 +00:00
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activities.IntroActivity"
|
|
|
|
|
android:windowSoftInputMode="adjustResize"
|
|
|
|
|
android:screenOrientation="portrait">
|
|
|
|
|
</activity>
|
2016-02-02 13:59:28 +00:00
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activities.SetupActivity"
|
|
|
|
|
android:windowSoftInputMode="adjustResize"
|
|
|
|
|
android:screenOrientation="portrait">
|
|
|
|
|
</activity>
|
2015-11-28 18:30:23 +00:00
|
|
|
<activity
|
2015-12-21 19:19:51 +00:00
|
|
|
android:name=".ui.activities.SkillTasksActivity"
|
2015-12-14 19:52:56 +00:00
|
|
|
android:label="@string/app_name"
|
|
|
|
|
android:screenOrientation="portrait">
|
2015-11-28 18:30:23 +00:00
|
|
|
</activity>
|
2015-05-27 16:02:13 +00:00
|
|
|
|
2015-11-13 19:33:26 +00:00
|
|
|
<meta-data android:name="com.facebook.sdk.ApplicationId" android:value="@string/facebook_app_id"/>
|
2015-06-20 18:47:02 +00:00
|
|
|
|
2015-07-27 14:48:18 +00:00
|
|
|
<activity
|
2015-12-21 19:19:51 +00:00
|
|
|
android:name=".ui.activities.AboutActivity"
|
2015-12-14 19:52:56 +00:00
|
|
|
android:theme="@style/AppThemeWithActionBarBlackText"
|
|
|
|
|
android:screenOrientation="portrait"/>
|
2015-07-27 14:48:18 +00:00
|
|
|
<activity
|
2015-12-21 19:19:51 +00:00
|
|
|
android:name=".ui.activities.TaskFormActivity"
|
2015-10-29 18:53:37 +00:00
|
|
|
android:theme="@style/AppThemeWithActionBarBlackText"
|
2015-12-21 19:19:51 +00:00
|
|
|
android:parentActivityName=".ui.activities.MainActivity"
|
2016-01-21 13:23:00 +00:00
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
tools:ignore="UnusedAttribute">
|
2015-08-18 19:46:12 +00:00
|
|
|
<meta-data
|
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
2015-12-21 19:19:51 +00:00
|
|
|
android:value=".ui.activities.MainActivity" />
|
2015-10-19 18:25:57 +00:00
|
|
|
</activity>
|
2016-03-06 15:49:35 +00:00
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activities.GroupFormActivity"
|
|
|
|
|
android:theme="@style/AppThemeWithActionBarBlackText"
|
|
|
|
|
android:parentActivityName=".ui.activities.MainActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
tools:ignore="UnusedAttribute">
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
|
android:value=".ui.activities.MainActivity" />
|
|
|
|
|
</activity>
|
2016-04-13 15:40:41 +00:00
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activities.ClassSelectionActivity"
|
|
|
|
|
android:theme="@style/AppThemeWithActionBarBlackText"
|
|
|
|
|
android:parentActivityName=".ui.activities.MainActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
tools:ignore="UnusedAttribute"
|
|
|
|
|
android:label="@string/select_class">
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
|
android:value=".ui.activities.MainActivity" />
|
|
|
|
|
</activity>
|
2016-04-19 17:08:37 +00:00
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activities.PartyInviteActivity"
|
|
|
|
|
android:theme="@style/AppThemeWithActionBarBlackText"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
tools:ignore="UnusedAttribute"
|
|
|
|
|
android:label="@string/invite_users">
|
|
|
|
|
</activity>
|
2015-11-13 19:33:26 +00:00
|
|
|
<activity android:name="com.facebook.FacebookActivity"
|
|
|
|
|
android:configChanges=
|
|
|
|
|
"keyboard|keyboardHidden|screenLayout|screenSize|orientation"
|
2015-12-14 19:52:56 +00:00
|
|
|
android:screenOrientation="portrait"
|
2015-11-13 19:33:26 +00:00
|
|
|
android:theme="@android:style/Theme.Translucent.NoTitleBar"
|
|
|
|
|
android:label="@string/app_name" />
|
2016-01-21 13:23:00 +00:00
|
|
|
<receiver android:process=":remote" android:name=".NotificationPublisher" />
|
2016-04-21 12:55:31 +00:00
|
|
|
|
|
|
|
|
<provider
|
|
|
|
|
android:name="android.support.v4.content.FileProvider"
|
|
|
|
|
android:authorities="com.habitrpg.android.habitica.fileprovider"
|
|
|
|
|
android:grantUriPermissions="true"
|
|
|
|
|
android:exported="false">
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
|
|
|
android:resource="@xml/filepaths" />
|
|
|
|
|
</provider>
|
2015-05-27 16:02:13 +00:00
|
|
|
</application>
|
|
|
|
|
|
2015-06-20 18:47:02 +00:00
|
|
|
</manifest>
|