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"
|
2015-05-27 16:48:19 +00:00
|
|
|
package="com.habitrpg.android.habitica"
|
2015-06-20 18:47:02 +00:00
|
|
|
android:versionCode="1"
|
|
|
|
|
android:versionName="0.0.1" >
|
2015-05-27 16:02:13 +00:00
|
|
|
|
|
|
|
|
<uses-sdk
|
2015-06-20 18:47:02 +00:00
|
|
|
android:minSdkVersion="11"
|
|
|
|
|
android:targetSdkVersion="22" />
|
|
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
|
|
|
|
|
|
<uses-permission
|
|
|
|
|
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
|
|
|
|
|
android:maxSdkVersion="18" />
|
|
|
|
|
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
|
|
|
|
|
<uses-permission
|
|
|
|
|
android:name="android.permission.READ_EXTERNAL_STORAGE"
|
|
|
|
|
android:maxSdkVersion="18" />
|
|
|
|
|
|
2015-05-27 16:02:13 +00:00
|
|
|
<application
|
|
|
|
|
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-06-20 18:47:02 +00:00
|
|
|
android:theme="@style/AppTheme"
|
|
|
|
|
android:name=".HabiticaApplication">
|
2015-05-27 16:02:13 +00:00
|
|
|
<activity
|
2015-06-20 18:47:02 +00:00
|
|
|
android:name=".MainActivity"
|
|
|
|
|
android:label="@string/app_name" >
|
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
|
|
|
|
|
android:name=".prefs.PrefsActivity"
|
|
|
|
|
android:label="@string/PS_param_title" >
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".LoginActivity"
|
|
|
|
|
android:label="@string/LoginActivityName"
|
|
|
|
|
android:windowSoftInputMode="adjustResize" >
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
</intent-filter>
|
2015-05-27 16:02:13 +00:00
|
|
|
</activity>
|
2015-06-20 18:47:02 +00:00
|
|
|
|
2015-05-27 16:02:13 +00:00
|
|
|
<receiver
|
2015-06-20 18:47:02 +00:00
|
|
|
android:name=".widget.SimpleWidget"
|
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
|
android:label="HabitRPG Simple Widget" >
|
|
|
|
|
<intent-filter>
|
2015-05-27 16:02:13 +00:00
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="android.appwidget.provider"
|
|
|
|
|
android:resource="@xml/widget_info" />
|
|
|
|
|
</receiver>
|
2015-06-20 18:47:02 +00:00
|
|
|
|
|
|
|
|
<service android:name=".widget.UpdateWidgetService" />
|
2015-05-27 16:02:13 +00:00
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="io.fabric.ApiKey"
|
|
|
|
|
android:value="2eb3b3edb3b0f4722d37d649a5af366656e46ddd" />
|
2015-06-20 18:47:02 +00:00
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".MainActivityNew"
|
|
|
|
|
android:label="@string/app_name"
|
|
|
|
|
|
|
|
|
|
android:theme="@style/CustomTheme">
|
|
|
|
|
<!-- <intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>-->
|
|
|
|
|
</activity>
|
|
|
|
|
|
2015-05-27 16:02:13 +00:00
|
|
|
</application>
|
|
|
|
|
|
2015-06-20 18:47:02 +00:00
|
|
|
</manifest>
|