237 lines
11 KiB
XML
237 lines
11 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
/**
|
|
* Copyright 2016, The CyanogenMod Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
-->
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:androidprv="http://schemas.android.com/apk/prv/res/android"
|
|
package="org.cyanogenmod.cmparts"
|
|
android:versionCode="1"
|
|
android:versionName="1.0"
|
|
android:sharedUserId="android.uid.system">
|
|
|
|
<uses-sdk android:minSdkVersion="24" android:targetSdkVersion="24" />
|
|
|
|
<uses-permission android:name="android.permission.WRITE_MEDIA_STORAGE" />
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
<uses-permission android:name="android.permission.WRITE_SETTINGS" />
|
|
<uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" />
|
|
<uses-permission android:name="android.permission.DEVICE_POWER" />
|
|
<uses-permission android:name="android.permission.CHANGE_CONFIGURATION" />
|
|
<uses-permission android:name="android.permission.BIND_DEVICE_ADMIN" />
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
|
<uses-permission android:name="android.permission.READ_SEARCH_INDEXABLES" />
|
|
|
|
<uses-permission android:name="cyanogenmod.permission.MANAGE_REMOTE_PREFERENCES" />
|
|
|
|
<protected-broadcast android:name="android.intent.action.UPDATE_POWER_MENU" />
|
|
<protected-broadcast android:name="cyanogenmod.platform.app.profiles.PROFILES_STATE_CHANGED" />
|
|
<protected-broadcast android:name="org.cyanogenmod.cmparts.PART_CHANGED" />
|
|
<protected-broadcast android:name="org.cyanogenmod.cmparts.REFRESH_PART" />
|
|
<protected-broadcast android:name="org.cyanogenmod.cmparts.gestures.UPDATE_SETTINGS" />
|
|
|
|
<application android:label="@string/cmparts_title"
|
|
android:theme="@style/Theme.Settings"
|
|
android:hardwareAccelerated="true"
|
|
android:supportsRtl="true"
|
|
android:defaultToDeviceProtectedStorage="true"
|
|
android:directBootAware="true">
|
|
|
|
<activity android:name=".PartsActivity"
|
|
android:configChanges="orientation|keyboardHidden|screenSize">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
<meta-data
|
|
android:name="org.cyanogenmod.settings.summary.receiver"
|
|
android:value="org.cyanogenmod.cmparts.PartsUpdater" />
|
|
</activity>
|
|
|
|
<receiver android:name=".BootReceiver" android:enabled="true">
|
|
<intent-filter android:priority="2147483647">
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
</intent-filter>
|
|
</receiver>
|
|
|
|
<receiver android:name=".PartsUpdater" android:enabled="true">
|
|
<intent-filter>
|
|
<action android:name="cyanogenmod.intent.action.UPDATE_PREFERENCE" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</receiver>
|
|
|
|
<provider android:name=".search.CMPartsSearchIndexablesProvider"
|
|
android:authorities="org.cyanogenmod.cmparts"
|
|
android:multiprocess="false"
|
|
android:grantUriPermissions="true"
|
|
android:permission="android.permission.READ_SEARCH_INDEXABLES"
|
|
android:exported="true">
|
|
<intent-filter>
|
|
<action android:name="android.content.action.SEARCH_INDEXABLES_PROVIDER" />
|
|
</intent-filter>
|
|
</provider>
|
|
|
|
<!-- Privacy settings (dashboard) -->
|
|
<activity-alias
|
|
android:name=".PrivacySettings"
|
|
android:label="@string/privacy_settings_title"
|
|
android:targetActivity="PartsActivity">
|
|
<intent-filter android:priority="3">
|
|
<action android:name="com.android.settings.action.EXTRA_SETTINGS" />
|
|
<action android:name="org.cyanogenmod.cmparts.PRIVACY_SETTINGS" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
<meta-data
|
|
android:name="com.android.settings.category"
|
|
android:value="com.android.settings.category.personal" />
|
|
<meta-data
|
|
android:name="com.android.settings.icon"
|
|
android:resource="@drawable/ic_settings_privacy" />
|
|
<meta-data
|
|
android:name="org.cyanogenmod.settings.summary.receiver"
|
|
android:value="org.cyanogenmod.cmparts.PartsUpdater" />
|
|
<meta-data
|
|
android:name="org.cyanogenmod.settings.summary.key"
|
|
android:value="privacy_settings" />
|
|
</activity-alias>
|
|
|
|
<!-- Button settings (dashboard) -->
|
|
<activity-alias
|
|
android:name=".input.ButtonSettings"
|
|
android:label="@string/button_pref_title"
|
|
android:targetActivity="PartsActivity">
|
|
<intent-filter android:priority="1">
|
|
<action android:name="com.android.settings.action.EXTRA_SETTINGS" />
|
|
<action android:name="org.cyanogenmod.cmparts.BUTTON_SETTINGS" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
<meta-data
|
|
android:name="com.android.settings.category"
|
|
android:value="com.android.settings.category.device" />
|
|
<meta-data
|
|
android:name="com.android.settings.icon"
|
|
android:resource="@drawable/ic_settings_buttons" />
|
|
<meta-data
|
|
android:name="org.cyanogenmod.settings.summary.receiver"
|
|
android:value="org.cyanogenmod.cmparts.PartsUpdater" />
|
|
<meta-data
|
|
android:name="org.cyanogenmod.settings.summary.key"
|
|
android:value="button_settings" />
|
|
</activity-alias>
|
|
|
|
<activity android:name=".gestures.KeyHandler" />
|
|
|
|
<!-- Profiles settings (dashboard) -->
|
|
<activity-alias
|
|
android:name=".profiles.ProfilesSettings"
|
|
android:label="@string/profiles_settings_title"
|
|
android:targetActivity="PartsActivity">
|
|
<intent-filter android:priority="1">
|
|
<action android:name="com.android.settings.action.EXTRA_SETTINGS" />
|
|
<action android:name="org.cyanogenmod.cmparts.PROFILES_SETTINGS" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
<meta-data
|
|
android:name="com.android.settings.category"
|
|
android:value="com.android.settings.category.personal" />
|
|
<meta-data
|
|
android:name="com.android.settings.icon"
|
|
android:resource="@drawable/ic_settings_profiles" />
|
|
<meta-data
|
|
android:name="org.cyanogenmod.settings.summary.receiver"
|
|
android:value="org.cyanogenmod.cmparts.PartsUpdater" />
|
|
<meta-data
|
|
android:name="org.cyanogenmod.settings.summary.key"
|
|
android:value="profiles_settings" />
|
|
</activity-alias>
|
|
|
|
<!-- Status bar settings (dashboard) -->
|
|
<activity-alias
|
|
android:name=".statusbar.StatusBarSettings"
|
|
android:label="@string/status_bar_title"
|
|
android:targetActivity="PartsActivity">
|
|
<intent-filter android:priority="2">
|
|
<action android:name="com.android.settings.action.EXTRA_SETTINGS" />
|
|
<action android:name="org.cyanogenmod.cmparts.STATUS_BAR_SETTINGS" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
<meta-data
|
|
android:name="com.android.settings.category"
|
|
android:value="com.android.settings.category.personal" />
|
|
<meta-data
|
|
android:name="com.android.settings.icon"
|
|
android:resource="@drawable/ic_settings_statusbar" />
|
|
<meta-data
|
|
android:name="org.cyanogenmod.settings.summary.receiver"
|
|
android:value="org.cyanogenmod.cmparts.PartsUpdater" />
|
|
<meta-data
|
|
android:name="org.cyanogenmod.settings.summary.key"
|
|
android:value="status_bar_settings" />
|
|
</activity-alias>
|
|
|
|
<!-- Anonymous Statistics -->
|
|
<receiver android:name=".cmstats.ReportingServiceManager"
|
|
android:enabled="true"
|
|
android:exported="false"
|
|
android:label="ReportingServiceManager">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
<action android:name="org.cyanogenmod.cmparts.action.TRIGGER_REPORT_METRICS" />
|
|
</intent-filter>
|
|
</receiver>
|
|
|
|
<service android:label="ReportingService"
|
|
android:enabled="true"
|
|
android:exported="false"
|
|
android:name=".cmstats.ReportingService">
|
|
</service>
|
|
|
|
<service android:name=".cmstats.StatsUploadJobService"
|
|
android:permission="android.permission.BIND_JOB_SERVICE" />
|
|
|
|
<service android:name=".cmstats.ReportingService"
|
|
android:label="ReportingService"
|
|
android:enabled="true"
|
|
android:exported="false" />
|
|
|
|
<!-- Weather settings -->
|
|
<activity-alias
|
|
android:name=".weather.WeatherServiceSettings"
|
|
android:label="@string/weather_settings_title"
|
|
android:targetActivity="PartsActivity">
|
|
<intent-filter android:priority="1">
|
|
<action android:name="cyanogenmod.intent.action.MANAGE_WEATHER_PROVIDER_SERVICES" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</activity-alias>
|
|
|
|
<activity android:name=".profiles.NFCProfile">
|
|
<intent-filter>
|
|
<action android:name="android.nfc.action.NDEF_DISCOVERED"/>
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
<data android:mimeType="cm/profile" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity
|
|
android:name=".profiles.NFCProfileSelect"
|
|
android:label="@string/profile_select"
|
|
android:excludeFromRecents="true"/>
|
|
|
|
</application>
|
|
</manifest>
|