开发者

APK installation on diff versions of OS in android

开发者 https://www.devze.com 2023-03-21 20:12 出处:网络
I have a apk of android 2.3v and i need to install it on the android 2.2v mobile.. will it works on the android 2.2 mobile.plz tell me as soon as possible

I have a apk of android 2.3v and i need to install it on the android 2.2v mobile..

will it works on the android 2.2 mobile.plz tell me as soon as possible

Thanks i开发者_高级运维n advance.


You follow following steps:--

  1. go to manifest file and change the min. sdk like <uses-sdk android:minSdkVersion="4" /> 2 run the app.


You need to set the minSdkVersion in the manifest file maximum to the 2.2's API level. And it will run without problem (if there aren't any problem with your code).

0

精彩评论

暂无评论...
验证码 换一张
取 消