I have two Java modules in my project which are to be translated to Objective-C and used by my iOS module. Unfortunately the dependency tree in the generated Podfile does not reflect the dependency tree in the build.gradle files of my Java modules (see issue here). I was hoping I could set xcodeTargetsManualConfig to false and configure the calls to the generated pod methods in my Podfile myself. The problem when I build my project is that it adds the pod method for the first Java module and then tries to do a pod update before adding the pod method for the second Java module. Naturally the build fails.
I have two Java modules in my project which are to be translated to Objective-C and used by my iOS module. Unfortunately the dependency tree in the generated
Podfiledoes not reflect the dependency tree in thebuild.gradlefiles of my Java modules (see issue here). I was hoping I could setxcodeTargetsManualConfigtofalseand configure the calls to the generated pod methods in myPodfilemyself. The problem when I build my project is that it adds the pod method for the first Java module and then tries to do a pod update before adding the pod method for the second Java module. Naturally the build fails.