An Android app project is using two library projects as dependencies, Each of the library project has some layout resources and has “R” class auto generated. However, the IDE is getting confused with two inherited “R” classes . Is it possible to change the name of output “R” class by overriding some ANT properties ?
I’ve already changed dependency order, So IDE looks for main source first and then the library project but it didn’t help.
Not that I am aware of. Simply fully qualify one (or both) of the
Rreferences (e.g.,com.wingman.libraryone.R, so you are not relying uponimportstatements.