File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -26,10 +26,10 @@ + (void)registerWithRegistrar:(NSObject<FlutterPluginRegistrar>*)registrar {
2626
2727- (void )handleMethodCall : (FlutterMethodCall*)call result : (FlutterResult)result {
2828 if ([@" frameworkVersion" isEqualToString: call.method]) {
29- result ([@" iOS " stringByAppendingString: PSPDFKit .versionNumber]);
29+ result ([@" iOS " stringByAppendingString: PSPDFKitGlobal .versionNumber]);
3030 } else if ([@" setLicenseKey" isEqualToString: call.method]) {
3131 NSString *licenseKey = call.arguments [@" licenseKey" ];
32- [PSPDFKit setLicenseKey: licenseKey];
32+ [PSPDFKitGlobal setLicenseKey: licenseKey];
3333 } else if ([@" present" isEqualToString: call.method]) {
3434 NSString *documentPath = call.arguments [@" document" ];
3535 NSAssert (documentPath != nil , @" Document path may not be nil." );
You can’t perform that action at this time.
0 commit comments