blob: 677bc976d85e61c85692f1d27201314adfbf72e0 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (c) 2016 The Chromium Authors. All rights reserved. Use of this
source code is governed by a BSD-style license that can be found in the
LICENSE file.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.chromium.tools.audio_focus_grabber" >
<uses-sdk android:minSdkVersion="19" android:targetSdkVersion="23" />
<application
android:label="@string/app_name" >
<activity
android:name="org.chromium.tools.audio_focus_grabber.AudioFocusGrabberActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service
android:name="org.chromium.tools.audio_focus_grabber.AudioFocusGrabberListenerService"
android:exported="true" >
<intent-filter>
<action android:name="AUDIO_FOCUS_GRABBER_GAIN" />
<action android:name="AUDIO_FOCUS_GRABBER_TRANSIENT_PAUSE" />
<action android:name="AUDIO_FOCUS_GRABBER_TRANSIENT_DUCK" />
</intent-filter>
</service>
</application>
</manifest>