• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3      package="com.arm.devlib.netstats"
4      android:versionCode="1"
5      android:versionName="1.0">
6    <application android:label="@string/app_name" android:icon="@drawable/ic_launcher">
7        <service android:name="com.arm.devlib.netstats.TrafficMetricsService" android:exported="true" android:enabled="true">
8            <intent-filter>
9                <action android:name="com.arm.devlib.netstats.TrafficMetricsService" />
10            </intent-filter>
11        </service>
12    </application>
13    <uses-feature android:name="android.hardware.touchscreen" android:required="false" />
14</manifest>
15