android
文章平均质量分 65
kf42470
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Google Play 之 deviceId
有时候我们在Google Play上无法下载软件,总停留在 downloading… 界面,有时候恢复出厂设置又可以下载了,这是为什么呢?在Google Play上下载一个应用程序发出的URL请求,可以参考Tim Strazzere的博文 Downloading market applications without the vending app 其中涉及到一个参数手机设备号,与An转载 2012-06-07 17:16:08 · 3719 阅读 · 0 评论 -
Programming access to Google Play
如果你在google play上发布了程序,怎么通过程序访问,查看程序的信息呢?谷歌大神为我们提供了--An open-source API for the Android Market,另外,也给Ruby和PHP都留了接口,当然了访问是需要Google帐户滴,更多信息请看考:http://code.google.com/p/android-market-api/ android-mark转载 2012-06-07 16:46:49 · 791 阅读 · 0 评论 -
Android 联网监控抓包工具的制作(tcpdump的使用)
最近做一个Android联网抓包的工具自己在网上搜索了好久发现还是没有头绪于是考虑在linux层上下功夫 于是采用linux的tcpdump来实现了抓包的功能用简单的话来定义tcpdump,就是:dump the traffic on a network,根据使用者的定义对网络上的数据包进行截获的包分析工具。 作为互联网上经典的的系统管理员必备工具,tcp转载 2012-06-07 16:41:09 · 835 阅读 · 0 评论 -
Downloading market applications without the vending app
It turns out downloading a free application is actually pretty easy to reproduce. The things required by the google android servers are just four variables. The server needs to know youruserId,authT转载 2012-06-07 16:52:20 · 735 阅读 · 0 评论 -
android 源码编译 出现 Error occurred during initialization of VM 错误
最近在Ubuntu下下载了一份android最新源码,打算编译一下,在编译过程中出现Error occurred during initialization of VM Could not reserve enough space for object heap,是堆出现了问题,内存问题,查了一些资源,发现需要修改build/core/definitions.mk中的$(if $(fin转载 2012-06-13 17:19:23 · 2807 阅读 · 0 评论 -
android 源码下载DownloadError: android.googlesource.com: <urlopen error [Errno 110] Connection timed out
因为之前的虚拟机奔溃,再次下载时回报DownloadError: android.googlesource.com: 错误,DownloadError: android.googlesource.com: 经过官网查找原因,发现Using authenticationBy default, access to the Android source code is anonymous原创 2012-06-14 18:05:20 · 3026 阅读 · 0 评论 -
【Android】获取手机中已安装apk文件信息(PackageInfo、ResolveInfo)(应用图片、应用名、包名等) .
众所周知,通过PackageManager可以获取手机端已安装的apk文件的信息,具体代码如下PackageManager packageManager = this.getPackageManager(); List packageInfoList = packageManager.getInstalledPackages(0); PackageManager p转载 2012-07-05 18:17:13 · 1337 阅读 · 0 评论 -
AndroidManifest.xml各种属性详解
一、关于AndroidManifest.xmlAndroidManifest.xml 是每个android程序中必须的文件。它位于整个项目的根目录,描述了package中暴露的组件(activities, services, 等等),他们各自的实现类,各种能被处理的数据和启动位置。 除了能声明程序中的Activities, ContentProviders, Services, 和Inte转载 2012-07-14 17:21:53 · 735 阅读 · 0 评论
分享