• 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.google.android.wearable.support" >
4
5     <uses-sdk android:minSdkVersion="21" android:targetSdkVersion="23" />
6
7    <uses-permission android:name="android.permission.INTERNET" />
8
9    <application
10        android:allowBackup="true"
11        android:icon="@drawable/ic_launcher"
12        android:label="@string/app_name"
13        android:theme="@android:style/Theme.DeviceDefault" >
14        <activity
15            android:name="com.google.android.wearable.support.CustomNotificationStubBroadcastActivity"
16            android:label="@string/app_name"
17            android:launchMode="singleTask" >
18            <intent-filter>
19                <action android:name="android.intent.action.MAIN" />
20
21                <category android:name="android.intent.category.LAUNCHER" />
22            </intent-filter>
23        </activity>
24        <activity
25            android:name="com.google.android.wearable.support.CustomNotificationRemoteInputActivity"
26            android:allowEmbedded="true"
27            android:exported="true"
28            android:taskAffinity=""
29            android:theme="@android:style/Theme.DeviceDefault.Light" >
30        </activity>
31        <receiver
32            android:name="com.google.android.wearable.support.CustomPostNotificationReceiver"
33            android:exported="true" >
34            <intent-filter>
35                <action android:name="com.google.android.wearable.support.wearnotificationgenerator.SHOW_NOTIFICATION" />
36            </intent-filter>
37        </receiver>
38    </application>
39
40</manifest>