Skip to content

Commit

Permalink
[imageEffects]Android Version fix
Browse files Browse the repository at this point in the history
The project’s minimum API was set to lv.8 yet it uses some code that
was only added in lv. 14 so it crashes immediately on any device with
under lv. 14
  • Loading branch information
JohnPilczak committed Aug 1, 2014
1 parent 6b98839 commit ccf3553
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions ImageEffects/ImageEffects/Properties/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="17" />
<application></application>
<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="17" />
<application>
</application>
</manifest>

0 comments on commit ccf3553

Please sign in to comment.