KasunGamage / sample-app-ionic

Zoom Ionic SDK sample app

Home Page:https://marketplace.zoom.us/docs/sdk/hybrid-frameworks/ionic

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Zoom Ionic SDK sample app

Note: This is a community project initiated by Zoom. Zoom does not actively enhance the interfaces in the Ionic plugin. If you would like to contribute, please contact us. Thanks! :)

🚨 Announcement 🚨

To align with Zoom’s recent announcement pertaining to our security initiative, Zoom Client SDKs have added AES 256-bit GCM encryption support, which provides more protection for meeting data and greater resistance to tampering. The system-wide account enablement of AES 256-bit GCM encryption will take place on June 01, 2020. You are strongly recommended to start the required upgrade to this latest version 4.6.21666.0512 at your earliest convenience. Please note that any Client SDK versions below 4.6.21666.0512 will no longer be operational from June 01.

If you would like to test the latest SDK with AES 256-bit GCM encryption meeting before 05/30, you may:

  1. Download the latest version of Zoom client: https://zoom.us/download
  2. Visit https://zoom.us/testgcm and launch a GCM enabled meeting with your Zoom client, you will see a Green Shield icon that indicates the GCM encryption is enabled
  3. Use SDK to join this meeting

Full Documentation && Community Support

You can find the full Zoom Ionic SDK documentation and the community support forum here:

Disclaimer

Please be aware that all hard-coded variables and constants shown in the documentation and in the demo, such as Zoom Token, Zoom Access, Token, etc., are ONLY FOR DEMO AND TESTING PURPOSES. We STRONGLY DISCOURAGE the way of HARDCODING any Zoom Credentials (username, password, API Keys & secrets, SDK keys & secrets, etc.) or any Personal Identifiable Information (PII) inside your application. WE DON’T MAKE ANY COMMITMENTS ABOUT ANY LOSS CAUSED BY HARD-CODING CREDENTIALS OR SENSITIVE INFORMATION INSIDE YOUR APP WHEN DEVELOPING WITH OUR SDK.

Getting Started

The following instructions will get you a copy of the project up and running on your local machine for development and testing purposes.

Prerequisites

Before you try out our SDK, you would need the following to get started:

  • A Zoom Account: If you do not have one, you can sign up at https://zoom.us/signup.
    • Once you have your Zoom Account, sign up for a 60-days free trial at https://marketplace.zoom.us/

    • A mobile device

      • Android
        • Android 5.0 (API Level 21) or later.
        • CPU: armeabi-v7a, x86, armeabi, arm64-v8a, x86_64
        • compileSdkVersion: 29+
        • buildToolsVersion: 29+
        • minSdkVersion: 21
        • Required dependencies
        implementation 'androidx.multidex:multidex:2.0.0'
        implementation 'androidx.recyclerview:recyclerview:1.0.0'
        implementation 'androidx.appcompat:appcompat:1.0.0'
        implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
        implementation 'com.google.android.material:material:1.0.0-rc01'
        
      • iOS
        • iPhone or iPad
        • npm@6.13.4+
        • ionic-cli@6.9.0+
        • ionic/angular@5.0.0+
        • ionic-native/core@5.25.0+
        • ionic-native/zoom@5.25.0+

      If you are developing on Android, you will need to install the latest version of cordova-android(Since the current released version of cordova-android does not support Android SDK API Level 29, please install the latest version from their Github repo, which supports Android SDK API Level 29)

      ionic cordova platform add https://github.com/apache/cordova-android.git
      

      and install the following 2 plugins before you can use the Ionic SDK:

      ionic cordova plugin add cordova-plugin-androidx
      ionic cordova plugin add cordova-plugin-androidx-adapter
      

Installing

Clone or download a copy of our demo app from GitHub. After you unzipped the file, you should have the following folders:

.
β”œβ”€β”€ README.md
β”œβ”€β”€ config.xml
β”œβ”€β”€ ionic.config.json
β”œβ”€β”€ package-lock.json
β”œβ”€β”€ package.json
β”œβ”€β”€ resources
β”œβ”€β”€ src
β”œβ”€β”€ tsconfig.json
β”œβ”€β”€ tslint.json
└── www

In your Ionic application directory:

  1. Install the dependencies and platforms:
npm install
npm install @ionic-native/zoom #(Optional) if not successfully installed automatically with package.json
ionic cordova platform add https://github.com/apache/cordova-android.git
ionic cordova platform add ios
  1. run the following to install the plugin:
ionic cordova plugin add cordova-plugin-androidx
ionic cordova plugin add cordova-plugin-androidx-adapter
ionic cordova plugin add cordova.plugin.zoom
  1. Run the application:
ionic cordova run android
ionic cordova run ios

Build Note

In order to use the camera and microphone on iOS, please add the following in your config.xml file. Otherwise, your app will not be able to initialize a meeting.

<edit-config file="*-Info.plist" mode="merge" target="NSCameraUsageDescription">
    <string>Need camera for video conferencing</string>
</edit-config>
<edit-config file="*-Info.plist" mode="merge" target="NSMicrophoneUsageDescription">
    <string>Need microphone for video conferencing</string>
</edit-config>

Simulator Support

By default, this plugin only support running on real devices. If you would like to develop and test with Android or iOS simulators, please visit https://github.com/zoom/zoom-sdk-ionic for more details.

Documentation

Please visit [https://marketplace.zoom.us/docs/sdk/hybrid-frameworks/ionic] for details of each features and functions.

Versioning

For the versions available, see the tags on this repository.

Support

For any issues regarding our SDK, please visit our new Community Support Forum at https://devforum.zoom.us/.

License

Please refer to LICENSE.md file for details

Acknowledgments

  • ⭐ If you like our SDK, please give us a "Star". Your support is what keeps us moving forward and delivering happiness to you! Thanks a million! πŸ˜ƒ
  • If you need any support or assistance, we are here to help you: Zoom Developer Community Forum;

Copyright Β©2020 Zoom Video Communications, Inc. All rights reserved.

About

Zoom Ionic SDK sample app

https://marketplace.zoom.us/docs/sdk/hybrid-frameworks/ionic

License:Other


Languages

Language:JavaScript 99.7%Language:TypeScript 0.2%Language:CSS 0.1%Language:HTML 0.1%