aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIván Ávalos <avalos@disroot.org>2021-12-05 16:37:55 -0600
committerIván Ávalos <avalos@disroot.org>2021-12-05 16:37:55 -0600
commitfd2fc4c0f7f5d9063132b51beab64f70d37298e6 (patch)
treea5e42718a6066f15c6a15c76007a709396f67730
parent477111a55b81a05bfc00857f0d4a3d6534c80396 (diff)
downloadetbsa-trackermap-mobile-fd2fc4c0f7f5d9063132b51beab64f70d37298e6.tar.gz
etbsa-trackermap-mobile-fd2fc4c0f7f5d9063132b51beab64f70d37298e6.tar.bz2
etbsa-trackermap-mobile-fd2fc4c0f7f5d9063132b51beab64f70d37298e6.zip
Added WhirlyGlobeMaply dependency for maps
-rw-r--r--androidApp/build.gradle.kts6
-rw-r--r--androidApp/libs/WhirlyGlobeMaply.aarbin0 -> 7091003 bytes
-rw-r--r--build.gradle.kts3
3 files changed, 7 insertions, 2 deletions
diff --git a/androidApp/build.gradle.kts b/androidApp/build.gradle.kts
index 401d2bf..ccbc6c8 100644
--- a/androidApp/build.gradle.kts
+++ b/androidApp/build.gradle.kts
@@ -22,6 +22,8 @@ android {
dependencies {
implementation(project(":shared"))
implementation("com.google.android.material:material:1.4.0")
- implementation("androidx.appcompat:appcompat:1.3.1")
- implementation("androidx.constraintlayout:constraintlayout:2.1.0")
+ implementation("androidx.appcompat:appcompat:1.4.0")
+ implementation("androidx.constraintlayout:constraintlayout:2.1.2")
+ implementation("com.squareup.okhttp3:okhttp:3.14.2")
+ implementation(group = "", name = "WhirlyGlobeMaply", ext = "aar")
} \ No newline at end of file
diff --git a/androidApp/libs/WhirlyGlobeMaply.aar b/androidApp/libs/WhirlyGlobeMaply.aar
new file mode 100644
index 0000000..644e8ad
--- /dev/null
+++ b/androidApp/libs/WhirlyGlobeMaply.aar
Binary files differ
diff --git a/build.gradle.kts b/build.gradle.kts
index 16806bd..2bc20a8 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -14,6 +14,9 @@ allprojects {
repositories {
google()
mavenCentral()
+ flatDir {
+ dirs("libs")
+ }
}
}