mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-04-14 11:46:32 +00:00
60 lines
No EOL
2.2 KiB
XML
60 lines
No EOL
2.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.magicmicky.habitrpgmobileapp"
|
|
android:versionCode="49"
|
|
android:versionName="2.4.5" >
|
|
|
|
<uses-sdk
|
|
android:minSdkVersion="8"
|
|
android:targetSdkVersion="19" />
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
<uses-permission android:name="com.android.vending.BILLING" />
|
|
<application
|
|
android:allowBackup="true"
|
|
android:icon="@drawable/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:theme="@style/AppTheme">
|
|
<activity
|
|
android:name="com.magicmicky.habitrpgmobileapp.MainActivity"
|
|
android:label="@string/app_name">
|
|
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity
|
|
android:name="com.magicmicky.habitrpgmobileapp.prefs.PrefsActivity"
|
|
android:label="@string/PS_param_title">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity
|
|
android:name="com.magicmicky.habitrpgmobileapp.LoginActivity"
|
|
android:label="@string/LoginActivityName"
|
|
android:windowSoftInputMode="adjustResize">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
</intent-filter>
|
|
</activity>
|
|
<receiver
|
|
android:icon="@drawable/ic_launcher"
|
|
android:label="HabitRPG Simple Widget"
|
|
android:name=".widget.SimpleWidget" >
|
|
<intent-filter >
|
|
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
|
|
</intent-filter>
|
|
|
|
<meta-data
|
|
android:name="android.appwidget.provider"
|
|
android:resource="@xml/widget_info" />
|
|
</receiver>
|
|
<service android:name="com.magicmicky.habitrpgmobileapp.widget.UpdateWidgetService"/>
|
|
|
|
</application>
|
|
|
|
</manifest> |