diff --git a/README.md b/README.md
index 4b076fd7..1ed68718 100644
--- a/README.md
+++ b/README.md
@@ -152,3 +152,30 @@ If you changed the protos.proto you've to execute the ./generate_proto.sh to upd
### Android "Could not find org.jetbrains.kotlin:kotlin-stdlib-jre..."
Change `org.jetbrains.kotlin:kotlin-stdlib-jre` to `org.jetbrains.kotlin:kotlin-stdlib-jdk`
([StackOverflow](https://stackoverflow.com/a/53358817))
+
+
+## Customizing Scanning Screen
+
+### Title in Appbar at top [Android]
+
+Open up : android/app/src/main/**AndroidManifest.xml
+
+After `` closing tag add following:
+```xml
+
+```
+(Replace "My Activity Title" with your desired title)
+
+
+### Hiding Appbar [Android]
+
+Open AndroidManifest.xml like above and add below code after `` closing tag
+
+```xml
+
+```
+