Alright so after doing some troubleshooting I figured out that it was my android permissions that were restricting the number devices my app was compatible with.
It turns out the default Android Permissions that appery.io set are not default for tablets.
I removed all permissions since my app did not require any and the app was compatible with most all devices.
The issue now was that my app crashed after loading and I found out that I needed a minimum set of permissions in order for the app to work.
uses-permission android:name="android.permission.INTERNET"
uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"
uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"