Home | History | Annotate | Download | only in ImageProcessing_jb
      1 <?xml version="1.0" encoding="utf-8"?>
      2 
      3 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
      4     package="com.android.rs.imagejb">
      5     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
      6     <uses-sdk android:minSdkVersion="23" />
      7     <application android:label="ImageProcessing"
      8                  android:hardwareAccelerated="true"
      9                  android:theme="@android:style/Theme.Holo.Light">
     10         <activity android:name="ImageProcessingActivityJB">
     11             <intent-filter>
     12                 <action android:name="android.intent.action.MAIN" />
     13             </intent-filter>
     14         </activity>
     15 
     16         <activity class=".IPControlsJB" android:name="IPControlsJB">
     17             <intent-filter>
     18                 <action android:name="android.intent.action.MAIN" />
     19                 <category android:name="android.intent.category.LAUNCHER" />
     20             </intent-filter>
     21         </activity>
     22     </application>
     23 </manifest>
     24