about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJoão Ferreiro <ferreiro@pinkroom.dev>2022-12-14 15:42:49 +0000
committerPaul Frazee <pfrazee@gmail.com>2022-12-19 19:19:00 -0600
commit0726350570f563c7a828326e66ca01d5cc7ae744 (patch)
tree2daa60af1b73ac0f1f8b68c2c62f7a6886c4d205
parent0d7385a41a9af08dc3c8f290d5b1e087aa461ef7 (diff)
downloadvoidsky-0726350570f563c7a828326e66ca01d5cc7ae744.tar.zst
fix android build
-rw-r--r--android/build.gradle7
1 files changed, 4 insertions, 3 deletions
diff --git a/android/build.gradle b/android/build.gradle
index e997cb0e6..e4b4bd7bd 100644
--- a/android/build.gradle
+++ b/android/build.gradle
@@ -4,10 +4,10 @@ import org.apache.tools.ant.taskdefs.condition.Os
 
 buildscript {
     ext {
-        buildToolsVersion = "31.0.0"
+        buildToolsVersion = "33.0.0"
         minSdkVersion = 21
-        compileSdkVersion = 31
-        targetSdkVersion = 31
+        compileSdkVersion = 33
+        targetSdkVersion = 33
 
         if (System.properties['os.arch'] == "aarch64") {
             // For M1 Users we need to use the NDK 24 which added support for aarch64
@@ -49,5 +49,6 @@ allprojects {
         }
         google()
         maven { url 'https://www.jitpack.io' }
+        maven { url 'https://maven.google.com' }
     }
 }