cxhawk
#1
I created a static library project with Projucer for andoird. Opened in Android Studio and compiled fine, but where is the output?
I can only find two very small AAR files in lib/build/outputs/aar/
They are both 2KB and contains no so files
Edit: it seems only shared dynamic library type works?
ed95
#2
The build artefacts are located in lib/build/intermediates/cmake/release_Release/obj/__ARCH__
where __ARCH__
is one of the supported Android ABIs.
cxhawk
#3
Thanks. In projucer is there a way to make android dynamic library while maintaining ios static library?
ed95
#4
No, you’ll need two separate Projucer projects to do that.