随笔分类 -  Android

OpenMobile's Application Compatibility Layer (ACL)
摘要:http://openmobileww.com/products.phpOpenMobile's Application Compatibility Layer (ACL)™ has the power to transform your platform of choice into a vibrant ecosystem with access to 500,000+ Apps. ACL has been designed to run on mobile operating systems such as Tizen, MeeGo, Bada, Windows, Linux, a 阅读全文

posted @ 2013-05-14 10:01 androidme 阅读(686) 评论(0) 推荐(0) 编辑

Samsung’s New S-Voice Is Just A Skinned Version Of Vlingo Labs Beta on Google Play
摘要:http://www.gizmofusion.com/2012/05/samsungs-new-s-voice-is-just-a-skinned-version-of-vlingo-labs-beta-on-google-play/All the rage these days are those virtual assistant apps that you see popping up everywhere, all of them trying to compete with Apple’s Siri which is built into the iPhone 4S. I perso 阅读全文

posted @ 2012-05-22 16:41 androidme 阅读(223) 评论(0) 推荐(0) 编辑

Speaker Verification Could Change Mobile Security
摘要:http://thenextweb.com/microsoft-ie9/2012/05/09/sensory/When you think about how you’re interacting with your consumer electronics, it’s almost second nature for us to use some sort of voice recognition these days. While it’s arguable as to which system is “the best”, a company called Sensory is hopi 阅读全文

posted @ 2012-05-15 11:46 androidme 阅读(172) 评论(0) 推荐(0) 编辑

Sensory’s TrulyHandsfree Is Detailed, Makes Samsung’s S Voice Look Even More Impressive
摘要:http://www.talkandroid.com/111555-sensorys-trulyhandsfree-is-detailed-makes-samsungs-s-voice-look-even-more-impressive/As our smartphones become well, smarter— there’s a need for the smartphone technology to evolve as well. Among the cooler features of most smartphones is voice and speech recognitio 阅读全文

posted @ 2012-05-15 11:38 androidme 阅读(231) 评论(0) 推荐(0) 编辑

ARM反汇编笔记贴
摘要:http://bbs.pediy.com/showthread.php?t=129004最快的学习,莫过于对着代码找,那么,从google上下载了os_monitor的apk和源代码 把apk改zip解压,然后到\lib\armeabi找到libosmonitor.so,用IDA打开呗. 打开源代码的jni文件夹,随便找一个函数,我找的是JNI_OnUnload:void JNI_OnUnload(JavaVM* vm, void* reserved){ JNIEnv *env; jclass cls; if ((*vm)->GetEnv(vm, (void **) &env, 阅读全文

posted @ 2012-03-27 23:26 androidme 阅读(653) 评论(0) 推荐(0) 编辑

用于LaTeX的smali语法高亮文件
摘要:http://blog.claudxiao.net/2012/01/smali_syntax_for_latex/smali是对Dalvik虚拟机指令集的一种汇编语法,基于jasmin语法修改而来。在LaTeX中引用代码,一般使用listings宏包,最后一定修订于1999年的listings显然不会支持smali高亮,所以我写了这样一个文件,下载地址:http://code.google.com/p/amatutor/source/browse/smali.sty效果如下:其中关键词和配色方案参考了lohan+在其博客http://androidcracking.blogspot.com中提 阅读全文

posted @ 2012-03-27 22:45 androidme 阅读(420) 评论(0) 推荐(0) 编辑

几个Google的jar包
摘要:http://mytracks.googlecode.com/hg-history/v1.0.17/MyTracks/libs/google-common.jarhttp://mytracks.googlecode.com/hg-history/v1.0.17/MyTracks/libs/accounts.jarhttp://mytracks.googlecode.com/hg-history/v1.0.17/MyTracks/libs/googleloginclient-helper.jarhttp://mytracks.googlecode.com/hg/MyTracksLib/libs/ 阅读全文

posted @ 2012-03-14 11:30 androidme 阅读(614) 评论(0) 推荐(0) 编辑

kandroid - 很多关于Android知识的文档
摘要:www.kandroid.org/可惜有些是韩文的,碰到韩文就翻译一下吧,有些文档很不错,在其他地方没见到过。 阅读全文

posted @ 2012-03-13 21:21 androidme 阅读(235) 评论(0) 推荐(0) 编辑

Android Visualizer
摘要:https://github.com/felixpalmer/android-visualizerA View subclass that Takes the input from the Android MediaPlayer and displays visualizations, like in iTunes or WinAmpThe Visualizer is designed to be modular, so it is very easy to combine visualizations to create more complex effects.It's easy 阅读全文

posted @ 2012-03-13 16:58 androidme 阅读(999) 评论(0) 推荐(1) 编辑

[AndroidTips]startService与bindService的区别
摘要:Service的生命周期方法比Activity少一些,只有onCreate, onStart, onDestroy我们有两种方式启动一个Service,他们对Service生命周期的影响是不一样的。1 通过startService Service会经历 onCreate --> onStart stopService的时候直接onDestroy 如果是 调用者 直接退出而没有调用stopService的话,Service会一直在后台运行。 下次调用者再起来仍然可以stopService。2 通过bindService Service只会运行onCreate, 这个时候 调用者和Servi 阅读全文

posted @ 2012-03-13 13:32 androidme 阅读(3439) 评论(0) 推荐(1) 编辑

