发布时间:2014-08-25 12:33:33
可以先用eclipse->android tools- >export unsigned application package导出没有签名的包如果是java7,那么要加上这个参数-sigalg SHA1withRSA -digestalg SHA1,不然签名后还是无法安装。jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore xxx.keystore -signedjar out.apk in_unsigned.apk ......【阅读全文】
发布时间:2014-07-04 17:24:05
一、URI 通用资源标志符(Universal Resource Identifier, 简称"URI")。 Uri代表要操作的数据,Android上可用的每种资源 - 图像、视频片段等都可以用Uri来表示。 URI一般由三部分组成: 访问资源的命名机制。 存放资源的主机名。 资源自身的名.........【阅读全文】
发布时间:2014-02-27 15:15:50
bindService + BIND_AUTO_CREATE会创建多个service对像出来,所以最好是先startService,再bind比较好。如何时非要用这种,那就在unbind时清理service,但这样就不能在后台做事了。......【阅读全文】
发布时间:2014-02-21 16:23:32
一值总觉得timer怪怪的,就是不知道怎么解释,这个解释正到好处。TimerTasks are not ideal to use in an android environment because they're not context-aware. If your context goes away, the TimerTask will still wait patiently in the background, eventually firing and potentially crashing your app beca.........【阅读全文】
发布时间:2013-02-28 14:13:34
第一次在google play上发布了apk,后来更新,签名找不到,对不上了,更新不了。google play上unpublish了也不能传同package name的应用,所以会很烦。keytool -genkey -v -keystore my-release-key.keystore -alias alias_name -keyalg RSA -keysize 2048 -validity 10000生成keystore,保存好,一定要记住pa.........【阅读全文】