Unity3D export to Android with transparent background?

Got it working on iOS by following this steps and adding the next code

- (void)preStartUnity {
  self.window.backgroundColor = [[UIColor clearColor] colorWithAlphaComponent:0];
}

2020.1.9f1