1
0
silverbullet/mobile/android/build.gradle
Joe McCall a77dec8346
Update Android build (#382)
* Update the SDK compile version to 33 to fix dependency issues
* Update the Build plugin as a dependency

Co-authored-by: Joe McCall <joemccall@intrepid-networks.com>
2023-04-05 09:58:32 +02:00

30 lines
637 B
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.4.2'
classpath 'com.google.gms:google-services:4.3.13'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
apply from: "variables.gradle"
allprojects {
repositories {
google()
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}