123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- buildscript {
- ext {
- buildToolsVersion = "35.0.0"
- minSdkVersion = 24
- compileSdkVersion = 35
- targetSdkVersion = 34
- ndkVersion = "26.1.10909125"
- kotlinVersion = "1.9.24"
- }
- repositories {
- google()
- mavenCentral()
- maven {
- url "https://nexilis.io/artifactory/ob-in-plugin/"
- credentials {
- username = "**REPLACE*WITH*YOUR*MAVEN*USERNAME**"
- password = "**REPLACE*WITH*YOUR*MAVEN*PASSWORD**"
- }
- }
- }
- dependencies {
- classpath("com.android.tools.build:gradle")
- classpath("com.facebook.react:react-native-gradle-plugin")
- classpath("org.jetbrains.kotlin:kotlin-gradle-plugin")
- classpath("io.nexilis.in-plugin:io.nexilis.in-plugin.gradle.plugin:3.3.7-k")
- }
- }
- apply plugin: "com.facebook.react.rootproject"
- allprojects {
- repositories {
- maven {
- url "https://nexilis.io/artifactory/ob-in-plugin/"
- credentials {
- username = "**REPLACE*WITH*YOUR*MAVEN*USERNAME**"
- password = "**REPLACE*WITH*YOUR*MAVEN*PASSWORD**"
- }
- }
- maven {
- url "https://nexilis.io/artifactory/ob-in-plugin/"
- credentials {
- username = "**REPLACE*WITH*YOUR*MAVEN*USERNAME**"
- password = "**REPLACE*WITH*YOUR*MAVEN*PASSWORD**"
- }
- }
- }
- }
|