Change ReadAll/WriteAll to take rdcstr instead of char* filename

This commit is contained in:
baldurk
2020-03-31 11:58:13 +01:00
parent bfeb66d4ce
commit fbe2d1fbee
4 changed files with 17 additions and 17 deletions
+1 -1
View File
@@ -146,7 +146,7 @@ bool AddManifestToAPK(const rdcstr &apk, const rdcstr &tmpDir, const bytebuf &ma
rdcstr aapt = getToolPath(ToolDir::BuildTools, "aapt", false);
// write the manifest to disk
FileIO::WriteAll((tmpDir + "AndroidManifest.xml").c_str(), manifest);
FileIO::WriteAll(tmpDir + "AndroidManifest.xml", manifest);
// run aapt to add the manifest
Process::ProcessResult result =