react-native-pagecall
TypeScript icon, indicating that this package has built-in type declarations

2.0.13-nomi13 • Public • Published

react-native-pagecall

A React Native module that provides a simple WebView component to integrate Pagecall's audio feature into your application. Note that video feature is not supported yet.

It uses following native SDKs

Visit Pagecall

Installation

npm install react-native-pagecall

or

yarn add react-native-pagecall

Usage

Please refer to the example. You can easily grasp it by looking at App.tsx.

Android setup

To use this module in an Android project, you need to add the dependency of pagecall-android-sdk manually:

In your android/app/build.gradle file, add the following:

allprojects {
    repositories {
        maven {
            url 'https://maven.pkg.github.com/pagecall/pagecall-android-sdk'
            credentials {
                username = project.findProperty("GITHUB_USERNAME") ?: System.getenv("GITHUB_USERNAME")
                password = project.findProperty("GITHUB_TOKEN") ?: System.getenv("GITHUB_TOKEN")
            }
        }
    }
}

dependencies {
    ...
    implementation 'com.pagecall:pagecall-android-sdk:0.0.32'
}

Ensure that you have a valid GitHub username and personal access token configured in your environment variables or project properties.

Package Sidebar

Install

npm i react-native-pagecall

Weekly Downloads

222

Version

2.0.13-nomi13

License

MIT

Unpacked Size

99.8 kB

Total Files

31

Last publish

Collaborators

  • jurungpark
  • taemini
  • pplink-jerry