Skip to content Skip to sidebar Skip to footer

Publishing My First Android App Supported Android Devices 0 On Playstore

I have developed my first android app in Android Studio. I have developed a simple flashLight app. It is working well on multiple devices, but when I publish it to the playstore th

Solution 1:

Change

    minSdkVersion 9
    targetSdkVersion 9

To

    minSdkVersion 9
    targetSdkVersion 23

Also cross check if you really need these (just remove it if you have no good reason for keeping it):

<supports-screensandroid:largeScreens="true"android:normalScreens="true"android:requiresSmallestWidthDp="720"android:resizeable="true"android:smallScreens="true"android:xlargeScreens="true" />

Solution 2:

Your target SDK should always be the latest SDK version you can use. So just change your Build gradle to.

   minSdkVersion 9
   targetSdkVersion 23

Solution 3:

Sometimes the reason for this is a third party library that you have referenced. If you can find which one is it and if you can remove it you can solve the problem.

try removing

compile'commons-io:commons-io:2.4'

Post a Comment for "Publishing My First Android App Supported Android Devices 0 On Playstore"