Roll NDK to pick std::deque patch.
[android_tools.git] / sdk / tools / templates / other / AppWidget / root / AndroidManifest.xml.ftl
blob698f3ba149e9a556692fe94bc095f3b08e319170
1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android">
4 <application>
6 <receiver android:name="${relativePackage}.${className}" >
7 <intent-filter>
8 <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
9 </intent-filter>
11 <meta-data
12 android:name="android.appwidget.provider"
13 android:resource="@xml/${class_name}_info" />
14 </receiver>
16 <#if configurable>
17 <activity android:name="${relativePackage}.${className}ConfigureActivity" >
18 <intent-filter>
19 <action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
20 </intent-filter>
21 </activity>
22 </#if>
23 </application>
25 </manifest>