apply plugin: 'com.android.library'

android {
    compileSdkVersion 25
    buildToolsVersion "25.0.3"

    defaultConfig {
        minSdkVersion 16
        targetSdkVersion 25
        versionCode 1
        versionName "1.0"
    }

    lintOptions {
        warning 'InvalidPackage' // prevent error: https://github.com/square/okio/issues/58
    }
}

dependencies {
    compile 'com.facebook.react:react-native:+'
    compile 'com.android.support:appcompat-v7:+'
    compile ('com.mercadopago:sdk:2.5.0@aar') {
        transitive = true
        exclude group: "com.squareup.okhttp3", module: 'okhttp-urlconnection'
        exclude group: "com.squareup.okhttp3", module: 'okhttp'
    }
}
