diff --git a/src/App.vue b/src/App.vue
index 47401cf1f..80f7e2601 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -24,6 +24,9 @@
+
+ {{ t('deck', 'There is an Android App available, please consider downloading it') }}
+
@@ -76,6 +79,13 @@ export default {
sidebarShown() {
return this.sidebarRouterView || this.sidebarShownState
},
+ isAndroid() {
+ const userAgent = navigator.userAgent || navigator.vendor || window.opera
+ if (/android/i.test(userAgent)) {
+ return true
+ }
+ return false
+ },
},
provide: function() {
return {