Put the "deps" folder in the project root.

This commit is contained in:
player-03
2016-05-31 05:22:32 -04:00
committed by Joshua Granick
parent 5f3d5e90df
commit e6e7e5265a

View File

@@ -390,11 +390,11 @@ class AndroidPlatform extends PlatformTarget {
for (library in context.ANDROID_LIBRARY_PROJECTS) {
FileHelper.recursiveCopy (library.source, sourceSet + "/deps/" + library.name, context, true);
FileHelper.recursiveCopy (library.source, destination + "/deps/" + library.name, context, true);
if (!FileSystem.exists (sourceSet + "/deps/" + library.name + "/build.gradle")) {
if (!FileSystem.exists (destination + "/deps/" + library.name + "/build.gradle")) {
File.saveContent (sourceSet + "/deps/" + library.name + "/build.gradle", "ant.importBuild 'build.xml'\n");
File.saveContent (destination + "/deps/" + library.name + "/build.gradle", "ant.importBuild 'build.xml'\n");
}