Skip to content

Commit

Permalink
fix: code-analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
bensonarafat committed Aug 12, 2024
1 parent c8d8d2d commit b3a779d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/code-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,10 @@ jobs:
working-directory: ./packages/google_mlkit_selfie_segmentation
run: flutter pub get

- name: Install dependencies for google_mlkit_subject_segmentation
working-directory: ./packages/google_mlkit_subject_segmentation
run: flutter pub get

- name: Install dependencies for example
working-directory: ./packages/example
run: flutter pub get
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,7 @@ + (void)registerWithRegistrar:(NSObject<FlutterPluginRegistrar>*)registrar {
}

- (void)handleMethodCall:(FlutterMethodCall*)call result:(FlutterResult)result {
if ([@"getPlatformVersion" isEqualToString:call.method]) {
result([@"iOS " stringByAppendingString:[[UIDevice currentDevice] systemVersion]]);
} else {
result(FlutterMethodNotImplemented);
}
}

@end

0 comments on commit b3a779d

Please sign in to comment.