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

196 lines
7.2 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"
2016-05-18 05:11:24 -04:00
xmlns:tools="http://schemas.android.com/tools"
2023-09-15 04:08:16 -04:00
android:installLocation="auto">
2016-02-14 16:34:48 -05:00
<uses-permission android:name="android.permission.VIBRATE" />
2016-01-04 06:39:25 -05:00
<!-- for onscreen -->
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
<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/cpp_app_name"
2016-03-23 16:32:51 -04:00
android:theme="@style/Cpp.Theme.Material"
2016-05-18 05:11:24 -04:00
tools:ignore="GoogleAppIndexingWarning,UnusedAttribute">
2016-01-04 06:39:25 -05:00
<activity
2023-09-15 04:08:16 -04:00
android:exported="true"
2016-01-04 06:39:25 -05:00
android:name=".CalculatorActivity"
android:clearTaskOnLaunch="true"
android:label="@string/cpp_app_name"
2016-01-04 06:39:25 -05:00
android:launchMode="singleTop"
2016-03-19 13:33:20 -04:00
android:windowSoftInputMode="stateHidden|adjustPan"
android:theme="@style/Cpp.Theme.Material.Calculator">
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>
<receiver
2016-02-14 16:34:48 -05:00
android:name=".WidgetReceiver"
2016-01-04 06:39:25 -05:00
android:exported="false">
<intent-filter>
<action android:name="org.solovyev.android.calculator.BUTTON_PRESSED" />
</intent-filter>
</receiver>
<activity
2023-09-15 04:08:16 -04:00
android:exported="false"
2016-01-04 06:39:25 -05:00
android:name=".preferences.PreferencesActivity"
2016-04-28 06:18:35 -04:00
android:label="@string/cpp_settings">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
</intent-filter>
</activity>
2016-01-04 06:39:25 -05:00
2016-02-22 09:12:48 -05:00
<activity
android:name=".preferences.PreferencesActivity$Dialog"
2016-02-26 18:10:34 -05:00
android:label="@string/cpp_settings"
2016-02-22 09:12:48 -05:00
android:theme="@style/Cpp.Theme.Dialog" />
2016-01-04 06:39:25 -05:00
<activity
2016-02-04 11:05:25 -05:00
android:name=".history.HistoryActivity"
2016-01-04 06:39:25 -05:00
android:label="@string/c_history" />
2016-02-22 09:12:48 -05:00
<activity
android:name=".history.HistoryActivity$Dialog"
android:label="@string/c_history"
android:theme="@style/Cpp.Theme.Dialog" />
2016-01-04 06:39:25 -05:00
<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
2016-02-04 11:05:25 -05:00
android:name=".about.AboutActivity"
2016-02-26 18:10:34 -05:00
android:label="@string/cpp_about" />
2016-01-04 06:39:25 -05:00
2016-02-22 09:12:48 -05:00
<activity
android:name=".about.AboutActivity$Dialog"
2016-02-26 18:10:34 -05:00
android:label="@string/cpp_about"
2016-02-22 09:12:48 -05:00
android:theme="@style/Cpp.Theme.Dialog" />
2016-01-04 06:39:25 -05:00
<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" />
2016-02-22 09:12:48 -05:00
<activity
android:name=".functions.FunctionsActivity$Dialog"
android:label="@string/c_functions"
android:theme="@style/Cpp.Theme.Dialog" />
2016-01-04 06:39:25 -05:00
<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" />
2016-02-22 09:12:48 -05:00
<activity
android:name=".operators.OperatorsActivity$Dialog"
android:label="@string/c_operators"
android:theme="@style/Cpp.Theme.Dialog" />
2016-01-04 06:39:25 -05:00
<activity
2016-01-29 15:26:48 -05:00
android:name=".variables.VariablesActivity"
2016-05-16 06:29:42 -04:00
android:label="@string/cpp_vars_and_constants" />
2016-02-22 09:12:48 -05:00
<activity
android:name=".variables.VariablesActivity$Dialog"
2016-05-16 06:29:42 -04:00
android:label="@string/cpp_vars_and_constants"
2016-02-22 09:12:48 -05:00
android:theme="@style/Cpp.Theme.Dialog" />
2016-02-24 09:29:42 -05:00
<activity
2023-09-15 04:08:16 -04:00
android:exported="false"
2016-02-24 09:29:42 -05:00
android:name=".plot.PlotActivity"
android:label="@string/cpp_plotter">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
</intent-filter>
</activity>
2016-02-24 09:29:42 -05:00
2016-01-04 06:39:25 -05:00
<activity
2023-09-15 04:08:16 -04:00
android:exported="false"
2016-01-04 06:39:25 -05:00
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-02-20 06:51:52 -05:00
android:theme="@style/Cpp.Theme.Translucent" />
2016-01-04 06:39:25 -05:00
<!-- ONSCREEN CONFIG -->
<activity
2023-09-15 04:08:16 -04:00
android:exported="true"
2016-02-17 04:17:29 -05:00
android:name=".floating.FloatingCalculatorActivity"
2016-01-04 06:39:25 -05:00
android:icon="@drawable/ic_launcher_window"
2016-05-16 06:29:42 -04:00
android:label="@string/cpp_app_name_on_screen"
2016-01-04 06:39:25 -05:00
android:launchMode="singleInstance"
2016-02-17 07:49:39 -05:00
android:theme="@style/Cpp.Theme.Translucent">
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
2016-02-17 04:17:29 -05:00
android:name=".floating.FloatingCalculatorService"
2016-01-04 06:39:25 -05:00
android:exported="false">
<intent-filter>
2016-03-23 16:39:05 -04:00
<action android:name="org.solovyev.android.calculator.floating.SHOW_WINDOW" />
<action android:name="org.solovyev.android.calculator.floating.SHOW_NOTIFICATION" />
2016-01-04 06:39:25 -05:00
</intent-filter>
</service>
2016-03-23 16:39:05 -04:00
<receiver android:name=".floating.FloatingCalculatorBroadcastReceiver" android:exported="false">
2016-01-04 06:39:25 -05:00
<intent-filter>
2016-03-23 16:39:05 -04:00
<action android:name="org.solovyev.android.calculator.floating.SHOW_WINDOW" />
<action android:name="org.solovyev.android.calculator.floating.SHOW_NOTIFICATION" />
2016-01-04 06:39:25 -05:00
</intent-filter>
</receiver>
<!-- WIDGET CONFIG -->
<receiver
2023-09-15 04:08:16 -04:00
android:exported="true"
2016-01-04 06:39:25 -05:00
android:name=".widget.CalculatorWidget"
android:icon="@drawable/ic_launcher"
android:label="@string/cpp_app_name">
2016-01-04 06:39:25 -05:00
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
2016-03-20 08:05:09 -04:00
<action android:name="android.appwidget.action.APPWIDGET_UPDATE_OPTIONS" />
2016-01-04 06:39:25 -05:00
<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.THEME_CHANGED" />
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/calculator_widget" />
</receiver>
</application>
2023-09-15 04:08:16 -04:00
</manifest>