摘要:SSL Pinning 1. What's SSL Pinning? "SSL Pinning is making sure the client checks the server’s certificate against a known copy of that certificate. Si
阅读全文
摘要:Mobile App Security 1. DATA THEOREM LAB https://datatheorem.github.io/ Data Theorem's technical blog about mobile security and privacy. 2. Android安全中文
阅读全文
摘要:总结Android相关的技术站点和blog 1. http://android-developers.blogspot.com/ 首推这个blog,有时间需要每篇blog读一遍。 2. nlopez http://nlopez.io 3. Famous Blog in Android Applica
阅读全文
摘要:1. Apk的安装和更新过程是怎样的呢?Ref[1]2. 在安装.apk程序包时, .so是如何选择并安装的?这里的选择是指,是如何根据CPU_ABI和CPU_ABI2的值来选择合适的.so的。Ref [2]最近遇到ZTE V975这款机型,它的CPU_ABI和CPU_ABI2值如下:CPU_ABI...
阅读全文
摘要:Annotation 0. Annotation Tricks http://developer.android.com/reference/java/lang/annotation/Annotation.html 0.1 Annotation 接口 "Defines the interface i
阅读全文
摘要:Eclipse hangs at the Android SDK Content Loaderhttp://stackoverflow.com/questions/13489141/eclipse-hangs-at-the-android-sdk-content-loader
阅读全文
摘要:1.cyrilmottierhttp://cyrilmottier.com/http://cyrilmottier.com/about/2.greenrobothttp://greenrobot.me/翻译了很多比较优秀的Blog文章,不过好像是刚刚开始。3. To Be a Guru for An...
阅读全文
摘要:1. Context.getFilesDir()http://developer.android.com/reference/android/content/Context.html#getFilesDir()"Returns the absolute path to the directory o...
阅读全文
摘要:ant1. ant手册翻译ant手册翻译是一项大工程!!!!!!ant在线手册的链接好不明确。2. ant 支持for循环安装ant-contrib Ref[1.1]. 要在ant的build.xml脚本中支持,参考链接Ref[1.2]。下面的build.xml是遍历txt文件,将每一行进行输出的a...
阅读全文
摘要:Refference1.How to understand the directory structure of android root tree?http://stackoverflow.com/questions/9046572/how-to-understand-the-directory-...
阅读全文
摘要:Android平台上工具的总结每个工具的详细使用和深入理解参考每个工具相关的blog。1. Android SDK中提供的工具http://developer.android.com/tools/help/index.html2. aapt 工具的source codeaapt: Android A...
阅读全文
摘要:There is a tools called "dx", this tool can transfer Java Binary Code into Android Dalvik Binary code.In Android, Java Binary Code cannot be recognize...
阅读全文
摘要:Weak Reference, Soft Reference, Phantom Reference 1. Introduction "Weak reference objects, which do not prevent their referents from being made finali
阅读全文
摘要:Custom ViewErrorsE1 在使用自定义CustomView时,出现以下runtime error:Android.View.InflateException: Binary XML File Line #LineNumberSolution: 自定义的View 子类(例如,类名为: F...
阅读全文
摘要:1. NullPointerException1.1 发生该异常的原因。1.2 解决方法有哪几种? try-catch2. Eclipse 中debug/run 两个模式,run 是release模式吗?(类比 iOS的开发)3. listview 卡顿的优化方向有哪些?4. traceview ...
阅读全文
摘要:发布应用3. 为App签名Android 要求App在安装前,需要使用证书(certificate)来进行数字签名(be digitally signed).Android 用证书来标识一个App的作者或者开发商。该证书不需要由证书管理机构(certificate authority)来签发。And...
阅读全文
摘要:1.Android Dependencies,Referenced Libraries,Android Private LibrariesAndroid Private Libraries- Android libraries allows one to store source code and ...
阅读全文
摘要:真机调试Androidhttp://www.cnblogs.com/junqilian/archive/2012/11/08/2760734.html
阅读全文
摘要:1. Android 调试工具之Traceviewhttp://www.cnblogs.com/devinzhang/archive/2011/12/18/2291592.htmlTraceView是性能分析工具。类似Xcode中的Timer instrument。http://www.cnblog...
阅读全文
摘要:1. 如何调试分析Android中发生的tombstonehttp://www.360doc.com/content/12/1017/10/7580194_241974419.shtmltombstone一般是由Dalvik错误,状态监视调试器,C代码以及libc的一些问题导致的。Android T...
阅读全文