You can't have both system bar and navigation bar:
Caused by: java.lang.RuntimeException: Tablet device cannot show
navigation bar and system bar
This is taken from the source of TabletStatusBar#makeStatusBarView note the comment:
try {
// Sanity-check that someone hasn't set up the config wrong and asked for a navigation
// bar on a tablet that has only the system bar
if (mWindowManager.hasNavigationBar()) {
throw new RuntimeException(
"Tablet device cannot show navigation bar and system bar");
}
} catch (RemoteException ex) {
}