Skip to content

Commit

Permalink
rebind filesystem plugin project and reoganize the iOS workspace
Browse files Browse the repository at this point in the history
  • Loading branch information
breautek committed Oct 27, 2024
1 parent b3e9925 commit e07ec79
Show file tree
Hide file tree
Showing 9 changed files with 68 additions and 172 deletions.
37 changes: 24 additions & 13 deletions ios/BTFuse.xcworkspace/contents.xcworkspacedata

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions ios/BTFuse/BTFuse.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,7 @@
94A8864F2A702C6C0098530D = {
isa = PBXGroup;
children = (
94B3ABCA2CCE7F2B00BD34E2 /* New Group */,
94C3AF272B6867B8006AD040 /* LICENSE */,
944112B92AED442300309527 /* PrivacyInfo.xcprivacy */,
94552C592ACB349A00DAE0F4 /* configurations */,
Expand Down Expand Up @@ -348,6 +349,13 @@
name = internal;
sourceTree = "<group>";
};
94B3ABCA2CCE7F2B00BD34E2 /* New Group */ = {
isa = PBXGroup;
children = (
);
path = "New Group";
sourceTree = "<group>";
};
94B7A9CD2AC89E39003D294D /* BTFuseTests */ = {
isa = PBXGroup;
children = (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#include "../Pods/Target Support Files/Pods-BTFuseFilesystem/Pods-BTFuseFilesystem.debug.xcconfig"
//#include "../Pods/Target Support Files/Pods-BTFuseFilesystem/Pods-BTFuseFilesystem.debug.xcconfig"
#include "VERSION.xcconfig"

Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#include "../Pods/Target Support Files/Pods-BTFuseFilesystem/Pods-BTFuseFilesystem.release.xcconfig"
//#include "../Pods/Target Support Files/Pods-BTFuseFilesystem/Pods-BTFuseFilesystem.release.xcconfig"
#include "VERSION.xcconfig"

Large diffs are not rendered by default.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ - (void) handleFileSizeRequest:(BTFuseAPIPacket*) packet response:(BTFuseAPIResp

- (void) handleFileMkdirRequest:(BTFuseAPIPacket*) packet response:(BTFuseAPIResponse*) response {
NSError* error = nil;
NSDictionary* params = [packet readAsJSONObject: error];
NSDictionary* params = [packet readAsJSONObject: &error];

if (error != nil) {
[response sendError:[[BTFuseError alloc] init:@"FuseFilesystem" withCode:0 withError:error]];
Expand Down Expand Up @@ -160,7 +160,7 @@ - (void) handleFileMkdirRequest:(BTFuseAPIPacket*) packet response:(BTFuseAPIRes

- (void) handleFileReadRequest:(BTFuseAPIPacket*) packet response:(BTFuseAPIResponse*) response {
NSError* error = nil;
NSDictionary* params = [packet readAsJSONObject: error];
NSDictionary* params = [packet readAsJSONObject: &error];

if (error != nil) {
[response sendError:[[BTFuseError alloc] init: BTFUSE_FILESYSTEM_TAG withCode:0 withError:error]];
Expand Down Expand Up @@ -549,7 +549,7 @@ - (void) handleFileWriteRequest:(BTFuseAPIPacket*) packet response:(BTFuseAPIRes
- (void) handleFileRemoveRequest:(BTFuseAPIPacket*) packet response:(BTFuseAPIResponse*) response {
NSError* error = nil;

NSDictionary* opts = [packet readAsJSONObject: error];
NSDictionary* opts = [packet readAsJSONObject: &error];

if (error != nil) {
[response sendError:[[BTFuseError alloc] init:BTFUSE_FILESYSTEM_TAG withCode: 0 withError: error]];
Expand Down
21 changes: 0 additions & 21 deletions plugins/filesystem/ios/Podfile

This file was deleted.

20 changes: 0 additions & 20 deletions plugins/filesystem/ios/Podfile.lock

This file was deleted.

0 comments on commit e07ec79

Please sign in to comment.