summaryrefslogtreecommitdiff
path: root/android-app/app/build.gradle
diff options
context:
space:
mode:
authorPeter Stone <thepeterstone@gmail.com>2026-03-13 23:04:02 +0000
committerPeter Stone <thepeterstone@gmail.com>2026-03-13 23:04:12 +0000
commit7f89b6d4d0bc4996c0f1802f81abcc23ce47c221 (patch)
tree2725b968ef4a15dee09f51ce676b5481fba35705 /android-app/app/build.gradle
parent3c4e18b94db15fc0d012e12aa3be0d0557f6ad3c (diff)
refactor: update package name to org.terst.nav and setup CI/CD with Firebase App Distribution
Diffstat (limited to 'android-app/app/build.gradle')
-rw-r--r--android-app/app/build.gradle8
1 files changed, 6 insertions, 2 deletions
diff --git a/android-app/app/build.gradle b/android-app/app/build.gradle
index bd903a0..564aa81 100644
--- a/android-app/app/build.gradle
+++ b/android-app/app/build.gradle
@@ -1,14 +1,16 @@
plugins {
id 'com.android.application'
id 'org.jetbrains.kotlin.android'
+ id 'com.google.gms.google-services'
+ id 'com.google.firebase.appdistribution'
}
android {
- namespace 'com.example.androidapp'
+ namespace 'org.terst.nav'
compileSdk 34
defaultConfig {
- applicationId "com.example.androidapp"
+ applicationId "org.terst.nav"
minSdk 24
targetSdk 34
versionCode 1
@@ -47,6 +49,8 @@ android {
}
dependencies {
+ implementation platform('com.google.firebase:firebase-bom:32.7.2')
+ implementation 'com.google.firebase:firebase-analytics-ktx'
implementation 'androidx.core:core-ktx:1.12.0'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.11.0'