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-03-23 16:32:51 -04:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2016-01-04 06:39:25 -05:00
|
|
|
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" />
|
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/c_app_name"
|
2016-03-23 16:32:51 -04:00
|
|
|
android:theme="@style/Cpp.Theme.Material"
|
|
|
|
tools:ignore="UnusedAttribute">
|
2016-01-04 06:39:25 -05:00
|
|
|
|
|
|
|
<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"
|
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
|
|
|
|
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-01-04 06:39:25 -05:00
|
|
|
android:label="@string/c_vars_and_constants" />
|
2016-02-22 09:12:48 -05:00
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".variables.VariablesActivity$Dialog"
|
|
|
|
android:label="@string/c_vars_and_constants"
|
|
|
|
android:theme="@style/Cpp.Theme.Dialog" />
|
|
|
|
|
2016-02-24 09:29:42 -05:00
|
|
|
<activity
|
|
|
|
android:name=".plot.PlotActivity"
|
2016-02-26 08:35:25 -05:00
|
|
|
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
|
|
|
|
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
|
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"
|
|
|
|
android:label="@string/c_app_name_on_screen"
|
|
|
|
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
|
|
|
|
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" />
|
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>
|
|
|
|
|
|
|
|
<!-- 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 -->
|
2016-04-02 09:01:36 -04:00
|
|
|
<receiver
|
|
|
|
android:name="com.google.android.gms.analytics.CampaignTrackingReceiver"
|
|
|
|
android:enabled="true">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="com.android.vending.INSTALL_REFERRER" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
<service android:name="com.google.android.gms.analytics.CampaignTrackingService" />
|
2016-01-04 06:39:25 -05:00
|
|
|
<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>
|