Skip to content

Instantly share code, notes, and snippets.

View fantasyado's full-sized avatar

Fantasy、ado fantasyado

View GitHub Profile
@fantasyado
fantasyado / build_openalpr_android.sh
Created January 4, 2023 13:11 — forked from jav974/build_openalpr_android.sh
This bash script compiles openalpr for android. You just need to provide the path to Android SDK and Android NDK in the first lines of this code and execute it. Tested on ubuntu 17.04 64bit
#!/bin/bash
# You should tweak this section to adapt the paths to your need
export ANDROID_HOME=/home/jeremy/Android/Sdk
export NDK_ROOT=/home/jeremy/Android/Sdk/ndk-bundle
ANDROID_PLATFORM="android-21"
# In my case, FindJNI.cmake does not find java, so i had to manually specify these
# You could try without it and remove the cmake variable specification at the bottom of this file