OpenFTC / OpenCV-Repackaged

10 stars 8 forks source link

libOpenCvNative.so should be put into android external storage #1

Closed KokeCacao closed 4 years ago

KokeCacao commented 4 years ago

In readme.md, it says that libOpenCvNative.so should be put in android internal storage. But it does not make sense since the internal storage of an app is hidden for the users. The only thing we can access from the file system is an app's external storage.

Accured: putting libOpenCvNative.so in internal storage

Expected: putting libOpenCvNative.so in external storage

ref: https://stackoverflow.com/questions/5092591/what-are-the-differences-among-internal-storage-external-storage-sd-card-and-r

Windwoes commented 4 years ago

By internal storage, I meant internal to the phone as opposed to external to the phone (I.e. SD card)

KokeCacao commented 4 years ago

By internal storage, I meant internal to the phone as opposed to external to the phone (I.e. SD card)

Thanks. It will be good to add clarification to prevent confusion.