Hi,
I've built the buildozer app according to the GitHub README, pwd
is my project directory:
$ docker run --volume "$(pwd)":/home/user/hostcwd buildozer android debug
First time this command downloaded all the SDKs, built a lot of dependencies and finally built an apk file in pwd/bin
, which is an easily expected behavior. I tried to build the apk again with the same command line, and it started the process of downloading SDKs again, which I aborted. What is the right way of docker running buildozer routinely?
It turned out that all the SDKs and things live now in the project directory (pwd/.buildozer
) directory, which does not seem right. What am I getting wrong?