OpenCV version++

OpenCV 3.3.1
This commit is contained in:
Alexander Alekhin
2017-10-09 14:22:38 +03:00
parent 949ec486c5
commit bd6fb497bc
10 changed files with 13 additions and 13 deletions
+1 -1
View File
@@ -171,7 +171,7 @@ class Builder:
# Add extra data
apkxmldest = check_dir(os.path.join(apkdest, "res", "xml"), create=True)
apklibdest = check_dir(os.path.join(apkdest, "libs", abi.name), create=True)
for ver, d in self.extra_packs + [("3.3.0", os.path.join(self.libdest, "lib"))]:
for ver, d in self.extra_packs + [("3.3.1", os.path.join(self.libdest, "lib"))]:
r = ET.Element("library", attrib={"version": ver})
log.info("Adding libraries from %s", d)
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.opencv.engine"
android:versionCode="330@ANDROID_PLATFORM_ID@"
android:versionName="3.30">
android:versionCode="331@ANDROID_PLATFORM_ID@"
android:versionName="3.31">
<uses-sdk android:minSdkVersion="@ANDROID_NATIVE_API_LEVEL@" android:targetSdkVersion="22"/>
<uses-feature android:name="android.hardware.touchscreen" android:required="false"/>
@@ -134,7 +134,7 @@ public class OpenCVEngineService extends Service {
@Override
public int getEngineVersion() throws RemoteException {
int version = 3300;
int version = 3310;
try {
version = getPackageManager().getPackageInfo(getPackageName(), 0).versionCode;
} catch (NameNotFoundException e) {
+1 -1
View File
@@ -12,7 +12,7 @@ manually using adb tool:
adb install <path-to-OpenCV-sdk>/apk/OpenCV_<version>_Manager_<app_version>_<platform>.apk
Example: OpenCV_3.3.0-dev_Manager_3.30_armeabi-v7a.apk
Example: OpenCV_3.3.1-dev_Manager_3.30_armeabi-v7a.apk
Use the list of platforms below to determine proper OpenCV Manager package for your device:
+1 -1
View File
@@ -4,7 +4,7 @@
<parent>
<groupId>org.opencv</groupId>
<artifactId>opencv-parent</artifactId>
<version>3.3.0</version>
<version>3.3.1</version>
</parent>
<groupId>org.opencv</groupId>
<artifactId>opencv-it</artifactId>
+1 -1
View File
@@ -4,7 +4,7 @@
<parent>
<groupId>org.opencv</groupId>
<artifactId>opencv-parent</artifactId>
<version>3.3.0</version>
<version>3.3.1</version>
</parent>
<groupId>org.opencv</groupId>
<artifactId>opencv</artifactId>
+1 -1
View File
@@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.opencv</groupId>
<artifactId>opencv-parent</artifactId>
<version>3.3.0</version>
<version>3.3.1</version>
<packaging>pom</packaging>
<name>OpenCV Parent POM</name>
<licenses>