Skip to content

Commit d66b97d

Browse files
committed
import eclipse -> AS
0 parents  commit d66b97d

File tree

149 files changed

+35158
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

149 files changed

+35158
-0
lines changed

.gitignore

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# Built application files
2+
*.apk
3+
*.ap_
4+
5+
# Files for the ART/Dalvik VM
6+
*.dex
7+
8+
# Java class files
9+
*.class
10+
11+
# Generated files
12+
bin/
13+
gen/
14+
out/
15+
16+
# Gradle files
17+
.gradle/
18+
build/
19+
20+
# Local configuration file (sdk path, etc)
21+
local.properties
22+
23+
# Proguard folder generated by Eclipse
24+
proguard/
25+
26+
# Log Files
27+
*.log
28+
29+
# Android Studio Navigation editor temp files
30+
.navigation/
31+
32+
# Android Studio captures folder
33+
captures/
34+
35+
# Intellij
36+
*.iml
37+
.idea/workspace.xml
38+
.idea/tasks.xml
39+
.idea/gradle.xml
40+
.idea/dictionaries
41+
.idea/libraries
42+
43+
# Keystore files
44+
*.jks
45+
46+
# External native build folder generated in Android Studio 2.2 and later
47+
.externalNativeBuild
48+
49+
# Google Services (e.g. APIs or Firebase)
50+
google-services.json
51+
52+
# Freeline
53+
freeline.py
54+
freeline/
55+
freeline_project_description.json

.idea/.name

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/compiler.xml

+22
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/copyright/profiles_settings.xml

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/encodings.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

+46
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations.xml

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
apply plugin: 'com.android.library'
2+
3+
android {
4+
compileSdkVersion 14
5+
buildToolsVersion "26.0.2"
6+
7+
defaultConfig {
8+
minSdkVersion 8
9+
targetSdkVersion 21
10+
}
11+
12+
buildTypes {
13+
release {
14+
minifyEnabled false
15+
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
16+
}
17+
}
18+
}

app/lint.xml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<lint>
3+
<issue id="InlinedApi">
4+
<ignore path="src\org\opencv\android\JavaCameraView.java" />
5+
</issue>
6+
<issue id="NewApi">
7+
<ignore path="src\org\opencv\android\JavaCameraView.java" />
8+
</issue>
9+
</lint>

app/src/main/AndroidManifest.xml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
package="org.opencv"
4+
android:versionCode="3310"
5+
android:versionName="3.3.1">
6+
7+
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="21" />
8+
</manifest>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
package org.opencv.engine;
2+
3+
/**
4+
* Class provides a Java interface for OpenCV Engine Service. It's synchronous with native OpenCVEngine class.
5+
*/
6+
interface OpenCVEngineInterface
7+
{
8+
/**
9+
* @return Returns service version.
10+
*/
11+
int getEngineVersion();
12+
13+
/**
14+
* Finds an installed OpenCV library.
15+
* @param OpenCV version.
16+
* @return Returns path to OpenCV native libs or an empty string if OpenCV can not be found.
17+
*/
18+
String getLibPathByVersion(String version);
19+
20+
/**
21+
* Tries to install defined version of OpenCV from Google Play Market.
22+
* @param OpenCV version.
23+
* @return Returns true if installation was successful or OpenCV package has been already installed.
24+
*/
25+
boolean installVersion(String version);
26+
27+
/**
28+
* Returns list of libraries in loading order, separated by semicolon.
29+
* @param OpenCV version.
30+
* @return Returns names of OpenCV libraries, separated by semicolon.
31+
*/
32+
String getLibraryList(String version);
33+
}

0 commit comments

Comments
 (0)