habitica-android/Habitica/AndroidManifest.xml

87 lines
2.9 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.habitrpg.android.habitica"
2015-06-20 18:47:02 +00:00
android:versionCode="1"
android:versionName="0.0.1" >
<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" />
<application
android:allowBackup="true"
2015-06-20 18:47:02 +00:00
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
2015-06-20 18:47:02 +00:00
android:theme="@style/AppTheme"
android:name=".HabiticaApplication">
<activity
2015-06-20 18:47:02 +00:00
android:name=".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>
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>
</activity>
2015-06-20 18:47:02 +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>
<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" />
<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>
</application>
2015-06-20 18:47:02 +00:00
</manifest>