2.0.15 • Published 24 days ago

react-native-pagecall v2.0.15

Weekly downloads
3
License
MIT
Repository
github
Last release
24 days ago

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.

iOS setup

Configure the minimum iOS version to 14 for installing the WebRTC package.

In your ios/Podfile, make the following adjustment:

- platform :ios, min_ios_version_supported
+ platform :ios, '14.0'

Android setup

Configure the minimum Android minSdkVersion to 24 for installing the WebRTC package.

In your android/build.gradle, make the following adjustment:

ext {
    buildToolsVersion = "34.0.0"
-   minSdkVersion = 21
+   minSdkVersion = 24
    compileSdkVersion = 33
    compileSdkVersion = 33
    targetSdkVersion = 33
    ndkVersion = "25.1.8937393"
    kotlinVersion = "1.8.0"
}

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.39'
}

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

2.0.15

24 days ago

2.0.14

2 months ago

2.0.12-nomi0

2 months ago

2.0.13

2 months ago

2.0.12

2 months ago

2.1.0

2 months ago

2.0.13-nomi0

2 months ago

2.0.11-nomi1

2 months ago

2.0.11-noiosmi0

2 months ago

2.0.12-dev0

2 months ago

2.0.12-test0

3 months ago

2.0.11

5 months ago

2.0.5

11 months ago

2.0.4

12 months ago

2.0.7

9 months ago

2.0.6

10 months ago

2.0.9

9 months ago

2.0.10

8 months ago

2.0.8

9 months ago

2.0.3-test0

12 months ago

2.0.3

12 months ago

2.0.2

12 months ago

2.0.1

12 months ago

2.0.0

1 year ago

0.1.14

4 years ago

0.1.13

4 years ago

0.1.12

4 years ago

0.1.11

4 years ago

0.1.10

4 years ago

0.1.9

4 years ago

0.1.8

4 years ago

0.1.7

4 years ago

0.1.6

4 years ago

0.1.5

4 years ago

0.1.4

4 years ago

0.1.3

4 years ago

0.1.2

4 years ago

0.1.1

4 years ago

0.1.0

4 years ago

1.0.0

4 years ago