diff --git a/android/app/build.gradle b/android/app/build.gradle
index f0782b8b2e..0920a076d2 100644
--- a/android/app/build.gradle
+++ b/android/app/build.gradle
@@ -135,7 +135,7 @@ android {
compileSdkVersion rootProject.ext.compileSdkVersion
defaultConfig {
- applicationId "com.app"
+ applicationId "xyz.blueskyweb.pubsq"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 1
diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml
index d28d40fd3f..38d83125fc 100644
--- a/android/app/src/main/AndroidManifest.xml
+++ b/android/app/src/main/AndroidManifest.xml
@@ -21,6 +21,15 @@
+
+
+
+
+
+
+
+
+
diff --git a/android/build.gradle b/android/build.gradle
index 5dfc68a632..e997cb0e66 100644
--- a/android/build.gradle
+++ b/android/build.gradle
@@ -22,7 +22,7 @@ buildscript {
mavenCentral()
}
dependencies {
- classpath("com.android.tools.build:gradle:7.0.4")
+ classpath('com.android.tools.build:gradle:7.2.1')
classpath("com.facebook.react:react-native-gradle-plugin")
classpath("de.undercouch:gradle-download-task:4.1.2")
// NOTE: Do not place your application dependencies here; they belong
diff --git a/src/routes/index.tsx b/src/routes/index.tsx
index 5084473ec5..2accd6fb2c 100644
--- a/src/routes/index.tsx
+++ b/src/routes/index.tsx
@@ -51,7 +51,7 @@ const tabBarScreenOptions = ({
headerShown: false,
tabBarIcon: (_state: {focused: boolean; color: string; size: number}) => {
// TODO: icons
- return {route.name.at(0)}
+ return {route.name?.[0] || ''}
},
})