LOVR Plugins and Android #768
-
I was wanting to use LOVR on android with a plugin. But I see this may cause a signing issue.
It seems all I would need to do is resign the APK after adding the plugin. Am I missing something? Has anyone done this? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
If you are building with CMake, you can add the plugins to the If you're trying to add plugins to an existing APK, it's probably possible but I haven't heard of anyone doing it yet. The process would be something like this:
Good luck! Android tooling is not for the faint of heart |
Beta Was this translation helpful? Give feedback.
If you are building with CMake, you can add the plugins to the
plugins
folder and LÖVR will build them along with the rest of the project and sign the final APK for you. If you've managed to get an Android CMake build working, that's probably the easiest way to do plugins on Android.If you're trying to add plugins to an existing APK, it's probably possible but I haven't heard of anyone doing it yet. The process would be something like this:
lib/arm64-v8a
. Then rezip.aapt add lovr.apk lib/arm64-v8a/libmyplugin.so
zipalign
on the…