Attempt to fix continuous integration build error

This commit is contained in:
Anthony Restaino 2015-08-21 16:43:20 -04:00
parent 88f07e3ced
commit d6fbfeaf29

View File

@ -50,3 +50,18 @@ dependencies {
// git submodule foreach git reset --hard // git submodule foreach git reset --hard
// git submodule update --remote // git submodule update --remote
} }
android.applicationVariants.all { variant ->
switch (variant.name) {
case "lightningPlus":
variant.mergeResources.doFirst {
android.sourceSets.debug.setRoot("src/LightningPlus")
}
break;
case "lightningLite":
variant.mergeResources.doFirst {
android.sourceSets.debug.setRoot("src/LightningLite")
}
break;
}
}