mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
644 B
15 lines
644 B
13 years ago
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
package="org.opencv.lib_v@OPENCV_VERSION_MAJOR@@OPENCV_VERSION_MINOR@_@ANDROID_PACKAGE_PLATFORM@"
|
||
|
android:versionCode="@OPENCV_VERSION_PATCH@@ANDROID_PACKAGE_RELEASE@"
|
||
|
android:versionName="@OPENCV_VERSION_PATCH@.@ANDROID_PACKAGE_RELEASE@" >
|
||
|
|
||
|
<uses-sdk android:minSdkVersion="@ANDROID_SDK_VERSION@" />
|
||
|
<uses-feature android:name="android.hardware.touchscreen" android:required="false"/>
|
||
|
|
||
|
<application
|
||
|
android:icon="@drawable/icon"
|
||
|
android:label="@string/app_name" >
|
||
|
</application>
|
||
|
|
||
|
</manifest>
|