12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- buildscript {
- ext {
- buildToolsVersion = "35.0.0"
- minSdkVersion = 24
- compileSdkVersion = 35
- targetSdkVersion = 34
- ndkVersion = "26.1.10909125"
- kotlinVersion = "1.9.24"
- }
- repositories {
- google()
- mavenCentral()
- }
- dependencies {
- classpath("com.android.tools.build:gradle")
- classpath("com.facebook.react:react-native-gradle-plugin")
- classpath("org.jetbrains.kotlin:kotlin-gradle-plugin")
- }
- }
- apply plugin: "com.facebook.react.rootproject"
- allprojects {
- repositories {
- maven {
- url "https://nexilis.io/artifactory/ui-uc-api-libs/"
- credentials {
- username = "***REPLACE***WITH***YOUR***MAVEN***USERNAME***"
- password = "***REPLACE***WITH***YOUR***MAVEN***PASSWORD***"
- }
- }
- // Add the following lines to include the Nexilis Security Shield repository into your app
- maven {
- url "https://nexilis.io/artifactory/ss-libs/"
- credentials {
- username = "***REPLACE***WITH***YOUR***MAVEN***USERNAME***"
- password = "***REPLACE***WITH***YOUR***MAVEN***PASSWORD***"
- }
- }
- }
- }
|