"android "
if you get these errors


- in android/build.gradle
add
allprojects {
repositories {
mavenLocal()
maven {
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
url("$rootDir/../node_modules/react-native/android")
}
maven {
// Android JSC is installed from npm
url("$rootDir/../node_modules/jsc-android/dist")
}
google()
jcenter()
maven { url 'https://www.jitpack.io' }
/***************PAYTABS*************/
maven {
url "https://dl.bintray.com/paytabsandroidsdk/paytabs-sdk"
}
maven { url "http://pay.cards/maven" }
/****************************/
}
}
- in android/app/build.gradle
android: {
/PAYTABS/
configurations.all {
resolutionStrategy {
exclude group: "org.jetbrains.kotlinx", module: "kotlinx-coroutines-debug"
}
}
packagingOptions {
pickFirst '/.so'
}
/***************************/
}
at the end make clean and rebuild then run
"ios"
if you get this error

- you must create bridge header file -
Right click on your root project in the Project Navigator
Select 'New File'
Select a 'Swift File'
Give it a name of 'BridgeHeader' (you don't need to specify the .swift - it'll add the extension automatically)
at the end make clean then run
"android "
if you get these errors
add
allprojects {
repositories {
mavenLocal()
maven {
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
url("$rootDir/../node_modules/react-native/android")
}
maven {
// Android JSC is installed from npm
url("$rootDir/../node_modules/jsc-android/dist")
}
}
android: {
/PAYTABS/
configurations.all {
resolutionStrategy {
exclude group: "org.jetbrains.kotlinx", module: "kotlinx-coroutines-debug"
}
}
packagingOptions {
pickFirst '/.so'
}
/***************************/
}
at the end make clean and rebuild then run
"ios"
if you get this error
Right click on your root project in the Project Navigator
Select 'New File'
Select a 'Swift File'
Give it a name of 'BridgeHeader' (you don't need to specify the .swift - it'll add the extension automatically)
at the end make clean then run