[Android]JNI Tips
摘要:http://developer.android.com/guide/practices/design/jni.htmlJNI TipsJNI is the Java Native Interface. It defines a way for managed code (written in the Java programming language) to interact with native code (written in C/C++). It's vendor-neutral, has support for loading code from dynamic share 阅读全文

posted @ 2012-03-11 19:51 androidme 阅读(857) 评论(1) 推荐(1) 编辑

几种ARM反汇编器
摘要:http://blog.claudxiao.net/2011/12/arm-disassemblers/最近在为androguard实现ARM反汇编和ARM漏洞利用代码检测的功能。Anthony告诉我三种方案:smiasm、radare、IDAPython。前段时间尝试了这些方法,各有优劣。归纳如下:方案开源支持Thumb递归反汇编提供指令详情smiasm是否是是radare是是否否IDAPython否是是是下面是详细情况:smiasmsmiasm是一个纯Python的反汇编框架。它由三个子项目构成,其中elfesteem实现ELF和PE格式解析,miasm实现反汇编。smiasm的代码使用了 阅读全文

posted @ 2012-03-10 23:44 androidme 阅读(3520) 评论(0) 推荐(1) 编辑

IDA - Support for Android
摘要:http://www.hex-rays.com/products/ida/6.1/index.shtmlSupport for AndroidThe long awaited Android support in IDA is ready! The new version can disassemble Android bytecode (Dalvik). An IDA user kindly contributed the processor module and file loader (thank you!) A screenshot for your pleasure:Dalvik.. 阅读全文

posted @ 2012-03-10 23:10 androidme 阅读(369) 评论(0) 推荐(0) 编辑

Practice of Android Reverse Engineering
摘要:http://0xlab.org/~jserv/android-reverse.pdfhttps://deepsec.net/docs/Slides/DeepSec_2010_Reverse_Forensics.pdfhttp://www.slideshare.net/jserv/practice-of-android-reverse-engineering 阅读全文

posted @ 2012-03-10 22:19 androidme 阅读(301) 评论(0) 推荐(0) 编辑

[AndroidTips]jni读取assets资源文件
摘要:http://blog.csdn.net/fontlose/article/details/6686161assets目录底下的文件会被打包到一个apk文件里,这些资源在安装时他们并没被解压,使用时是直接从apk中读取的。这里介绍下怎么在jni内使用 ndk自带api的接口函数读取assets资源文件,和libzip库函数的使用,可以用来读创建修改压缩文档,这里也是以读取apk安装包内的资源文 件为例。1 用ndk自带的接口函数读apk包,从2.3开始提供这些接口函数,具体看头文件assert.h android/asset_manager.h android/asset_manager_jn 阅读全文

posted @ 2012-03-10 20:04 androidme 阅读(1178) 评论(0) 推荐(1) 编辑

use addr2line in android
摘要:Let's say that logcat show you the following crash log (this is from one of my projects):I/DEBUG ( 31): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***I/DEBUG ( 31): Build fingerprint: 'generic/sdk/generic:2.3/GRH55/79397:eng/test-keys'I/DEBUG ( 31): pid: 378, tid: 386 &g 阅读全文

posted @ 2012-03-10 18:04 androidme 阅读(698) 评论(0) 推荐(0) 编辑

Android ndk-stack tool
摘要:Android ndk-stack tool----------------------Introduction:-------------This document describes the 'ndk-stack' tool that is distributed withthe Android NDK, since release r6.Overview:---------'ndk-stack' is a simple tool that allows you to filter stack traces as theyappear in the outp 阅读全文

posted @ 2012-03-10 17:57 androidme 阅读(1640) 评论(0) 推荐(1) 编辑

A step-by-step guide for debugging native code, by Carlos Souto
摘要:http://www.eclipse.org/sequoyah/documentation/native_debug.phpPre-requisites0) Sequoyah Native Debug feature must be installed.You can install it from Sequoyah update site:It will install CDT's dependencies if needed:1) The platform must be Android 2.2 (android-8)2) The ndk version must be r4b ( 阅读全文

posted @ 2012-03-09 23:24 androidme 阅读(399) 评论(0) 推荐(0) 编辑

Using cgdb with ndk-debug (and cgdb tutorial)
摘要:http://mhandroid.wordpress.com/2011/01/23/using-cgdb-with-ndk-debug-and-cgdb-tutorial/Android ndk (http://developer.android.com/sdk/ndk/index.html) comes withndk-gdbcommand that startsgdbdebugger and connects it to Android application.cgdb(http://cgdb.sourceforge.net/) is superior console front-end 阅读全文

posted @ 2012-03-09 23:23 androidme 阅读(324) 评论(0) 推荐(0) 编辑

Using Eclipse for Android C/C++ Debugging
摘要:http://mhandroid.wordpress.com/2011/01/23/using-eclipse-for-android-cc-debugging/Yes. You can use Eclipse for debugging of C/C++ code. I personally prefercgdbbut if you want to debug in Eclipse here is how.See myprevious spothow to set upcgdbdebugger if you think it will suit you.See myblog spothow 阅读全文

posted @ 2012-03-09 23:20 androidme 阅读(713) 评论(0) 推荐(0) 编辑

导航

点击右上角即可分享
微信分享提示