When I do as it says in the README: git submodule update --init --recursive I get this:
Cloning into '/home/---/pd-for-android/PdCore/src/main/jni/libpd'...
fatal: remote error:
The unauthenticated git protocol on port 9418 is no longer supported.
Please see https://github.blog/2021-09-01-improving-git-protocol-security-github/ for more information.
According to another issue I found regarding this, swapping out git:// with https:// is the recommended solution. I did so in .git/config and .git/modules/PdCore/src/main/jni/libpd/config and it seems to have worked.
When I do as it says in the README:
git submodule update --init --recursive
I get this:According to another issue I found regarding this, swapping out
git://
withhttps://
is the recommended solution. I did so in.git/config
and.git/modules/PdCore/src/main/jni/libpd/config
and it seems to have worked.