Files
exalted_dice/ExaltedDice/AndroidManifest.xml
Ricky Barrette 3ee566c488 Updated Manifest
Updated the version to 2.0

removed read logs permission, as its no longer needed

Change-Id: Ifbe8ce39346a42914b318148a5683107076813e8
Signed-off-by: Ricky Barrette <rickbarrette@gmail.com>
2012-02-10 19:06:14 -05:00

46 lines
1.5 KiB
XML
Executable File

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
android:installLocation="auto"
package="com.TwentyCode.android.ExaltedDice"
android:versionCode="15"
android:versionName="2.0" >
<uses-sdk android:minSdkVersion="4" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.INTERNET" />
<application
android:icon="@drawable/icon"
android:label="@string/app_name" >
<activity
android:name="GameListActivity"
android:label="@string/app_name"
android:theme="@style/MyTheme" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<meta-data
android:name="ADMOB_PUBLISHER_ID"
android:value="a14bad63772f7d3" />
<activity
android:name="com.TwentyCodes.android.exception.ExceptionReportActivity"
android:theme="@style/MyTheme" >
</activity>
<activity
android:name="ExaltedDice"
android:theme="@style/MyTheme" >
</activity>
<activity
android:name="Settings"
android:theme="@style/MyTheme" >
</activity>
</application>
</manifest> <!-- android:screenOrientation="portrait" -->