diff options
author | Santo Cariotti <santo@dcariotti.me> | 2022-11-22 10:28:32 +0100 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2022-11-22 10:28:32 +0100 |
commit | fe396c506aa1cc2502365a7089cdccee2418a6e8 (patch) | |
tree | 7a0bae16fbffd9e317311d0a0b67fe7f5e0c2bb4 /app/android/build.gradle | |
parent | 23cf79911e20eac981a25dc1c2f839d37f98c296 (diff) |
Add Android
Diffstat (limited to 'app/android/build.gradle')
-rw-r--r-- | app/android/build.gradle | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/app/android/build.gradle b/app/android/build.gradle new file mode 100644 index 0000000..fe3625e --- /dev/null +++ b/app/android/build.gradle @@ -0,0 +1,29 @@ +// 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.2.1' + 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 +} |