From 2245410d99d61198f77f9c4cc625516d4c39c6a4 Mon Sep 17 00:00:00 2001 From: chrisgarrity Date: Mon, 16 May 2016 10:29:49 -0400 Subject: [PATCH] Update SmallestWidthDp in manifest Changed android:requiresSmallestWidthDp from 600 to 500. Android suggests that 600 is a normal value for 7 inch tablets and up. It turns out that many 7-inch tablets are in the 500-600 range (half of the Amazon ones for example). Fixes #85 --- android/ScratchJr/app/src/main/AndroidManifest.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/ScratchJr/app/src/main/AndroidManifest.xml b/android/ScratchJr/app/src/main/AndroidManifest.xml index f20d5da..5a5c7cd 100644 --- a/android/ScratchJr/app/src/main/AndroidManifest.xml +++ b/android/ScratchJr/app/src/main/AndroidManifest.xml @@ -15,7 +15,7 @@ android:normalScreens="false" android:largeScreens="true" android:xlargeScreens="true" - android:requiresSmallestWidthDp="600" /> + android:requiresSmallestWidthDp="500" />