Skip to content

Commit

Permalink
androidOpenCV Example fix
Browse files Browse the repository at this point in the history
  • Loading branch information
HalfdanJ committed Jul 20, 2016
1 parent 9c27d6c commit 62eabea
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions examples/android/androidOpenCVExample/AndroidManifest.xml
@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="cc.openframeworks.androidOpenCVExample"
android:installLocation="preferExternal">

<!--App uses CAMERA permissions-->
<uses-permission android:name="android.permission.CAMERA"/>

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme"
>
<activity
android:name="cc.openframeworks.OFActivity"
android:label="@string/app_name" android:configChanges="orientation|screenSize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

</manifest>

0 comments on commit 62eabea

Please sign in to comment.