0

I released the software to Google Market, but release supports zero device.I configured the manifest file: android: targetSdkVersion = "15" /> I use Android version 4.1 compiler. Tried many ways or zero device. I hope someone can help solve the problem. Really thank you!

1 Answers1

0

You need minSdkVersion:

<uses-sdk android:targetSdkVersion="17" 
         android:minSdkVersion="4" />
  • Hi , the manifest file I have declared this : ,but don't have userful,It's really Really weird.Can you continue help me ? – user2305691 May 13 '13 at 02:13
  • why you write android:targetSdkVersion="17" ,what is the difference when I write targetSdkVersion="15", I try write android:targetSdkVersion="15" ,someone's android device can download it and install it .why why? I almost collapsed . – user2305691 May 13 '13 at 02:20
  • see the accepted answer here: http://stackoverflow.com/questions/4568267/android-min-sdk-version-vs-target-sdk-version – Patrick Griffin May 16 '13 at 21:39
  • However, as vmironov pointed out above your APK in Google Play should indicate that it is "in Prod". – Patrick Griffin May 16 '13 at 21:41