blob: da85654dbfd7f713da995492b37dfaeaef51e1cb [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (C) 2015 The Android Open Source 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"
package="com.android.traceur"
android:versionCode="2"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="26" android:targetSdkVersion="26"/>
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<!-- Used for adding the Quick Settings tile to the status bar. -->
<uses-permission android:name="android.permission.STATUS_BAR" />
<!-- Declare Android TV support. -->
<uses-feature android:name="android.software.leanback" android:required="false" />
<!-- touch screen is not required for TV -->
<uses-feature android:name="android.hardware.touchscreen" android:required="false" />
<application android:label="@string/system_tracing"
android:theme="@style/Theme.Settings">
<activity android:name=".MainActivity"
android:description="@string/record_system_activity"
android:label="@string/system_tracing"
android:launchMode="singleTask">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LEANBACK_LAUNCHER" />
<category android:name="android.intent.category.INFO"/>
</intent-filter>
<intent-filter>
<action android:name="android.service.quicksettings.action.QS_TILE_PREFERENCES" />
</intent-filter>
<!-- Mark this activity as a dynamic setting in the development category. -->
<intent-filter>
<action android:name="com.android.settings.action.IA_SETTINGS" />
</intent-filter>
<meta-data android:name="com.android.settings.category"
android:value="com.android.settings.category.ia.development" />
<meta-data android:name="com.android.settings.summary" android:resource="@string/record_system_activity" />
<meta-data android:name="com.android.settings.order" android:value="10" />
</activity>
<receiver android:name=".Receiver" android:permission="android.permission.DUMP">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
<service android:name=".AtraceService" />
<service
android:name=".QsService"
android:enabled="false"
android:icon="@drawable/stat_sys_adb"
android:label="@string/record_trace"
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE">
<intent-filter>
<action android:name="android.service.quicksettings.action.QS_TILE" />
</intent-filter>
</service>
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="com.android.traceur.files"
android:grantUriPermissions="true"
android:exported="false">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
</provider>
<provider
android:name=".SearchProvider"
android:authorities="com.android.traceur"
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>
</application>
</manifest>