#Build plugins-workspace plugin isolated instead of all of them at once

7 messages · Page 1 of 1 (latest)

pliant finch
#

I'm doing a POC in the biometric plugin to see if what I thought will work before to pull the issue to me. It is not too clear how we can build the plugins, but now I discovered how: just build the example project, that will trigger the building of all the plugins.

But I'm wondering if there is a documented way to build only one of the plugins. Ideas?

grave wyvern
#

Not sure what exactly you mean with building it tbh. If you mean its JS bindings then you can just cd into the plugin's folder and run pnpm build. If you mean the rust part to check if it builds (cargo build / cargo check) it's also just cd into the folder, run the command.

If you mean build as in actually trying out its functionality then you must use it as a plugin in an actual app. That can be the example app but you can also create your own app that pulls in that plugin via a file path.

pliant finch
grave wyvern
#

as far as i know, yes

#

you may be able to build it in android studio but probablyyy not

pliant finch
#

Yeah, I'm having trouble opening it on Android Studio. It is not able to locate the dependencies. And the part of the code I'm trying to change is on the Kotlin side :\

#

But thanks for the help... I'll try creating a default initial app that includes the plugin folder and see if they compile that way.