简体   繁体   English

关于Google Market上的旧版Android

[英]about older android versions on google market

I have developed my app in android 2.2, and put it on google market (munspel-appen). 我已经在android 2.2中开发了我的应用,并将其投放到了Google市场(munspel-appen)。 I could see in the statistics that 4% are using android version 2.1 i dont have access to such device, so I wonder if my app will still work on that older version device if downloaded from market too or is it only working from 2.2 and up? 我可以从统计数据中看到4%的人正在使用Android 2.1版,但我无法访问该设备,所以我想知道我的应用程序是否也可以从市场上下载的旧版本设备上运行,还是只能从2.2版本开始运行? ? How can one tell? 怎么能告诉?

The configuration of your app (https://play.google.com/store/apps/details?id=com.munspel.munspelappen) seems to limit the app to devices with 2.2 and higher. 应用程序的配置(https://play.google.com/store/apps/details?id=com.munspel.munspelappen)似乎将应用程序限制为2.2及更高版本的设备。

Users with a lower OS Version then 2.2. 操作系统版本低于2.2的用户。 can not download your app from google market. 无法从Google Market下载您的应用。

I would test your App in an Android 2.1 Emulator and if it works there change the minSDK for your app to 2.1 and upload an update to the market. 我会在Android 2.1模拟器中测试您的应用,如果可以运行,请将您的应用的minSDK更改为2.1,然后将更新上传到市场。 In that way your app will be available to as much users as possible. 这样一来,您的应用程序将对尽可能多的用户可用。

您可以例如在eclipse中尝试使用android模拟器

Your application may work for 2.1 version provided that your application is compatible with API Level 7 . 只要您的应用程序与API Level 7兼容,您的应用程序就可以使用2.1版本。 Well you can specify android:minSdkVersion=8 in AndroidManifest, (from document)The Android system will prevent the user from installing the application if the system's API Level is lower than the value specified in this attribute, You can try running your application on Emulator running 2.1 version. 好的,您可以在AndroidManifest中指定android:minSdkVersion=8 (来自文档)如果系统的API级别低于此属性中指定的值,则Android系统将阻止用户安装应用程序,您可以尝试在模拟器上运行应用程序运行2.1版本。 read more http://developer.android.com/guide/topics/manifest/uses-sdk-element.html#uses 了解更多http://developer.android.com/guide/topics/manifest/uses-sdk-element.html#uses

If you're willing to pay, there are several companies specializing in testing Android apps on physical devices. 如果您愿意付款,那么有几家公司专门研究在物理设备上测试Android应用程序。 Examples: 例子:

I think there's a lot more in google. 我认为Google还有更多功能。

First, the Market should use the minSdkVersion in your Manifest to filter the apps when searched. 首先,市场应在清单中使用minSdkVersion来搜索应用程序。

To test, you can use an emulator of version 2.1 and see whether it works. 要进行测试,您可以使用2.1版的仿真器并查看其是否有效。

Most probably most of the code will work except those new in 2.2. 除了2.2中的新功能外,大多数代码都可以正常工作。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM