123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- // Top-level build file where you can add configuration options common to all sub-projects/modules.
- buildscript {
- ext {
- buildToolsVersion = "33.0.0"
- minSdkVersion = 23
- compileSdkVersion = 34
- targetSdkVersion = 34
- // We use NDK 23 which has both M1 support and is the side-by-side NDK version from AGP.
- ndkVersion = "23.1.7779620"
- }
- repositories {
- google()
- mavenCentral()
- }
- dependencies {
- classpath("com.android.tools.build:gradle")
- classpath("com.facebook.react:react-native-gradle-plugin")
- }
- }
- allprojects {
- repositories {
- // Add the following lines to include the Nexilis UC repository into your app
- maven {
- url "https://nexilis.io/artifactory/nexilis-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/security-libs/"
- credentials {
- username = "**REPLACE*WITH*YOUR*MAVEN*USERNAME**"
- password = "**REPLACE*WITH*YOUR*MAVEN*PASSWORD**"
- }
- }
- maven { url 'https://maven.google.com' }
- maven { url 'https://jitpack.io' }
- }
- }
|