1. Restore the original simple version of `configure.sh`
Restores 08e37f4 "Refactor configure.sh"
Reverts b87ee95b "Fixed configure.sh script and gh actions"
2. Use GitHub Secrets instead of a private git repository to enhance
security standards and ensure credentials are encrypted and safely
managed.
3. Document credentials used by GitHub Actions in docs/CREDENTIALS.md
4. Include `network_security_config.xml` directly into the repo
as it has nothing sensitive.
5. Include Apple WWDR intermediate certificates directly into the repo
as they are not sensitive and publicly available.
https://developer.apple.com/help/account/reference/wwdr-intermediate-certificates
6. Add `private.h` in the repository since it does not differ from
`private_defaults.h`.
Signed-off-by: Roman Tsisyk <roman@tsisyk.com>
The issue is caused by missing root certificates on older Android devices with the following error:
javax.net.ssl.SSLHandshakeException:
java.security.cert.CertPathValidatorException: Trust anchor for certification path not found.
ISRG Root X1 and GTS/Global Sign Root certificates are embedded and used for Android 7 or older devices:
- https://letsencrypt.org/certs/isrgrootx1.pem
- https://pki.goog/repository/
Signed-off-by: Alexander Borsuk <me@alex.bio>
A big rewrite of configure.sh to fix behaviour inconsistencies and allow
more flexible configuration. New features:
- Allow to specify private repo branch along with repo url. `master`
is the default, if not specified.
- Allow to use commandline parameters for specifying parameters along
with old stdin variant.
- No need for any input for opensource build, it just works.
- Clear override hierarchy:
- commandline parameters - most specific, always wins.
- stdin parameters.
- saved repository - least specific, if present.
- fallback to opensource mode.
- Boost configuration: hint user to update submodules if something is
missing.
Sources can be obtained via download of tarball from github,
and in that case git rev-parse is not possible.
Also, every path in script is not dependent on current workdir.