mjsobremonte
mjsobremonte
My hack-around method using CoordinatorLayout without having to modify the lib (API 11+) : ``` java private void applyDependencyFixes() { final FABProgressCircle fabPc = (FABProgressCircle) findViewById(R.id.fabProgressCircle); if (fabPc != null)...
This worked for me to remove the deprecation warning on Ubuntu 22.04 | 5.15.0-40-generic: ``` wget -O- https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo tee /etc/apt/trusted.gpg.d/coral-edgetpu.gpg ``` Credits [here](https://github.com/hashicorp/terraform/issues/30911#issuecomment-1107861907) and [here](https://www.linuxuprising.com/2021/01/apt-key-is-deprecated-how-to-add.html)
Update : Seems running the master node as a docker container with an underprivileged host user is the cause of the issue. Looking at the master node's System Information view...
Just to follow up, I couldn't spend days on this issue so eventually just fell back to using fastlane (https://fastlane.tools/). Works like a charm with Jenkins pipelines and decouples the...