其实很简单:
首先,下载这个包: http://cid-331479048cf34aad.office.live.com/self.aspx/.Public/201009/android^_market.zip
然后找到SDK目录:android-sdk-windowstools,在CMD下进到此目录,然后运行安装命令,先安装GoogleServicesFramework.apk,再安装Vending.apk即可,命令分别是adb install GoogleServicesFramework.apk和adb install Vending.apk ;分别运行就好了。
Android开发应用程序时,如果应用程序需要访问网络权限,需要在 AndroidManifest.xml 中加入以下代码
如果不知道放在哪个位置,那就放在前边好了。
同样的如果用到其它的权限,也需要作出声明,部分权限列表如下:
android.permission.ACCESS_CHECKIN_PROPERTIES
允许读写访问”properties”表在 checkin数据库中,改值可以修改上传( Allows read/write access to the “properties” table in the checkin database, to change values that get uploaded)
android.permission.ACCESS_COARSE_LOCATION
允许一个程序访问CellID或WiFi热点来获取粗略的位置(Allows an application to access coarse (e.g., Cell-ID, WiFi) location)
android.permission.ACCESS_FINE_LOCATION
允许一个程序访问精良位置(如GPS) (Allows an application to access fine (e.g., GPS) location)
android.permission.ACCESS_LOCATION_EXTRA_COMMANDS
允许应用程序访问额外的位置提供命令(Allows an application to access extra location provider commands)