chromium/components/cronet/android/sample/javatests/AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2014 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
  <!-- package name must be unique so suffix with "tests" so package loader
       doesn't ignore this. -->
  <manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="org.chromium.cronet_sample_apk.tests">
    <uses-permission android:name="android.permission.RUN_INSTRUMENTATION" />
    <application>
        <!--
          Run the real telemetry code in test/sample code to improve
          coverage
        -->
        <service
          android:name="android.net.http.MetaDataHolder"
          android:enabled="false" android:exported="false">
            <meta-data
              android:name="android.net.http.EnableTelemetry"
              android:value="true" />
        </service>
    </application>
    <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner"
        android:targetPackage="org.chromium.cronet_sample_apk"
        android:label="Tests for org.chromium.cronet_sample_apk"/>
</manifest>