android-calculatorpp/app/src/main/AndroidManifest.xml

202 lines
7.7 KiB
XML
Raw Normal View History

2012-10-20 08:22:25 -04:00
<?xml version="1.0" encoding="utf-8"?>
2016-01-04 06:39:25 -05:00
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.solovyev.android.calculator"
android:installLocation="auto">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="com.android.vending.BILLING" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<!--TODO: REMOVE IN PRODUCTION-->
<!--<uses-permission android:name="android.permission.DISABLE_KEYGUARD"/>-->
<!-- for onscreen -->
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<supports-screens android:smallScreens="true" />
<supports-screens android:normalScreens="true" />
<supports-screens android:largeScreens="true" />
<supports-screens android:xlargeScreens="true" />
<supports-screens android:anyDensity="true" />
<application
android:name=".CalculatorApplication"
android:allowBackup="true"
android:hardwareAccelerated="true"
android:icon="@drawable/ic_launcher"
android:label="@string/c_app_name"
android:theme="@style/Cpp.Theme.Material">
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<activity
android:name=".CalculatorActivity"
android:clearTaskOnLaunch="true"
android:label="@string/c_app_name"
android:launchMode="singleTop"
android:windowSoftInputMode="adjustPan">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver
android:name=".CalculatorReceiver"
android:exported="false">
<intent-filter>
<action android:name="org.solovyev.android.calculator.BUTTON_PRESSED" />
</intent-filter>
</receiver>
<activity
android:name=".CalculatorActivityMobile"
android:clearTaskOnLaunch="true"
android:label="@string/c_app_name"
android:launchMode="singleTop"
android:windowSoftInputMode="adjustPan" />
<activity
android:name=".preferences.PreferencesActivity"
android:label="@string/c_app_settings" />
<activity
android:name=".history.CalculatorHistoryActivity"
android:label="@string/c_history" />
<activity
2016-01-31 14:46:47 -05:00
android:name=".errors.FixableErrorsActivity"
2016-01-04 06:39:25 -05:00
android:excludeFromRecents="true"
android:finishOnTaskLaunch="true"
android:launchMode="singleTask"
2016-01-31 14:46:47 -05:00
android:theme="@style/Cpp.Theme.Translucent" />
2016-01-04 06:39:25 -05:00
<activity
android:name=".about.CalculatorAboutActivity"
android:label="@string/c_about" />
<activity
2016-01-29 15:23:18 -05:00
android:name=".functions.FunctionsActivity"
2016-01-04 06:39:25 -05:00
android:label="@string/c_functions" />
<activity
2016-01-31 03:54:14 -05:00
android:name=".operators.OperatorsActivity"
2016-01-04 06:39:25 -05:00
android:label="@string/c_operators" />
<activity
2016-01-29 15:26:48 -05:00
android:name=".variables.VariablesActivity"
2016-01-04 06:39:25 -05:00
android:label="@string/c_vars_and_constants" />
<activity
android:name=".wizard.WizardActivity"
android:launchMode="singleTop"
android:theme="@style/Cpp.Theme.Wizard">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
<activity
android:name=".preferences.PurchaseDialogActivity"
android:label="@string/cpp_purchase_title"
2016-01-14 11:34:19 -05:00
android:theme="@style/Cpp.Theme.Material.Dialog" />
2016-01-04 06:39:25 -05:00
<!-- todo serso: strings-->
<activity
android:name=".matrix.CalculatorMatrixActivity"
android:label="@string/c_plot_graph">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
<!-- ONSCREEN CONFIG -->
<activity
android:name=".onscreen.CalculatorOnscreenStartActivity"
android:icon="@drawable/ic_launcher_window"
android:label="@string/c_app_name_on_screen"
android:launchMode="singleInstance"
2016-01-14 11:34:19 -05:00
android:theme="@style/Cpp.Theme.Material.Dialog">
2016-01-04 06:39:25 -05:00
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service
android:name=".onscreen.CalculatorOnscreenService"
android:exported="false">
<intent-filter>
<action android:name="org.solovyev.android.calculator.onscreen.SHOW_WINDOW" />
<action android:name="org.solovyev.android.calculator.onscreen.SHOW_NOTIFICATION" />
</intent-filter>
</service>
<receiver android:name=".onscreen.CalculatorOnscreenBroadcastReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<action android:name="org.solovyev.android.calculator.onscreen.SHOW_WINDOW" />
<action android:name="org.solovyev.android.calculator.onscreen.SHOW_NOTIFICATION" />
</intent-filter>
</receiver>
<!-- WIDGET CONFIG -->
<receiver
android:name=".widget.CalculatorWidget"
android:icon="@drawable/ic_launcher"
android:label="@string/c_app_name">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
<action android:name="org.solovyev.android.calculator.INIT" />
<action android:name="org.solovyev.android.calculator.EDITOR_STATE_CHANGED" />
<action android:name="org.solovyev.android.calculator.DISPLAY_STATE_CHANGED" />
<action android:name="org.solovyev.android.calculator.BUTTON_PRESSED" />
<action android:name="org.solovyev.android.calculator.THEME_CHANGED" />
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/calculator_widget" />
</receiver>
<!-- ADMOB -->
<activity
android:name="com.google.android.gms.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
android:theme="@android:style/Theme.Translucent" />
<!-- ACRA CONFIG -->
<activity
android:name="org.acra.CrashReportDialog"
android:excludeFromRecents="true"
android:finishOnTaskLaunch="true"
android:launchMode="singleInstance"
android:theme="@android:style/Theme.Dialog" />
<!-- Google Analytics -->
<receiver
android:name="com.google.android.gms.analytics.AnalyticsReceiver"
android:enabled="true">
<intent-filter>
<action android:name="com.google.android.gms.analytics.ANALYTICS_DISPATCH" />
</intent-filter>
</receiver>
<service
android:name="com.google.android.gms.analytics.AnalyticsService"
android:enabled="true"
android:exported="false" />
</application>
2012-03-04 13:29:40 -05:00
</manifest>