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:versionCode="1"
      5     android:versionName="1.0" >
      6 
      7     <application>
      8         <uses-sdk android:minSdkVersion="17" />
      9         <service android:name=".AbccService">
     10             <intent-filter>
     11                 <action android:name="compiler.abcc.BITCODE_COMPILE" />
     12                 <action android:name="compiler.abcc.BITCODE_COMPILE_TEST" />
     13             </intent-filter>
     14         </service>
     15     </application>
     16 
     17 </manifest>
     18