File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -190,7 +190,8 @@ properties are `null`.
190190
191191| Device Path | ` cordova.file.* ` | ` iosExtraFileSystems ` | r/w? | OS clears | private |
192192| :-------------------------------------------------| :----------------------------| :----------------------| :----:| :---------:| :-------:|
193- | ` /Applications/<appname>.app ` | applicationDirectory | bundle | r | N/A | Yes |
193+ | ` /Applications/<appname>.app/ ` | - | bundle | r | N/A | Yes |
194+ |   ;  ;  ;  ; ` Content/Resources/ ` | applicationDirectory | - | r | N/A | Yes |
194195| ` ~/Library/Application Support/<bundle-id>/ ` | applicationStorageDirectory | - | r/w | No | Yes |
195196|   ;  ;  ;  ; ` files/ ` | dataDirectory | - | r/w | No | Yes |
196197| ` ~/Documents/ ` | documentsDirectory | documents | r/w | No | No |
Original file line number Diff line number Diff line change @@ -452,7 +452,7 @@ - (void)requestAllFileSystems:(CDVInvokedUrlCommand*)command
452452- (void )requestAllPaths : (CDVInvokedUrlCommand*)command
453453{
454454 NSDictionary * ret = @{
455- @" applicationDirectory" : [[NSURL fileURLWithPath: [[NSBundle mainBundle ] bundlePath ]] absoluteString ],
455+ @" applicationDirectory" : [[NSURL fileURLWithPath: [[NSBundle mainBundle ] resourcePath ]] absoluteString ],
456456 @" applicationStorageDirectory" : [[NSURL fileURLWithPath: self .appSupportPath] absoluteString ],
457457 @" dataDirectory" : [[NSURL fileURLWithPath: self .appDataPath] absoluteString ],
458458 @" documentsDirectory" : [[NSURL fileURLWithPath: self .appDocsPath] absoluteString ],
You can’t perform that action at this time.
0 commit comments