D:\android\adt-bundle-windows-x86-20131019\sdk\platform-tools工具的路径. 安卓工程经过eclipse编译然后通过aapt工具打包生成一个.apk的格式..apk文件里面包含.dex文件(通过dx.bat命令将所有的.class文件变成一个.dex文件),resources资源文件, uncompiled resources比如资产目录下的文件直接打包到apk里面,清单文件.接下来eclipse的debug签名,然后通过adb(adb调…
Android异常:Caused by: java.lang.SecurityException: Neither user 10044 nor current process has android.permission.WAKE_LOCK. 原因:未授权使用唤醒锁. 解决:在AndroidManifest.xml的<manifest>标签中加入: <uses-permission android:name="android.permission.WAKE_LOCK"…
在ICS40以前的版本中,如果程序需要设置APN,只需要在AndroidManifest文件中声明这个权限即可.在40的机器上运行则会抛出以下异常:java.lang.SecurityException: No permission to write APN settings: Neither user *** nor current process has android.permission.WRITE_APN_SETTINGS. 原因是google基于安全性考虑屏蔽了第三方应用对于APN的…
java.lang.SecurityException: Requires READ_PHONE_STATE: Neither user 10088 nor current process has android.permission.READ_PHONE_STATE.   今天写了一款发短信的软件,拿了个酷派5879,试了下,结果不能用,把try{}catch{}去掉了,报这个错误, android.permission.READ_PHONE_STATE.没有READ_PHONE_STATE权…
今天在物理机上安装centOS6.5  64bit 系统的时候,出现了U盘安装启动出现press the enter key to begin the installation process 就不动弹了: 解决办法如下: 替换U盘中,/syslinux/vesamenu.c32文件 文件共享地址:http://pan.baidu.com/s/1kVk1kIN…
如果通过finish方法结束了一个Activity,那么根据Activity的生命周期,则会自动调用Activity的销毁方法onDestory(),但是在项目中遇到这样的一个问题,就是​Activity在finnish()后,在代码后面还跟上了android.os.Process.killProcess(android.os.Process.myPid())这个方法.则Activity中的onDestory()不会执行,去掉后就正常执行了,我在项目中反复试了几次,的确是这样的.具体原因还不明白…
RT, 异常信息如下: java.lang.SecurityException: getDeviceId: Neither user 10065 nor current process has android.permission.READ_PHONE_STATE. PS: Android Studio 版本:2.3.3 模拟器环境:Genymotion, Android 7.1.1, API 25 原因:动态权限的问题 Android 6.0 (API Level 23) 及以后引入了运行时权…
apk一般占一个dalvik,一个进程,一个task.通过设置也可以多个进程,占多个task. task是一个activity的栈,其中"可能"含有来自多个App的activity 默认情况下,同一个应用程序中的所有组件运行在同一个进程中,而且绝大多数的应用程序也都是这样的.但是,如果我们想要控制让某个特定的组件属于某个进程,我们可以在manifest文件中进行配置. 在 每种组件元素(activity.service.receiver.provider)的manifest条目中,都支…
我们在安装新的 APk 的时候.会出现 Installation error: INSTALL_FAILED_VERSION_DOWNGRADE 原因:  是由于 androidversionCode 的原因,我们手机里面的APP 的 versionCode 高于将要安装的 APP! error: <span style="font-size:18px;">[2015-03-17 16:52:21 - HoleYourBrain] Android Launch! [2015…
1-      Configuration of plugin VSTudio Prerequisite: -Your visual studio MUST be up to date with the last release version in order to launch correctly the VSplugin -Version Express on Visual Studio is not supported (Community is ok) -Flow network ma…