Good morning I am trying to create my first .apk (android app).
I have managed to write a simple console based app using the Nim scripting language. (Managed to compile and test it on a Docker ubuntu image - to create a Windows 10 executable, also a working MacOS binary that executes correctly.) However, now I want to see if I can compile and package my nim program to an APK that i can copy to an android device and run. I read this: [https://nim-lang.github.io/Nim/nimc.html#cross-compilation-for-android](https://nim-lang.github.io/Nim/nimc.html#cross-compilation-for-android) I managed to successfully run this : nim c -c --cpu:arm --os:android -d:androidNDK --noMain:on hello.nim But now I need guidance (exact steps to follow) to do the follow: (extract from the guide)? P.S I want to do this on the same Docker Ubuntu image (I connect to the container using VS Code) Add the generated C files to CMake build script in your Android project. Then do the final compile with Android Studio which uses Gradle to call CMake to compile the project.
