Your device isn't compatible with this version

I have been testing on my Nexus 7 tablet quite happily so far, moving the apk over manually.

Tonight I uploaded to Play Store to use the testing facilities, however when I try to download it through there I’m getting this message in Play store “Your device isn’t compatible with this version”.

I can however download with another device through Play store. For some reason my Nexus 7 is a no go. Any ideas?

Here are my Android setting in the build.settings

[lua]

    android = {

        permissions = {

            { name = “.permission.C2D_MESSAGE”, protectionLevel = “signature” },

        },

        usesPermissions = {

            “android.permission.INTERNET”,

            “android.permission.GET_ACCOUNTS”,

            “android.permission.RECEIVE_BOOT_COMPLETED”,

            “com.google.android.c2dm.permission.RECEIVE”,

            “.permission.C2D_MESSAGE”,

            --“android.permission.VIBRATE”, – If vibrate on notification I need this?

        },

    },

    androidPermissions = {

        – “android.permission.INTERNET”,

        “android.permission.CAMERA”,

        “android.permission.WRITE_EXTERNAL_STORAGE”, – Need this?

    },

[/lua]

Re-read the build help and added 

[lua]usesFeatures =

        {

            { name = “android.hardware.camera”, required = false },

            { name = “android.hardware.camera.autofocus”, required = false },

        },

[/lua]

and I’m pretty sure that fixed it, compatible devices list jumped up by 1000 or so (takes few hours for Play store to update).

My Nexus 7 has a camera though, so its pretty weird…

Re-read the build help and added 

[lua]usesFeatures =

        {

            { name = “android.hardware.camera”, required = false },

            { name = “android.hardware.camera.autofocus”, required = false },

        },

[/lua]

and I’m pretty sure that fixed it, compatible devices list jumped up by 1000 or so (takes few hours for Play store to update).

My Nexus 7 has a camera though, so its pretty weird…