Home | History | Annotate | Download | only in abcc
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
      3     package="compiler.abcc"
      4     android:sharedUserId="android.uid.system"
      5     android:versionCode="1"
      6     android:versionName="1.0" >
      7 
      8     <application>
      9         <uses-sdk android:minSdkVersion="17" />
     10         <service android:name=".AbccService">
     11             <intent-filter>
     12                 <action android:name="compiler.abcc.BITCODE_COMPILE" />
     13                 <action android:name="compiler.abcc.BITCODE_COMPILE_TEST" />
     14             </intent-filter>
     15         </service>
     16     </application>
     17 
     18 </manifest>
     19