
buildscript {
    repositories {
        jcenter()
        google()
    }

    dependencies {
        classpath 'com.android.tools.build:gradle:3.6.3'
    }

}
allprojects {
    repositories {
        google()
        jcenter()
    }

}

apply plugin: 'com.android.library'

android {
    compileSdkVersion 33
     namespace "com.rnenxrtc"
    defaultConfig {
        minSdkVersion 24
        targetSdkVersion 33
        versionCode 1
        versionName "1.0"
    }
    lintOptions {
        abortOnError false
    }
}

repositories {
    mavenCentral()
    google()
    jcenter()
}

dependencies {
    implementation 'com.facebook.react:react-native:+'

   
    implementation('io.socket:socket.io-client:1.0.0') {
        //Excluding org.json which is provided by Android
        exclude group: 'org.json', module: 'json'
    }
    implementation 'commons-logging:commons-logging:1.2'
    implementation 'android.arch.lifecycle:extensions:1.1.1'
    implementation project(path: ':EnxRtcAndroid')
    implementation project(path: ':LibWebRtc')
}
  