Home | History | Annotate | Download | only in WebView
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
      3     package="com.android.dreams.web"
      4     >
      5     <!-- uses-permission android:name="android.permission.WRITE_SETTINGS" -->
      6     <uses-permission android:name="android.permission.INTERNET" />
      7     <application android:label="WebViewDream">
      8         <service
      9             android:name="Screensaver"
     10             android:exported="true"
     11             android:label="WebView">
     12             <intent-filter>
     13                 <action android:name="android.service.dreams.DreamService" />
     14                 <category android:name="android.intent.category.DEFAULT" />
     15             </intent-filter>
     16         </service>
     17 
     18         <activity
     19             android:name="SetURL"
     20             android:label="Dream URL"
     21             android:theme="@android:style/Theme.Translucent.NoTitleBar">
     22 
     23             <intent-filter>
     24                 <action android:name="android.intent.action.SEND" />
     25                 <category android:name="android.intent.category.DEFAULT" />
     26                 <data android:mimeType="text/plain" />
     27             </intent-filter>
     28         </activity>
     29 
     30         <activity
     31             android:name="SetURLInteractive"
     32             android:label="Dream URL (Interactive)"
     33             android:theme="@android:style/Theme.Translucent.NoTitleBar">
     34 
     35             <intent-filter>
     36                 <action android:name="android.intent.action.SEND" />
     37                 <category android:name="android.intent.category.DEFAULT" />
     38                 <data android:mimeType="text/plain" />
     39             </intent-filter>
     40         </activity>
     41         </application>
     42 </manifest>
     43