Android 中和ios中都有code sign.它们的目的一样,都是要保证程序的可靠性,最基本实现原理也一样.但是sign的过程比较不同. 下面记录一点Android sign的重要知识. 请参看Android 官方文档,Signing Your Applications,http://developer.android.com/tools/publishing/app-signing.html 1. The certificate does not need to be signed by…
Code Sign error: Certificate identity 'iPhone Developer: idf (XR9HN3TD7E)' appears more than once in the keychain. The codesign tool requires there only be one. 原因是证书,下载安装重复了,找到安装证书的位置,删除一个就ok了. Code Sign Error: Provisioning Profile can't be found. 右…
Service 简介: Service分为本地服务(LocalService)和远程服务(RemoteService): 1.本地服务依附在主进程上而不是独立的进程,这样在一定程度上节约了资源,另外Local服务因为是在同一进程因此不需要IPC,也不需要AIDL.相应bindService会方便很多.主进程被Kill后,服务便会终止. 2.远程服务为独立的进程,对应进程名格式为所在包名加上你指定的android:process字符串.由于是独立的进程,因此在Activity所在进程被Kill的时…
1.Android using Bundle for sharing variables 注:android中使用Bundle来共享变量,下例中Activity1和Activity2通过bundle共享一个变量myValue Sharing variables between Activities is quite important point during development time of your Application. This Example suppose Acti…
在这篇里我们只聊怎么在android中google map api v2地图上画出路径导航,用mapfragment而不是mapview,至于怎么去申请key,manifest.xml中加入的权限,系统中需要的google play services等另行查看资料,沦落凡间不详述. 参考:https://developers.google.com/maps/documentation/android/intro 首先我们在Activity上加载一个GoogleMap,然后再在Map上画上标记和路…