Skip to content

Latest commit

 

History

History
19 lines (18 loc) · 549 Bytes

README.md

File metadata and controls

19 lines (18 loc) · 549 Bytes

Opencv-Android-3.3-gradle

Introduction

This repository is created to avoid the gradle problems with the OpenCV java sdk, usually if you are going to use OpenCV CameraBridge.

How to add the gradle dependency?

1.- Add this code in your root gradle file (build.gradle):

allprojects {
    repositories {
        jcenter()
        maven { url 'https://jitpack.io' }
    }
}

2.- Add the compile line in your app/build.gradle.

compile 'com.github.uelordi01:Opencv-Android-3.3-gradle:1.1'

And that's it.