2011-06-23 17:09:13 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
2011-10-16 14:22:39 -04:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2011-10-09 12:22:44 -04:00
|
|
|
package="org.solovyev.android.calculator"
|
2011-10-16 14:22:39 -04:00
|
|
|
android:versionCode="1"
|
|
|
|
android:versionName="1.0.1">
|
2011-06-23 17:09:13 -04:00
|
|
|
|
2011-10-16 14:22:39 -04:00
|
|
|
<uses-sdk android:minSdkVersion="8"/>
|
2011-06-23 17:09:13 -04:00
|
|
|
|
2011-10-16 14:22:39 -04:00
|
|
|
<application android:icon="@drawable/icon"
|
|
|
|
android:label="@string/c_app_icon_name">
|
2011-07-16 15:25:12 -04:00
|
|
|
|
2011-10-16 14:22:39 -04:00
|
|
|
<activity android:name=".CalculatorActivity"
|
|
|
|
android:label="@string/c_app_name">
|
2011-10-10 16:09:32 -04:00
|
|
|
|
2011-10-09 12:22:44 -04:00
|
|
|
<intent-filter>
|
2011-10-16 14:22:39 -04:00
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
2011-10-09 12:22:44 -04:00
|
|
|
</intent-filter>
|
2011-10-10 16:09:32 -04:00
|
|
|
|
2011-10-09 12:22:44 -04:00
|
|
|
</activity>
|
2011-07-16 15:25:12 -04:00
|
|
|
|
2011-10-16 14:22:39 -04:00
|
|
|
<activity android:name=".CalculatorPreferencesActivity"
|
|
|
|
android:label="@string/c_app_settings"
|
|
|
|
android:configChanges="orientation|keyboardHidden"/>
|
2011-07-16 15:25:12 -04:00
|
|
|
|
2011-10-16 14:22:39 -04:00
|
|
|
<activity android:name=".CalculatorHistoryActivity"
|
|
|
|
android:label="@string/c_app_history"
|
|
|
|
android:configChanges="orientation|keyboardHidden">
|
2011-10-16 07:11:33 -04:00
|
|
|
</activity>
|
2011-10-15 06:52:05 -04:00
|
|
|
|
2011-10-16 14:22:39 -04:00
|
|
|
<activity android:name=".AboutActivity"
|
|
|
|
android:label="@string/c_about"
|
|
|
|
android:configChanges="orientation|keyboardHidden"/>
|
2011-10-09 12:22:44 -04:00
|
|
|
|
2011-10-16 14:22:39 -04:00
|
|
|
<activity android:name=".CalculatorVarsActivity"
|
|
|
|
android:label="@string/c_vars_and_constants"
|
|
|
|
android:configChanges="orientation|keyboardHidden">
|
2011-10-16 07:11:33 -04:00
|
|
|
</activity>
|
2011-10-09 12:22:44 -04:00
|
|
|
|
|
|
|
</application>
|
2011-06-23 17:09:13 -04:00
|
|
|
</manifest>
|