databag/app/mobile/android/build.gradle

35 lines
919 B
Groovy
Raw Normal View History

2022-01-14 07:59:53 +00:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
2023-02-15 19:45:36 +00:00
buildToolsVersion = "33.0.0"
minSdkVersion = 24
2023-02-15 19:45:36 +00:00
compileSdkVersion = 33
targetSdkVersion = 33
kotlinVersion = "1.5.20"
2022-09-06 21:38:53 +00:00
2023-02-15 19:45:36 +00:00
// We use NDK 23 which has both M1 support and is the side-by-side NDK version from AGP.
ndkVersion = "23.1.7779620"
2022-01-14 07:59:53 +00:00
}
repositories {
google()
mavenCentral()
}
dependencies {
2023-02-15 19:45:36 +00:00
classpath 'com.google.gms:google-services:4.3.15'
classpath("com.android.tools.build:gradle:7.3.1")
classpath("com.facebook.react:react-native-gradle-plugin")
2022-01-14 07:59:53 +00:00
}
}
allprojects {
repositories {
maven {
url "https://www.jitpack.io"
content {
includeModule 'com.github.UnifiedPush', 'android-connector'
}
}
}
}