I’ve pushed my APK to Google Play. Everything looks fine except this
Design your app for tablets
"Your Production APK needs to meet the following criteria:
Your APK should only require hardware features that are usually available on tablets."
"Designing your app for tablets can help you reach more customers on a wider variety of devices. Apps that are designed for tablets are showcased in the 'Designed for tablets' list in the Play Store."
(with a link pointing to http://developer.android.com/distribute/essentials/quality/tablets.html#hardware-requirements )
I removed some of the (what I think are) unnecessary permissions and run the build.bat. And my AndroidManifest.xml looks like
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
I read data
Uno.IO.File.ReadAllText(Uno.IO.Directory.GetUserDirectory(Uno.IO.UserDirectory.Data) + settingsFile);
And write
Uno.IO.File.WriteAllText(Uno.IO.Directory.GetUserDirectory(Uno.IO.UserDirectory.Data) + settingsFile, text);
Plus I use the Uno.Net.Http.HttpMessageHandler to communicate with my server, so therefor I need the interwebz. The internet isn’t mandatory though. The app works just fine without it.
Do you know what else I should write to my manifest to make the apk valid for tablets?