1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 07:43:03 +04:00

android: update build_sdk.py

- configuration files for ABIs configuration
- use builtin Android NDK's toolchain by default (force flag to use OpenCV's toolchain)
- default values for 'work_dir' and 'opencv_dir'
This commit is contained in:
Alexander Alekhin
2018-01-05 02:40:37 +00:00
parent 70ff4af4fa
commit edcbbee979
4 changed files with 98 additions and 62 deletions
@@ -119,9 +119,12 @@ public class OpenCVEngineService extends Service {
@Override
public String getLibraryList(String version) throws RemoteException {
for (LibVariant lib : variants)
Log.i(TAG, "getLibraryList(" + version + ")");
for (LibVariant lib : variants) {
Log.i(TAG, "checking " + lib.version + " ...");
if (lib.isCompatible(version))
return lib.getFileList();
}
return null;
}