Move android support files into /plugins/android/ in the build

* We also don't copy out of the android SDK anymore as that has a
  licensing impact. Instead we ship our own builds from a local AOSP
  checkout, the same way as other plugins.
This commit is contained in:
baldurk
2018-02-01 20:21:50 +00:00
parent 2dd9531199
commit 84ea588036
3 changed files with 19 additions and 31 deletions
+1 -1
View File
@@ -193,7 +193,7 @@ std::string getToolPath(ToolDir subdir, const std::string &toolname, bool checkE
FileIO::GetExecutableFilename(exepath);
std::string exedir = dirname(FileIO::GetFullPathname(exepath));
toolpath = exedir + "/android/" + toolname;
toolpath = exedir + "/plugins/android/" + toolname;
if(toolExists(toolpath))
return toolpath;
}