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-01-21 07:34:04 +00:00
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:installLocation="auto" >
|
2015-05-27 16:02:13 +00:00
|
|
|
|
2015-06-20 18:47:02 +00:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2022-03-01 13:11:19 +00:00
|
|
|
<uses-permission android:name="android.permission.SCHEDULE_EXACT_ALARM" />
|
2015-10-19 18:25:57 +00:00
|
|
|
<uses-permission android:name="com.android.vending.BILLING" />
|
2016-05-29 22:13:58 +00:00
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
|
2015-06-20 18:47:02 +00:00
|
|
|
|
2018-07-24 16:14:55 +00:00
|
|
|
<uses-permission android:name="android.permission.RECORD_AUDIO" tools:node="remove" />
|
2018-12-07 17:54:14 +00:00
|
|
|
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" tools:node="remove" />
|
2020-09-29 10:48:20 +00:00
|
|
|
<uses-permission android:name="android.permission.READ_PHONE_STATE" tools:node="remove" />
|
2018-12-07 17:54:14 +00:00
|
|
|
|
2018-07-24 16:14:55 +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"
|
2017-10-27 10:21:58 +00:00
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
2015-05-27 16:02:13 +00:00
|
|
|
android:label="@string/app_name"
|
2019-08-07 07:14:11 +00:00
|
|
|
android:theme="@style/MainAppTheme"
|
2019-01-07 14:57:24 +00:00
|
|
|
tools:replace="android:name"
|
2019-04-05 07:36:32 +00:00
|
|
|
android:fullBackupContent="@xml/backup_descriptor"
|
2019-04-18 15:01:19 +00:00
|
|
|
android:configChanges="orientation"
|
2019-04-05 07:36:32 +00:00
|
|
|
android:networkSecurityConfig="@xml/network_security_config">
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="firebase_performance_logcat_enabled"
|
|
|
|
|
android:value="true" />
|
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"
|
2019-08-07 07:14:11 +00:00
|
|
|
android:theme="@style/LaunchAppTheme"
|
2020-08-19 09:53:58 +00:00
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize"
|
2021-11-10 14:12:29 +00:00
|
|
|
android:configChanges="orientation|screenSize"
|
|
|
|
|
android:exported="true">
|
2018-12-03 18:26:47 +00:00
|
|
|
<nav-graph android:value="@navigation/navigation" />
|
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>
|
2019-02-28 13:21:14 +00:00
|
|
|
<intent-filter android:label="@string/app_name">
|
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
|
<data android:scheme="https"
|
|
|
|
|
android:host="habitica.com"
|
|
|
|
|
android:pathPattern="/"/>
|
|
|
|
|
</intent-filter>
|
2020-08-19 09:53:58 +00:00
|
|
|
|
2015-05-27 16:02:13 +00:00
|
|
|
</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"
|
2021-11-10 14:12:29 +00:00
|
|
|
tools:ignore="UnusedAttribute"
|
|
|
|
|
android:exported="true">
|
2019-02-28 13:21:14 +00:00
|
|
|
<intent-filter android:label="@string/app_name">
|
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
|
<data android:scheme="https"
|
|
|
|
|
android:host="habitica.com"
|
|
|
|
|
android:pathPattern="/settings/.*"/>
|
|
|
|
|
</intent-filter>
|
2015-06-20 18:47:02 +00:00
|
|
|
</activity>
|
2019-03-08 18:51:20 +00:00
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activities.NotificationsActivity"
|
|
|
|
|
android:parentActivityName=".ui.activities.MainActivity"
|
|
|
|
|
android:label="@string/notifications"
|
2019-10-30 17:37:57 +00:00
|
|
|
android:screenOrientation="unspecified"
|
2019-03-08 18:51:20 +00:00
|
|
|
tools:ignore="UnusedAttribute">
|
|
|
|
|
</activity>
|
2017-10-03 13:19:19 +00:00
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activities.FixCharacterValuesActivity"
|
|
|
|
|
android:parentActivityName=".ui.activities.PrefsActivity"
|
|
|
|
|
android:label="@string/PS_settings_title"
|
|
|
|
|
tools:ignore="UnusedAttribute">
|
|
|
|
|
</activity>
|
2015-06-20 18:47:02 +00:00
|
|
|
<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"
|
2022-01-06 12:20:28 +00:00
|
|
|
android:screenOrientation="unspecified"
|
2019-04-18 15:01:19 +00:00
|
|
|
android:windowSoftInputMode="adjustResize">
|
2015-05-27 16:02:13 +00:00
|
|
|
</activity>
|
2020-06-10 14:33:17 +00:00
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activities.AdventureGuideActivity"
|
2020-06-16 09:46:36 +00:00
|
|
|
android:label=""
|
2022-01-06 12:20:28 +00:00
|
|
|
android:screenOrientation="unspecified"
|
2020-06-10 14:33:17 +00:00
|
|
|
android:windowSoftInputMode="adjustResize">
|
2020-06-15 16:05:32 +00:00
|
|
|
<meta-data
|
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
|
android:value="com.habitrpg.android.habitica.ui.activities.MainActivity" />
|
2020-06-10 14:33:17 +00:00
|
|
|
</activity>
|
2016-01-28 13:09:10 +00:00
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activities.IntroActivity"
|
2019-04-18 15:01:19 +00:00
|
|
|
android:windowSoftInputMode="adjustResize">
|
2016-01-28 13:09:10 +00:00
|
|
|
</activity>
|
2016-02-02 13:59:28 +00:00
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activities.SetupActivity"
|
2019-04-18 15:01:19 +00:00
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize">
|
2016-02-02 13:59:28 +00:00
|
|
|
</activity>
|
2015-11-28 18:30:23 +00:00
|
|
|
<activity
|
2015-12-21 19:19:51 +00:00
|
|
|
android:name=".ui.activities.SkillTasksActivity"
|
2019-04-18 15:01:19 +00:00
|
|
|
android:label="@string/app_name">
|
2015-11-28 18:30:23 +00:00
|
|
|
</activity>
|
2016-10-03 20:47:02 +00:00
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activities.SkillMemberActivity"
|
2019-04-18 15:01:19 +00:00
|
|
|
android:label="@string/app_name">
|
2016-10-03 20:47:02 +00:00
|
|
|
</activity>
|
2018-12-04 13:28:03 +00:00
|
|
|
<activity
|
2019-10-07 16:35:08 +00:00
|
|
|
android:name=".ui.activities.GiftSubscriptionActivity"
|
2019-04-18 15:01:19 +00:00
|
|
|
android:label="@string/gift_subscription">
|
2018-12-04 13:28:03 +00:00
|
|
|
</activity>
|
2019-10-07 16:35:08 +00:00
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activities.GiftGemsActivity"
|
|
|
|
|
android:label="@string/gift_gems">
|
|
|
|
|
</activity>
|
2019-05-31 11:41:05 +00:00
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activities.GuidelinesActivity"
|
|
|
|
|
android:label="@string/community_guidelines">
|
|
|
|
|
</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"/>
|
2017-02-02 13:32:05 +00:00
|
|
|
<meta-data
|
|
|
|
|
android:name="com.facebook.sdk.AutoLogAppEventsEnabled"
|
|
|
|
|
android:value="false"/>
|
2019-03-28 13:45:16 +00:00
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activities.TaskFormActivity"
|
|
|
|
|
android:parentActivityName=".ui.activities.MainActivity"
|
2019-04-26 08:28:13 +00:00
|
|
|
tools:ignore="UnusedAttribute"
|
2020-09-29 10:48:20 +00:00
|
|
|
android:configChanges="orientation|screenSize"
|
2019-04-26 08:28:13 +00:00
|
|
|
android:windowSoftInputMode="stateVisible|adjustResize">
|
2019-03-28 13:45:16 +00:00
|
|
|
<meta-data
|
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
|
android:value=".ui.activities.MainActivity" />
|
|
|
|
|
</activity>
|
2016-03-06 15:49:35 +00:00
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activities.GroupFormActivity"
|
|
|
|
|
android:parentActivityName=".ui.activities.MainActivity"
|
|
|
|
|
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:parentActivityName=".ui.activities.MainActivity"
|
|
|
|
|
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
|
2019-04-29 15:42:29 +00:00
|
|
|
android:name=".ui.activities.GroupInviteActivity"
|
|
|
|
|
tools:ignore="UnusedAttribute">
|
2016-04-19 17:08:37 +00:00
|
|
|
</activity>
|
2016-08-02 22:12:15 +00:00
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activities.FullProfileActivity"
|
|
|
|
|
android:parentActivityName=".ui.activities.MainActivity"
|
2019-10-30 17:37:57 +00:00
|
|
|
android:theme="@style/MainAppTheme"
|
2021-11-10 14:12:29 +00:00
|
|
|
tools:ignore="UnusedAttribute"
|
|
|
|
|
android:exported="true">
|
2016-08-02 22:12:15 +00:00
|
|
|
<meta-data
|
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
|
android:value=".ui.activities.MainActivity" />
|
2019-02-28 13:21:14 +00:00
|
|
|
<intent-filter android:label="@string/app_name">
|
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
|
<data android:scheme="https"
|
|
|
|
|
android:host="habitica.com"
|
|
|
|
|
android:pathPattern="/profile/.*"/>
|
|
|
|
|
</intent-filter>
|
2016-12-23 18:36:44 +00:00
|
|
|
</activity>
|
2017-03-28 20:53:28 +00:00
|
|
|
<activity
|
2018-08-03 08:31:52 +00:00
|
|
|
android:name=".ui.activities.ChallengeFormActivity"
|
2017-04-06 18:58:51 +00:00
|
|
|
android:parentActivityName=".ui.activities.MainActivity"
|
|
|
|
|
tools:ignore="UnusedAttribute">
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
|
android:value=".ui.activities.MainActivity" />
|
|
|
|
|
</activity>
|
2015-11-13 19:33:26 +00:00
|
|
|
<activity android:name="com.facebook.FacebookActivity"
|
2018-03-09 14:26:11 +00:00
|
|
|
android:configChanges="keyboard|keyboardHidden|screenLayout|screenSize|orientation"
|
2015-11-13 19:33:26 +00:00
|
|
|
android:label="@string/app_name" />
|
2016-05-02 11:29:51 +00:00
|
|
|
<activity android:name=".ui.activities.MaintenanceActivity"
|
2019-10-30 17:37:57 +00:00
|
|
|
android:screenOrientation="unspecified"
|
2016-05-02 11:29:51 +00:00
|
|
|
android:theme="@style/Theme.AppCompat.Light.NoActionBar" />
|
2016-10-06 10:29:57 +00:00
|
|
|
<activity android:name=".ui.activities.GemPurchaseActivity"
|
2019-10-30 17:37:57 +00:00
|
|
|
android:screenOrientation="unspecified" />
|
2018-10-12 09:33:58 +00:00
|
|
|
<activity android:name=".ui.activities.VerifyUsernameActivity"
|
2019-10-30 17:37:57 +00:00
|
|
|
android:screenOrientation="unspecified"
|
2018-10-12 09:33:58 +00:00
|
|
|
android:windowSoftInputMode="stateHidden" />
|
2019-03-09 02:40:55 +00:00
|
|
|
<receiver android:name=".receivers.NotificationPublisher" />
|
2016-04-21 12:55:31 +00:00
|
|
|
|
2020-02-13 15:10:20 +00:00
|
|
|
<receiver android:name=".receivers.TaskReceiver" android:enabled="true" android:exported="true">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.NOTIFY" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</receiver>
|
2016-06-30 22:02:26 +00:00
|
|
|
|
2017-09-05 14:47:13 +00:00
|
|
|
<receiver android:name=".receivers.LocalNotificationActionReceiver"
|
|
|
|
|
android:exported="false">
|
2016-06-30 22:02:26 +00:00
|
|
|
<intent-filter>
|
2016-08-04 18:11:46 +00:00
|
|
|
<action android:name="ACCEPT_PARTY_INVITE"/>
|
|
|
|
|
<action android:name="REJECT_PARTY_INVITE"/>
|
|
|
|
|
<action android:name="ACCEPT_QUEST_INVITE"/>
|
|
|
|
|
<action android:name="REJECT_QUEST_INVITE"/>
|
2016-06-30 22:02:26 +00:00
|
|
|
</intent-filter>
|
|
|
|
|
</receiver>
|
2021-11-10 14:12:29 +00:00
|
|
|
<receiver android:name=".receivers.TaskAlarmBootReceiver" android:permission="android.permission.RECEIVE_BOOT_COMPLETED"
|
|
|
|
|
android:exported="false">
|
2016-05-29 22:13:58 +00:00
|
|
|
<intent-filter>
|
2016-10-20 17:39:14 +00:00
|
|
|
<action android:name="android.intent.action.BOOT_COMPLETED"/>
|
2016-05-29 22:13:58 +00:00
|
|
|
</intent-filter>
|
|
|
|
|
</receiver>
|
|
|
|
|
|
2021-11-10 14:12:29 +00:00
|
|
|
<activity android:name=".ui.activities.AddTaskWidgetActivity"
|
|
|
|
|
android:exported="false">
|
2016-09-12 19:11:35 +00:00
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE"/>
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
2021-11-10 14:12:29 +00:00
|
|
|
<activity android:name=".ui.activities.HabitButtonWidgetActivity"
|
|
|
|
|
android:exported="false">
|
2016-09-22 14:02:01 +00:00
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE"/>
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
2019-04-18 09:54:32 +00:00
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activities.ReportMessageActivity"
|
|
|
|
|
android:theme="@style/BottomSheetTheme"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize">
|
|
|
|
|
</activity>
|
2016-06-27 18:28:00 +00:00
|
|
|
<service
|
2017-09-05 14:47:13 +00:00
|
|
|
android:name=".helpers.notifications.HabiticaFirebaseMessagingService"
|
|
|
|
|
android:exported="false">
|
2016-06-27 18:28:00 +00:00
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="com.google.firebase.MESSAGING_EVENT"/>
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</service>
|
2016-04-21 12:55:31 +00:00
|
|
|
<provider
|
2018-11-06 15:11:02 +00:00
|
|
|
android:name="androidx.core.content.FileProvider"
|
2016-08-21 14:19:20 +00:00
|
|
|
android:authorities="@string/content_provider"
|
2016-04-21 12:55:31 +00:00
|
|
|
android:grantUriPermissions="true"
|
|
|
|
|
android:exported="false">
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
|
|
|
android:resource="@xml/filepaths" />
|
|
|
|
|
</provider>
|
2016-09-09 19:19:51 +00:00
|
|
|
|
2016-09-12 19:11:35 +00:00
|
|
|
<receiver android:name=".widget.AvatarStatsWidgetProvider"
|
2021-11-10 14:12:29 +00:00
|
|
|
android:label="@string/stats_widget_label"
|
|
|
|
|
android:exported="false">
|
2016-09-09 19:19:51 +00:00
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
<meta-data android:name="android.appwidget.provider"
|
|
|
|
|
android:resource="@xml/avatar_widget_info" />
|
|
|
|
|
</receiver>
|
2016-09-13 19:03:12 +00:00
|
|
|
<receiver android:name=".widget.DailiesWidgetProvider"
|
2021-11-10 14:12:29 +00:00
|
|
|
android:label="@string/widget_dailies"
|
|
|
|
|
android:exported="false">
|
2016-09-13 19:03:12 +00:00
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
<meta-data android:name="android.appwidget.provider"
|
2018-08-22 17:25:11 +00:00
|
|
|
android:resource="@xml/daily_list_widget_info" />
|
2016-11-18 21:16:45 +00:00
|
|
|
</receiver>
|
|
|
|
|
<receiver android:name=".widget.TodoListWidgetProvider"
|
2021-11-10 14:12:29 +00:00
|
|
|
android:label="@string/widget_todo_list"
|
|
|
|
|
android:exported="false">
|
2016-09-13 19:03:12 +00:00
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
<meta-data android:name="android.appwidget.provider"
|
2018-08-22 17:25:11 +00:00
|
|
|
android:resource="@xml/todo_list_widget_info" />
|
2016-09-13 19:03:12 +00:00
|
|
|
</receiver>
|
2016-09-22 14:02:01 +00:00
|
|
|
<receiver android:name=".widget.HabitButtonWidgetProvider"
|
2021-11-10 14:12:29 +00:00
|
|
|
android:label="@string/widget_habit_button"
|
|
|
|
|
android:exported="false">
|
2016-09-22 14:02:01 +00:00
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
<meta-data android:name="android.appwidget.provider"
|
|
|
|
|
android:resource="@xml/habit_button_widget_info" />
|
|
|
|
|
</receiver>
|
2016-09-30 15:31:05 +00:00
|
|
|
|
2016-09-13 19:03:12 +00:00
|
|
|
<service
|
|
|
|
|
android:name=".widget.DailiesWidgetService"
|
|
|
|
|
android:permission="android.permission.BIND_REMOTEVIEWS" />
|
2016-11-18 21:16:45 +00:00
|
|
|
<service
|
|
|
|
|
android:name=".widget.TodosWidgetService"
|
|
|
|
|
android:permission="android.permission.BIND_REMOTEVIEWS" />
|
2016-09-22 14:02:01 +00:00
|
|
|
<service android:name=".widget.HabitButtonWidgetService"/>
|
2015-05-27 16:02:13 +00:00
|
|
|
|
2022-01-10 12:02:15 +00:00
|
|
|
</application>
|
|
|
|
|
<queries>
|
|
|
|
|
<intent>
|
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
|
<data android:scheme="https" />
|
|
|
|
|
</intent>
|
|
|
|
|
<intent>
|
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
|
<data android:scheme="http" />
|
|
|
|
|
</intent>
|
|
|
|
|
</queries>
|
2015-06-20 18:47:02 +00:00
|
|
|
</manifest>
|