AndroidManifest.xml (1125B)
1 <!-- This Source Code Form is subject to the terms of the Mozilla Public 2 - License, v. 2.0. If a copy of the MPL was not distributed with this 3 - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> 4 5 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 6 xmlns:tools="http://schemas.android.com/tools"> 7 8 <application> 9 10 <service 11 android:name=".customtabs.CustomTabsService" 12 android:exported="true"> 13 <intent-filter> 14 <action android:name="android.support.customtabs.action.CustomTabsService" /> 15 </intent-filter> 16 </service> 17 18 <!-- ProfilerProvider is only exposed in nightly builds to allow profiler control through adb. 19 Access is restricted to shell / system UID via enforceShellCaller(). --> 20 <provider 21 android:name=".perf.ProfilerProvider" 22 android:authorities="${applicationId}.profiler" 23 android:exported="true" 24 android:enabled="true" 25 tools:replace="android:exported,android:enabled" /> 26 27 </application> 28 29 </manifest>