Browse Source

hide instant upload icon on Android pre-lollipop

AndyScherzinger 8 years ago
parent
commit
6afeee7535
1 changed files with 5 additions and 0 deletions
  1. 5 0
      src/com/owncloud/android/ui/activity/DrawerActivity.java

+ 5 - 0
src/com/owncloud/android/ui/activity/DrawerActivity.java

@@ -166,6 +166,11 @@ public abstract class DrawerActivity extends ToolbarActivity implements DisplayU
             setupDrawerMenu(mNavigationView);
 
             setupQuotaElement();
+
+            // show folder sync menu item only for Android 5+
+            if (Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP) {
+                mNavigationView.getMenu().removeItem(R.id.nav_folder_sync);
+            }
         }
 
         setupDrawerToggle();