You've already forked android-client
mirror of
https://github.com/netbirdio/android-client.git
synced 2026-05-22 17:10:49 -07:00
39 lines
1.3 KiB
Groovy
39 lines
1.3 KiB
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
ext {
|
|
buildToolsVersion = "33.0.0"
|
|
minSdkVersion = 26
|
|
compileSdkVersion = 33
|
|
targetSdkVersion = 33
|
|
|
|
// We use NDK 23 which has both M1 support and is the side-by-side NDK version from AGP.
|
|
ndkVersion = "23.1.7779620"
|
|
// Only using Android Support libraries
|
|
supportLibVersion = "28.0.0"
|
|
}
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
dependencies {
|
|
classpath("com.android.tools.build:gradle:7.4.2")
|
|
classpath("com.facebook.react:react-native-gradle-plugin")
|
|
// Make sure that you have the Google services Gradle plugin dependency
|
|
classpath 'com.google.gms:google-services:4.3.15'
|
|
|
|
//converts Java bytecode into “optimized” dex code
|
|
classpath 'com.android.tools:r8:4.0.48'
|
|
|
|
// Add the dependency for the Crashlytics Gradle plugin
|
|
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.4'
|
|
|
|
classpath "com.google.android.libraries.mapsplatform.secrets-gradle-plugin:secrets-gradle-plugin:2.0.1"
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id 'com.android.application' version '7.4.1' apply false
|
|
id 'com.android.library' version '7.4.1' apply false
|
|
} |