Home | History | Annotate | Download | only in FillService
      1 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
      2     package="foo.bar.fill" >
      3 
      4     <application>
      5 
      6         <service android:name=".FillService"
      7              android:permission="android.permission.BIND_AUTOFILL_SERVICE">
      8             <intent-filter>
      9                 <action android:name="android.service.autofill.AutofillService" />
     10             </intent-filter>
     11 
     12             <meta-data
     13                 android:name="android.autofill"
     14                 android:resource="@xml/autofill_service_config">
     15             </meta-data>
     16 
     17         </service>
     18 
     19         <activity android:name=".AuthActivity"/>
     20         <activity android:name=".FirstActivity"/>
     21         <activity android:name=".SecondActivity"/>
     22 
     23     </application>
     24 
     25 </manifest>
     26 
     27