
Android开发异常汇总
frank909
爱阅读的程序员,专注于技术思考和分享。关注架构设计、Android 开发、AI、数学、自动驾驶领域,个人公号:Frankcall
展开
-
No enclosing instance of type Test is accessible. Must qualify the allocation with an enclosing inst
No enclosing instance of type Test is accessible. Must qualify the allocation with an enclosing instance of type Test (e.g. x.new A() where x is an instance of Test).最近在尝试写一Demo的时候,碰到这个异常,导致Eclipse报错。原创 2016-03-31 10:31:48 · 12191 阅读 · 0 评论 -
build/core/java.mk 33: *** cts/apps/CtsVerifier: Invalid LOCAL_SDK_VERSION 'current' Choices are: .
刚刚编译4.4.2的源代码时遇到 build/core/java.mk 33: * cts/apps/CtsVerifier: Invalid LOCAL_SDK_VERSION ‘current’ Choices are: . stop. 的错误我代码是同事给我的git仓库地址,他说他上传的时候遗漏了某些代码。我在网上查找答案 网上查找解决方法:You can first try: “rm原创 2016-04-21 12:09:51 · 16072 阅读 · 1 评论 -
java.lang.IllegalStateException: Realm access from incorrect thread. Realm objects can only be acce
java.lang.IllegalStateException: Realm access from incorrect thread. Realm objects can only be accessed on the thread they were created.这两天碰到一个bug,因为自己的不小心。bug如下: 提示出错的代码是这一段:mRealm.executeTran原创 2016-12-12 20:06:26 · 16981 阅读 · 0 评论 -
java.lang.NoClassDefFoundError: com.android.tools.fd.runtime.AppInfo
昨天遇到一坑,在Android Studio上在线调试的时候好好的,结果导出APK,为了图方便,直接从build文件目录下拿到apk装到目标机器上。结果却出现了异常报错的情况。log显示如下: 报错信息是: java.lang.NoClassDefFoundError: com.android.tools.fd.runtime.AppInfo 到这里我就有点懵了,com.android.t原创 2016-12-05 11:43:32 · 13982 阅读 · 0 评论 -
dlopen failed: /data/app/xx/lib/arm/xx.so: has text relocations
刚报了一个错误java.lang.UnsatisfiedLinkError: dlopen failed: /data/app/xx/lib/arm/libxx.so: has text relocations 看这意思是找不到相关的so文件。 但是5.1系统上就是可以正常运行的,6.0却不行。同一份代码,同事的可以,但是我的就不行。后来比较了一下,我与同事的build.gradle文件有点不一原创 2017-04-06 11:58:19 · 16698 阅读 · 2 评论 -
解决 MPAndroidChart 无法引入依赖的问题
刚刚犯了一个低级错误。引用 MPAndroidChart 这个开源的图表库的时候,按照官方的提示去引入依赖库,结果同步的时候,怎么都编译不过。提示的信息就是: Failed to resolve: com.github.PhilJay:MPAndroidChart:v3.0.2可我记得自己明明就按照配置说明进行的配置的啊。先看官方文档。然后,再比较自己的配置文件。buildscript {原创 2017-08-17 10:35:43 · 22976 阅读 · 16 评论