npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-native-zoom-ios

v1.0.0

Published

React Native bridge for Zoom SDK (iOS)

Downloads

17

Readme

react-native-afrzoom

Native Bindings for the Zoom.US Library

  • react-native link react-native-afrzoom

  • in Xcode, go to your main project Build Phases -> Link Binary With Libraries and add the following: a) DropboxSDK.framework b) ZoomSDK.framework c) Foundation.framework d) CoreGraphic.framework e) libz.1.2.5.tbd f) libsqlite3.tbd g) libstdc++.6.tbd

  • in Xcode, go to your main project Build Phases -> Copy Bundle Resources and add the following: a) ZoomSDKResources.bundle

  • in Xcode go to your AppDelegate and add the following code after the import for "AppDelegate.h" a) #import <ZoomSDK/ZoomSDK.h>

    then add the following code after the last import

    #define kZoomSDKAppKey @"nWRVRQVBB5NL992aSA2T1CEjPSoALdkwDhQb" #define kZoomSDKAppSecret @"8uV38aLgWpo45pIE7VaOUAT30SLRYbqSpnKi" #define kZoomSDKDomain @"zoom.us"

    then add the following code beetween the define code above and the @implementation code

    @interface AppDelegate ()<ZoomSDKAuthDelegate, UIAlertViewDelegate>

    @end

    and finally add the following code at the end of the file (before the @end)

    #pragma mark - Auth Delegate

    • (void)sdkAuth { ZoomSDKAuthService *authService = [[ZoomSDK sharedSDK] getAuthService]; if (authService) { authService.delegate = self;

      authService.clientKey = kZoomSDKAppKey; authService.clientSecret = kZoomSDKAppSecret;

      [authService sdkAuth]; } }

    • (void)onZoomSDKAuthReturn:(ZoomSDKAuthError)returnValue { NSLog(@"onZoomSDKAuthReturn %d", returnValue);

      if (returnValue != ZoomSDKAuthError_Success) { NSString *message = [NSString stringWithFormat:@"SDK authentication failed, errod code: %zd", returnValue ]; UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"" message:message delegate:self cancelButtonTitle:@"OK" otherButtonTitles:@"Retry", nil]; [alert show]; } }

    • (void)alertView:(UIAlertView *)alertView didDismissWithButtonIndex:(NSInteger)buttonIndex { if (buttonIndex != alertView.cancelButtonIndex) { [self performSelector:@selector(sdkAuth) withObject:nil afterDelay:1.f]; } }

  • in your RN project simply just import react-native-afrzoom like this:

    import * as AFRZoom from 'react-native-afrzoom';

    and then call the joinMeeting function whereever you need it like this:

    AFRZoom.joinMeeting({ meetingNumber:"462119746", displayName:"reactNative", password:"" })