2015-04-12 11:54:29 +00:00
|
|
|
<?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"/>
|
|
|
|
|
|
2015-05-16 12:30:21 +00:00
|
|
|
<meta-data
|
|
|
|
|
android:name="io.fabric.ApiKey"
|
|
|
|
|
android:value="2eb3b3edb3b0f4722d37d649a5af366656e46ddd" />
|
2015-04-12 11:54:29 +00:00
|
|
|
</application>
|
|
|
|
|
|
|
|
|
|
</manifest>
|