Skip to content

Tag: android-gradle-plugin

Multiple sourcesets configurations

I have two productFlavors Now, I created a different source set for ble where I added few extra Java classes. So I have two sets of directories now: app/src/main/java/… app/src/ble/java/… In the ble set, I have a Java class called BLEUtil.java I want to call a method that is in BLEUtil.java from m…