TheMartas29
Results
2
comments of
TheMartas29
Yeah, I guess I was able to do it with this code: ``` var project = xcode.project(_PBXPROJ_PATH); if (!fs.existsSync(PROJECT_PATH + "groupName")) { fs.mkdir(path.join(PROJECT_PATH, "groupName"), err => { if (err) console.log(err);...
For android 10 you have to add following to AndroidManifest.xml: android:requestLegacyExternalStorage="true" For android 11 (or higher) you have to add special permission for accessing all types of files, it is:...