i remove the field mFormater, interface Formatter, formatNumber() as they are not needed by exalted dice. i removed getCurrent(), setCurrent() also because they were not used by exalted dice. i modified onClick() and onLongClick() to use switch blocks rather than nested if else blocks i incremented the version / build from b12 to b13
25 lines
990 B
XML
Executable File
25 lines
990 B
XML
Executable File
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.TwentyCode.android.ExaltedDice"
|
|
android:versionName="1.0.1" android:versionCode="13">
|
|
<application android:icon="@drawable/icon" android:label="@string/app_name">
|
|
<activity android:name=".ExaltedDice"
|
|
|
|
android:label="@string/app_name">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<meta-data android:value="a14bad63772f7d3" android:name="ADMOB_PUBLISHER_ID" />
|
|
|
|
</application>
|
|
<uses-sdk android:minSdkVersion="3" />
|
|
|
|
<uses-permission android:name="android.permission.VIBRATE" />
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
</manifest>
|
|
|
|
<!-- android:screenOrientation="portrait" --> |