blob: 32b5039ea85dc162d8e739a80099151902ce1a0e [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.android.support.wearable.notifications" >
<uses-sdk android:minSdkVersion="19" android:targetSdkVersion="19"/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@android:style/Theme.DeviceDefault.Light" >
<activity
android:name=".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>
<activity
android:name=".BasicNotificationDisplayActivity"
android:exported="true"
android:allowEmbedded="true"
android:label="@string/app_name"
android:taskAffinity="" />
<activity
android:name=".AnimatedNotificationDisplayActivity"
android:exported="true"
android:allowEmbedded="true"
android:label="@string/app_name"
android:taskAffinity="" />
</application>
</manifest>