nexo/apps/mattermost/android/build.gradle

49 lines
1.2 KiB
Groovy

buildscript {
ext {
buildToolsVersion = "36.0.0"
minSdkVersion = 24
compileSdkVersion = 36
targetSdkVersion = 36
supportLibVersion = "36.0.0"
kotlinVersion = "2.2.21"
kotlin_version = kotlinVersion
firebaseVersion = "24.1.0"
ndkVersion = "27.1.12297006"
}
repositories {
mavenCentral()
mavenLocal()
google()
}
dependencies {
classpath("com.android.tools.build:gradle")
classpath("com.facebook.react:react-native-gradle-plugin")
classpath('com.google.gms:google-services:4.4.2')
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin")
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
configurations.classpath {
resolutionStrategy.activateDependencyLocking()
}
}
allprojects {
repositories {
mavenLocal()
google()
maven {
url "$rootDir/../detox/node_modules/detox/Detox-android"
}
maven { url 'https://jitpack.io' }
}
}
apply plugin: "expo-root-project"
apply plugin: "com.facebook.react.rootproject"
dependencyLocking {
lockAllConfigurations()
}