summaryrefslogtreecommitdiffstats
path: root/tests/MusicServiceDemo/AndroidManifest.xml
diff options
context:
space:
mode:
authorYao Chen <yaochen@google.com>2014-07-17 14:39:34 -0700
committerYao Chen <yaochen@google.com>2014-07-21 21:14:43 -0700
commit17d47989ee53c9e54f250d29a343ba949edf0ff9 (patch)
tree666e0297c2c5ec1f740dade8738c7cdeb5ee12fb /tests/MusicServiceDemo/AndroidManifest.xml
parent66e207ec54e2085c0eb70d5189562effafa2c9c5 (diff)
downloadframeworks_base-17d47989ee53c9e54f250d29a343ba949edf0ff9.zip
frameworks_base-17d47989ee53c9e54f250d29a343ba949edf0ff9.tar.gz
frameworks_base-17d47989ee53c9e54f250d29a343ba949edf0ff9.tar.bz2
Updated media browsing API & tests.
Change-Id: I3a1e3eead99a98b1890e05843dd90203cee517b7
Diffstat (limited to 'tests/MusicServiceDemo/AndroidManifest.xml')
-rw-r--r--tests/MusicServiceDemo/AndroidManifest.xml55
1 files changed, 55 insertions, 0 deletions
diff --git a/tests/MusicServiceDemo/AndroidManifest.xml b/tests/MusicServiceDemo/AndroidManifest.xml
new file mode 100644
index 0000000..4178a80
--- /dev/null
+++ b/tests/MusicServiceDemo/AndroidManifest.xml
@@ -0,0 +1,55 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ Copyright (C) 2014 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.example.android.musicservicedemo"
+ android:versionCode="1"
+ android:versionName="1.0" >
+
+ <uses-permission android:name="android.permission.INTERNET" />
+ <uses-permission android:name="android.permission.WAKE_LOCK" />
+
+ <uses-sdk
+ android:minSdkVersion="9"
+ android:targetSdkVersion="19" />
+
+ <application
+ android:allowBackup="true"
+ android:icon="@drawable/ic_launcher"
+ android:label="@string/app_name"
+ android:theme="@style/AppTheme"
+ >
+
+ <activity
+ android:name="com.example.android.automotive.musicplayer.MainActivity"
+ 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=".BrowserService"
+ android:exported="true"
+ >
+ <intent-filter>
+ <action android:name="android.media.browse.MediaBrowseService" />
+ </intent-filter>
+ </service>
+ </application>
+
+</manifest>