Configure Android installation
masterThe module requires Android 7.0 (API level 24) or later.
- Set
minSdkVersionto at least24inandroid/app/build.gradle. - Ensure you have
android.permission.BLUETOOTHpermissions if using Bluetooth. - Add the Android support library v4 to your dependencies in
android/app/build.gradle:compile "com.android.support:support-v4:$YOUR_VERSION" - Link the module using
react-native link react-native-incall-manageror manually follow the manual linking steps in the documentation.
// android/app/build.gradle
dependencies {
compile "com.android.support:support-v4:$YOUR_VERSION"
compile(project(':react-native-incall-manager'))
}