The iOS side of things in trigger.io allows me to select iPhone, iPad or both when I’m setting the configuration for an app. I know that you can change your AndroidManifest.xml file under normal circumstances to add something like the following
<supports-screens android:smallScreens="false"
android:normalScreens="false"
android:largeScreens="false"
android:xlargeScreens="true" />
Is it possible to edit my AndroidManifest.xml file, so when I upload to the Play Store, only tablet devices are allowed to download and install my application? I’ve tried to edit the one in the forge-workspace//development/ folder, but no luck.
I have trigger.io installed on a Mac, so paths that relate to a Windows install will be of no use to me.
After you used
forge buildto build your app, you’ll find it in the following directory:Afterwards you can use
forge packageto get the app ready for the Play Store. Make sure to edit the manifest file before using forge package and keep it mind that you have to apply those changes each time.