Coder Social home page Coder Social logo

alibabacloud-httpdns-android-sdk's Introduction

httpdns

请参考官网文档,了解httpdns功能。https://help.aliyun.com/product/30100.html?spm=a2c4g.750001.list.154.2d0d7b13T0aYuX

注意

productFlavors中normal是**大陆版本,intl是国际版本,end2end用于单元测试

配置初始IP

请在gradle.properties中配置你所使用账号的初始服务IP,否则无法请求

# 大陆默认配置
# 默认 region
REGION=""
# 默认 初始IP(v4)InputYourInitServerIp 替换为启动IP, 有几个就放几个
INIT_SERVERS={"InputYourInitServerIp", "InputYourInitServerIp", "InputYourInitServerIp"}
# 默认 初始IP(v6)InputYourInitServerIp 替换为启动IP, 有几个就放几个
IPV6_INIT_SERVERS={"InputYourInitServerIp"}
# 国际版默认配置
# 默认 region
INTL_REGION="sg"
# 默认 初始IP(v4)InputYourInitServerIp 替换为启动IP, 有几个就放几个
INTL_INIT_SERVERS={"InputYourInitServerIp", "InputYourInitServerIp", "InputYourInitServerIp"}
# 默认 初始IP(v6)InputYourInitServerIp 替换为启动IP, 有几个就放几个
INTL_IPV6_INIT_SERVERS={"InputYourInitServerIp"}
# 缺省 调度IP v4,在初始IP不可用时,启用。InputYourDefaultUpdateServerIp 替换为兜底调度IP, 有几个就放几个
INTL_UPDATE_SERVERS={"InputYourDefaultUpdateServerIp"}
# 缺省 调度IP v6,在初始IP不可用时,启用。InputYourDefaultUpdateServerIp 替换为兜底调度IP, 有几个就放几个
INTL_IPV6_UPDATE_SERVERS={"InputYourDefaultUpdateServerIp"}

配置Demo测试账号

SDK提供了两个Demo,分别是app module和demo module。

app module是旧版demo,测试时需要在 MyApp.java 中需要配置测试账号

    private HttpDnsHolder holderA = new HttpDnsHolder("请替换为测试用A实例的accountId", "请替换为测试用A实例的secret");
    private HttpDnsHolder holderB = new HttpDnsHolder("请替换为测试用B实例的accountId", null);

这里两个实例是为了测试实例之间互不影响,体验只用配置一个

demo module中是全新module,使用Kotlin + MVVM开发,功能更丰富,建议测试时使用新demo进行测试,测试时需要在demo/build.gradle中配置测试账号

buildConfigField "String", "ACCOUNT_ID", "\"请替换为测试用B实例的accountId\""
buildConfigField "String", "SECRET_KEY", "\"请替换为测试用A实例的secret\""

运行测试case

// unit test
./gradlew clean :httpdns-sdk:testEnd2endForTestUnitTest

感谢

本项目中Inet64Util工具类 由Shinelw贡献支持,感谢。

alibabacloud-httpdns-android-sdk's People

Contributors

wangyun137 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

alibabacloud-httpdns-android-sdk's Issues

是否能够弃用android.support-*的依赖

Describe the bug
当前这个包依赖多个android.support-的包,如下
`dependencies {

compileOnly '**com.android.support:appcompat-v7:28.0.0**'

end2endImplementation "org.robolectric:robolectric:3.8"
end2endImplementation 'junit:junit:4.12'
end2endImplementation 'org.mockito:mockito-core:2.15.0'
end2endImplementation 'com.squareup.okhttp3:mockwebserver:3.9.0'
end2endImplementation 'com.android.support:appcompat-v7:28.0.0'

androidTestImplementation 'com.android.support.test:runner:1.0.0'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.0'
androidTestImplementation 'org.mockito:mockito-android:2.15.0'
androidTestImplementation 'com.squareup.okhttp3:mockwebserver:3.9.0'
androidTestImplementation '**com.android.support:appcompat-v7:28.0.0**'

implementation "com.aliyun.ams:alicloud-android-sender:${senderVersion}"
implementation "com.aliyun.ams:alicloud-android-crashdefend:${crashDefendVersion}"
implementation "com.aliyun.ams:alicloud-android-utdid:${utdidVersion}"
implementation "com.aliyun.ams:alicloud-android-beacon:${beaconVersion}"

}`
但现在的大多数APP已经开始团向androidx,并且两者不兼容,我在使用EMAS的其它组件(性能分析等)也遇到类似的问题,是否能够考虑移除此类包的依赖,转而使用androidx.
当前我仍在调研HTTP DNS的使用,也许SDK不会直接报错,但我仍然担心android.support-和androidx的不兼容性,导致APP出现一些难以遇料的错误。
以下引用自google的官方文档对android.support的说明

Note: With the release of Support Library 28.0.0, the android.support-packaged libraries are deprecated and replaced by individually-versioned Jetpack libraries packaged as androidx. The initial 1.0.0 release of the Jetpack libraries provides parity with Support Library 28.0.0 and provides a starting point for migrating to the new androidx packaging.

The existing android.support-packaged libraries will continue to work; however, they will not receive any updates beyond 28.0.0 and will not be compatible with new Jetpack libraries. Historical artifacts (those versioned 27 and earlier, and packaged as android.support) will remain available on Google Maven. All new artifacts will be packaged as androidx and will require migration from android.support to androidx.

We recommend using the androidx libraries in all new projects. You should also consider migrating existing projects to ensure they continue to receive bug fixes and other library improvements.

Additional context
如果担心移除android.support-的包造成breaking change,可以考虑升大版本。

IPRankingTask socket not close

Describe the bug

image

To Reproduce
Steps to reproduce the behavior:

  1. Go to '...'
  2. Click on '....'
  3. Scroll down to '....'
  4. See error

Expected behavior
A clear and concise description of what you expected to happen.

Logs
old version log as below, but the latest code has the same issue:
java.lang.Throwable: Explicit termination method 'close' not called at dalvik.system.CloseGuard.openWithCallSite(CloseGuard.java:288) at dalvik.system.CloseGuard.open(CloseGuard.java:257) at java.net.AbstractPlainSocketImpl.create(AbstractPlainSocketImpl.java:137) at java.net.Socket.createImpl(Socket.java:514) at java.net.Socket.connect(Socket.java:644) at com.alibaba.sdk.android.httpdns.probe.c.a(Unknown Source:22) at com.alibaba.sdk.android.httpdns.probe.c.run(Unknown Source:19) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1137) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)

Environment (please complete the following information):

  • Device: [e.g. Pixel 3]
  • OS: [e.g. Android 10]
  • SDK Version [e.g. 2.0.2]

Additional context
Add any other context about the problem here.

httpdns: request http://null:80/100000/d?host=www.taobao.com&sdk=android_0.0.0.1-local-SNAPSHOT&sid=PSzzR8nQVUdH fail

while i run the demo, i got this issue:

2021-12-15 10:03:50.936 22461-22628/com.aliyun.ams.httpdns.demo D/httpdns: request host www.taobao.com with type v4 extras : null cacheKey null
2021-12-15 10:03:50.937 22461-22628/com.aliyun.ams.httpdns.demo D/test: from sdk: [D]request host www.taobao.com with type v4 extras : null cacheKey null
2021-12-15 10:03:50.937 22461-22628/com.aliyun.ams.httpdns.demo D/httpdns: host www.taobao.com result is null
2021-12-15 10:03:50.938 22461-22628/com.aliyun.ams.httpdns.demo D/test: from sdk: [D]host www.taobao.com result is null
2021-12-15 10:03:50.938 22461-22628/com.aliyun.ams.httpdns.demo D/httpdns: start async ip request for www.taobao.com v4
2021-12-15 10:03:50.939 22461-22628/com.aliyun.ams.httpdns.demo D/test: from sdk: [D]start async ip request for www.taobao.com v4
2021-12-15 10:03:50.940 22461-22628/com.aliyun.ams.httpdns.demo I/httpdns: request host www.taobao.com and return empty immediately
2021-12-15 10:03:50.941 22461-22628/com.aliyun.ams.httpdns.demo D/test: from sdk: [I]request host www.taobao.com and return empty immediately
2021-12-15 10:03:50.941 22461-22628/com.aliyun.ams.httpdns.demo D/tt: cost time: 5
2021-12-15 10:03:50.942 22461-25083/com.aliyun.ams.httpdns.demo D/httpdns: request url http://null:80/100000/d?host=www.taobao.com&sdk=android_0.0.0.1-local-SNAPSHOT&sid=PSzzR8nQVUdH
2021-12-15 10:03:50.943 22461-25083/com.aliyun.ams.httpdns.demo D/test: from sdk: [D]request url http://null:80/100000/d?host=www.taobao.com&sdk=android_0.0.0.1-local-SNAPSHOT&sid=PSzzR8nQVUdH
2021-12-15 10:03:50.959 22461-25083/com.aliyun.ams.httpdns.demo E/httpdns: request http://null:80/100000/d?host=www.taobao.com&sdk=android_0.0.0.1-local-SNAPSHOT&sid=PSzzR8nQVUdH fail, cost 15
2021-12-15 10:03:50.959 22461-25083/com.aliyun.ams.httpdns.demo D/test: from sdk: [W]request http://null:80/100000/d?host=www.taobao.com&sdk=android_0.0.0.1-local-SNAPSHOT&sid=PSzzR8nQVUdH fail, cost 15
2021-12-15 10:03:50.960 22461-25083/com.aliyun.ams.httpdns.demo D/test: from sdk:
2021-12-15 10:03:50.961 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: java.lang.ArrayIndexOutOfBoundsException: length=0; index=0
2021-12-15 10:03:50.961 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at com.alibaba.sdk.android.httpdns.d.d.a(Unknown Source:8)
2021-12-15 10:03:50.962 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at com.alibaba.sdk.android.httpdns.interpret.n.a(Unknown Source:32)
2021-12-15 10:03:50.962 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at com.alibaba.sdk.android.httpdns.g.g.a(Unknown Source:50)
2021-12-15 10:03:50.963 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at com.alibaba.sdk.android.httpdns.g.h.a(Unknown Source:2)
2021-12-15 10:03:50.963 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at com.alibaba.sdk.android.httpdns.g.l.a(Unknown Source:0)
2021-12-15 10:03:50.964 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at com.alibaba.sdk.android.httpdns.g.f.a(Unknown Source:2)
2021-12-15 10:03:50.964 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at com.alibaba.sdk.android.httpdns.g.a.run(Unknown Source:0)
2021-12-15 10:03:50.965 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
2021-12-15 10:03:50.965 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
2021-12-15 10:03:50.966 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at java.lang.Thread.run(Thread.java:923)
2021-12-15 10:03:50.966 22461-25083/com.aliyun.ams.httpdns.demo D/httpdns: request url http://null:80/100000/d?host=www.taobao.com&sdk=android_0.0.0.1-local-SNAPSHOT&sid=PSzzR8nQVUdH
2021-12-15 10:03:50.966 22461-25083/com.aliyun.ams.httpdns.demo D/test: from sdk: [D]request url http://null:80/100000/d?host=www.taobao.com&sdk=android_0.0.0.1-local-SNAPSHOT&sid=PSzzR8nQVUdH
2021-12-15 10:03:50.979 22461-25083/com.aliyun.ams.httpdns.demo E/httpdns: request http://null:80/100000/d?host=www.taobao.com&sdk=android_0.0.0.1-local-SNAPSHOT&sid=PSzzR8nQVUdH fail, cost 13
2021-12-15 10:03:50.980 22461-25083/com.aliyun.ams.httpdns.demo D/test: from sdk: [W]request http://null:80/100000/d?host=www.taobao.com&sdk=android_0.0.0.1-local-SNAPSHOT&sid=PSzzR8nQVUdH fail, cost 13
2021-12-15 10:03:50.980 22461-25083/com.aliyun.ams.httpdns.demo D/test: from sdk:
2021-12-15 10:03:50.980 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: java.lang.ArrayIndexOutOfBoundsException: length=0; index=0
2021-12-15 10:03:50.980 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at com.alibaba.sdk.android.httpdns.d.d.a(Unknown Source:8)
2021-12-15 10:03:50.981 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at com.alibaba.sdk.android.httpdns.interpret.n.a(Unknown Source:32)
2021-12-15 10:03:50.981 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at com.alibaba.sdk.android.httpdns.g.g.a(Unknown Source:50)
2021-12-15 10:03:50.981 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at com.alibaba.sdk.android.httpdns.g.h.a(Unknown Source:2)
2021-12-15 10:03:50.981 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at com.alibaba.sdk.android.httpdns.g.l.a(Unknown Source:0)
2021-12-15 10:03:50.982 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at com.alibaba.sdk.android.httpdns.g.f.a(Unknown Source:2)
2021-12-15 10:03:50.982 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at com.alibaba.sdk.android.httpdns.g.a.run(Unknown Source:0)
2021-12-15 10:03:50.982 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
2021-12-15 10:03:50.982 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
2021-12-15 10:03:50.983 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at java.lang.Thread.run(Thread.java:923)
2021-12-15 10:03:50.983 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: java.net.UnknownHostException: Unable to resolve host "null": No address associated with hostname
2021-12-15 10:03:50.983 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at java.net.Inet6AddressImpl.lookupHostByName(Inet6AddressImpl.java:124)
2021-12-15 10:03:50.984 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at java.net.Inet6AddressImpl.lookupAllHostAddr(Inet6AddressImpl.java:103)
2021-12-15 10:03:50.984 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at java.net.InetAddress.getAllByName(InetAddress.java:1152)
2021-12-15 10:03:50.984 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at com.android.okhttp.Dns$1.lookup(Dns.java:41)
2021-12-15 10:03:50.984 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at com.android.okhttp.internal.http.RouteSelector.resetNextInetSocketAddress(RouteSelector.java:178)
2021-12-15 10:03:50.985 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at com.android.okhttp.internal.http.RouteSelector.nextProxy(RouteSelector.java:144)
2021-12-15 10:03:50.985 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at com.android.okhttp.internal.http.RouteSelector.next(RouteSelector.java:86)
2021-12-15 10:03:50.985 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at com.android.okhttp.internal.http.StreamAllocation.findConnection(StreamAllocation.java:176)
2021-12-15 10:03:50.986 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at com.android.okhttp.internal.http.StreamAllocation.findHealthyConnection(StreamAllocation.java:128)
2021-12-15 10:03:50.986 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at com.android.okhttp.internal.http.StreamAllocation.newStream(StreamAllocation.java:97)
2021-12-15 10:03:50.986 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at com.android.okhttp.internal.http.HttpEngine.connect(HttpEngine.java:289)
2021-12-15 10:03:50.987 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at com.android.okhttp.internal.http.HttpEngine.sendRequest(HttpEngine.java:232)
2021-12-15 10:03:50.987 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at com.android.okhttp.internal.huc.HttpURLConnectionImpl.execute(HttpURLConnectionImpl.java:465)
2021-12-15 10:03:50.987 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at com.android.okhttp.internal.huc.HttpURLConnectionImpl.getResponse(HttpURLConnectionImpl.java:411)
2021-12-15 10:03:50.988 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at com.android.okhttp.internal.huc.HttpURLConnectionImpl.getResponseCode(HttpURLConnectionImpl.java:542)
2021-12-15 10:03:50.988 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at com.alibaba.sdk.android.httpdns.g.c.a(Unknown Source:81)
2021-12-15 10:03:50.988 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at com.alibaba.sdk.android.httpdns.g.h.a(Unknown Source:2)
2021-12-15 10:03:50.988 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at com.alibaba.sdk.android.httpdns.g.g.a(Unknown Source:18)
2021-12-15 10:03:50.988 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at com.alibaba.sdk.android.httpdns.g.h.a(Unknown Source:2)
2021-12-15 10:03:50.989 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at com.alibaba.sdk.android.httpdns.g.g.a(Unknown Source:18)
2021-12-15 10:03:50.989 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at com.alibaba.sdk.android.httpdns.g.h.a(Unknown Source:2)
2021-12-15 10:03:50.989 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at com.alibaba.sdk.android.httpdns.g.g.a(Unknown Source:18)
2021-12-15 10:03:50.989 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at com.alibaba.sdk.android.httpdns.g.h.a(Unknown Source:2)
2021-12-15 10:03:50.990 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at com.alibaba.sdk.android.httpdns.g.l.a(Unknown Source:0)
2021-12-15 10:03:50.990 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at com.alibaba.sdk.android.httpdns.g.f.a(Unknown Source:2)
2021-12-15 10:03:50.990 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at com.alibaba.sdk.android.httpdns.g.a.run(Unknown Source:0)
2021-12-15 10:03:50.990 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
2021-12-15 10:03:50.991 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
2021-12-15 10:03:50.991 22461-25083/com.aliyun.ams.httpdns.demo W/System.err: at java.lang.Thread.run(Thread.java:923)
2021-12-15 10:03:50.992 22461-25083/com.aliyun.ams.httpdns.demo E/httpdns: ip request for www.taobao.com fail
2021-12-15 10:03:50.992 22461-25083/com.aliyun.ams.httpdns.demo D/test: from sdk: [W]ip request for www.taobao.com fail
2021-12-15 10:03:50.992 22461-25083/com.aliyun.ams.httpdns.demo D/test: from sdk:

please review this issue on Android 10: Fatal signal 7 (SIGBUS), code 2 (BUS_ADRERR), fault addr 0xf2696000

04-19 17:06:08.492 2247 19351 F libc : Fatal signal 7 (SIGBUS), code 2 (BUS_ADRERR), fault addr 0xf2696000 in tid 19351 (httpdns worker), pid 2247 (igurationcenter)
04-19 17:06:08.897 19392 19392 F DEBUG : *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
04-19 17:06:08.897 19392 19392 F DEBUG : Build fingerprint: 'XPENG/e28/e28:9/PQ3B.190801.002/root04180451:userdebug/release-keys'
04-19 17:06:08.897 19392 19392 F DEBUG : Revision: '0'
04-19 17:06:08.897 19392 19392 F DEBUG : ABI: 'arm'
04-19 17:06:08.897 19392 19392 F DEBUG : pid: 2247, tid: 19351, name: httpdns worker >>> com.${}.configurationcenter <<<
04-19 17:06:08.897 19392 19392 F DEBUG : signal 7 (SIGBUS), code 2 (BUS_ADRERR), fault addr 0xf2696000
04-19 17:06:08.897 19392 19392 F DEBUG : r0 f2696000 r1 d4dea560 r2 d4dea5dc r3 00000001
04-19 17:06:08.897 19392 19392 F DEBUG : r4 ebf227e0 r5 d4dea6c0 r6 00000020 r7 f2696000
04-19 17:06:08.897 19392 19392 F DEBUG : r8 d4dea6c0 r9 00000000 r10 ebf23340 r11 00000000
04-19 17:06:08.897 19392 19392 F DEBUG : ip f50216cc sp d4dea530 lr f337637b pc f3376a9e
04-19 17:06:09.383 19392 19392 F DEBUG :
04-19 17:06:09.383 19392 19392 F DEBUG : backtrace:
04-19 17:06:09.383 19392 19392 F DEBUG : #00 pc 00023a9e /system/lib/libsqlite.so (walIndexTryHdr+30)
04-19 17:06:09.383 19392 19392 F DEBUG : #1 pc 00023377 /system/lib/libsqlite.so (walIndexReadHdr+70)
04-19 17:06:09.383 19392 19392 F DEBUG : #2 pc 00022dfb /system/lib/libsqlite.so (walTryBeginRead+442)
04-19 17:06:09.383 19392 19392 F DEBUG : #3 pc 00027e11 /system/lib/libsqlite.so (sqlite3PagerSharedLock+120)
04-19 17:06:09.383 19392 19392 F DEBUG : #4 pc 0000c83b /system/lib/libsqlite.so (sqlite3BtreeBeginTrans+622)
04-19 17:06:09.383 19392 19392 F DEBUG : #5 pc 000309bf /system/lib/libsqlite.so (sqlite3VdbeExec+3598)
04-19 17:06:09.383 19392 19392 F DEBUG : #6 pc 0000f645 /system/lib/libsqlite.so (sqlite3_step+484)
04-19 17:06:09.383 19392 19392 F DEBUG : #7 pc 000965e9 /system/lib/libandroid_runtime.so (android::nativeExecute(_JNIEnv
, _jclass
, long long, long long)+8)
04-19 17:06:09.383 19392 19392 F DEBUG : #08 pc 003acf49 /system/framework/arm/boot-framework.oat (offset 0x3aa000) (android.content.res.AssetManager.nativeThemeCopy [DEDUPED]+120)
04-19 17:06:09.383 19392 19392 F DEBUG : #09 pc 00031feb /dev/ashmem/dalvik-jit-code-cache (deleted) (android.database.sqlite.SQLiteConnection.execute+210)
04-19 17:06:09.383 19392 19392 F DEBUG : #10 pc 0006c625 /dev/ashmem/dalvik-jit-code-cache (deleted) (android.database.sqlite.SQLiteConnection.setLocaleFromConfiguration+148)
04-19 17:06:09.383 19392 19392 F DEBUG : #11 pc 0006e7e9 /dev/ashmem/dalvik-jit-code-cache (deleted) (android.database.sqlite.SQLiteConnection.open+216)
04-19 17:06:09.383 19392 19392 F DEBUG : #12 pc 00417f75 /system/lib/libart.so (art_quick_invoke_stub_internal+68)
04-19 17:06:09.384 19392 19392 F DEBUG : #13 pc 003f159f /system/lib/libart.so (art_quick_invoke_stub+226)
04-19 17:06:09.384 19392 19392 F DEBUG : #14 pc 000a1031 /system/lib/libart.so (art::ArtMethod::Invoke(art::Thread
, unsigned int
, unsigned int, art::JValue
, char const
)+136)
04-19 17:06:09.384 19392 19392 F DEBUG : #15 pc 001e8995 /system/lib/libart.so (art::interpreter::ArtInterpreterToCompiledCodeBridge(art::Thread
, art::ArtMethod*, art::ShadowFrame*, unsigned short, art::JValue*)+232)
04-19 17:06:09.384 19392 19392 F DEBUG : #16 pc 001e3671 /system/lib/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+776)
04-19 17:06:09.384 19392 19392 F DEBUG : #17 pc 003ed059 /system/lib/libart.so (MterpInvokeDirect+196)
04-19 17:06:09.384 19392 19392 F DEBUG : #18 pc 0040ae14 /system/lib/libart.so (ExecuteMterpImpl+14484)
04-19 17:06:09.384 19392 19392 F DEBUG : #19 pc 0043f424 /system/framework/boot-framework.vdex (android.database.sqlite.SQLiteConnection.open+10)
04-19 17:06:09.384 19392 19392 F DEBUG : #20 pc 001c7fe9 /system/lib/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.4175568579+352)
04-19 17:06:09.384 19392 19392 F DEBUG : #21 pc 001cc8b7 /system/lib/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+146)
04-19 17:06:09.384 19392 19392 F DEBUG : #22 pc 001e365b /system/lib/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+754)
04-19 17:06:09.384 19392 19392 F DEBUG : #23 pc 003ed1a3 /system/lib/libart.so (MterpInvokeStatic+130)
04-19 17:06:09.384 19392 19392 F DEBUG : #24 pc 0040ae94 /system/lib/libart.so (ExecuteMterpImpl+14612)
04-19 17:06:09.384 19392 19392 F DEBUG : #25 pc 005951b4 /system/framework/boot-framework.vdex (android.database.sqlite.SQLiteConnectionPool.openConnectionLocked+12)
04-19 17:06:09.387 19392 19392 F DEBUG : #26 pc 001c7fe9 /system/lib/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.4175568579+352)
04-19 17:06:09.387 19392 19392 F DEBUG : #27 pc 001cc8b7 /system/lib/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+146)
04-19 17:06:09.387 19392 19392 F DEBUG : #28 pc 001e365b /system/lib/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+754)
04-19 17:06:09.387 19392 19392 F DEBUG : #29 pc 003ed059 /system/lib/libart.so (MterpInvokeDirect+196)
04-19 17:06:09.387 19392 19392 F DEBUG : #30 pc 0040ae14 /system/lib/libart.so (ExecuteMterpImpl+14484)
04-19 17:06:09.387 19392 19392 F DEBUG : #31 pc 0043ef9a /system/framework/boot-framework.vdex (android.database.sqlite.SQLiteConnectionPool.open+6)
04-19 17:06:09.387 19392 19392 F DEBUG : #32 pc 001c7fe9 /system/lib/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.4175568579+352)
04-19 17:06:09.387 19392 19392 F DEBUG : #33 pc 001cc8b7 /system/lib/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+146)
04-19 17:06:09.387 19392 19392 F DEBUG : #34 pc 001e365b /system/lib/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+754)
04-19 17:06:09.387 19392 19392 F DEBUG : #35 pc 003ed059 /system/lib/libart.so (MterpInvokeDirect+196)
04-19 17:06:09.388 19392 19392 F DEBUG : #36 pc 0040ae14 /system/lib/libart.so (ExecuteMterpImpl+14484)
04-19 17:06:09.388 19392 19392 F DEBUG : #37 pc 0043ea78 /system/framework/boot-framework.vdex (android.database.sqlite.SQLiteConnectionPool.open+14)
04-19 17:06:09.388 19392 19392 F DEBUG : #38 pc 001c7fe9 /system/lib/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.4175568579+352)
04-19 17:06:09.388 19392 19392 F DEBUG : #39 pc 001cc8b7 /system/lib/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+146)
04-19 17:06:09.388 19392 19392 F DEBUG : #40 pc 001e365b /system/lib/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+754)
04-19 17:06:09.388 19392 19392 F DEBUG : #41 pc 003ed1a3 /system/lib/libart.so (MterpInvokeStatic+130)
04-19 17:06:09.388 19392 19392 F DEBUG : #42 pc 0040ae94 /system/lib/libart.so (ExecuteMterpImpl+14612)
04-19 17:06:09.388 19392 19392 F DEBUG : #43 pc 00442178 /system/framework/boot-framework.vdex (android.database.sqlite.SQLiteDatabase.openInner+12)
04-19 17:06:09.388 19392 19392 F DEBUG : #44 pc 001c7fe9 /system/lib/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.4175568579+352)
04-19 17:06:09.388 19392 19392 F DEBUG : #45 pc 001cc8b7 /system/lib/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+146)
04-19 17:06:09.388 19392 19392 F DEBUG : #46 pc 001e365b /system/lib/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+754)
04-19 17:06:09.388 19392 19392 F DEBUG : #47 pc 003ed059 /system/lib/libart.so (MterpInvokeDirect+196)
04-19 17:06:09.388 19392 19392 F DEBUG : #48 pc 0040ae14 /system/lib/libart.so (ExecuteMterpImpl+14484)
04-19 17:06:09.388 19392 19392 F DEBUG : #49 pc 004420e6 /system/framework/boot-framework.vdex (android.database.sqlite.SQLiteDatabase.open)
04-19 17:06:09.388 19392 19392 F DEBUG : #50 pc 001c7fe9 /system/lib/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.4175568579+352)
04-19 17:06:09.388 19392 19392 F DEBUG : #51 pc 001cc8b7 /system/lib/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+146)
04-19 17:06:09.388 19392 19392 F DEBUG : #52 pc 001e365b /system/lib/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+754)
04-19 17:06:09.388 19392 19392 F DEBUG : #53 pc 003ed059 /system/lib/libart.so (MterpInvokeDirect+196)
04-19 17:06:09.388 19392 19392 F DEBUG : #54 pc 0040ae14 /system/lib/libart.so (ExecuteMterpImpl+14484)
04-19 17:06:09.388 19392 19392 F DEBUG : #55 pc 0044114a /system/framework/boot-framework.vdex (android.database.sqlite.SQLiteDatabase.openDatabase+98)
04-19 17:06:09.388 19392 19392 F DEBUG : #56 pc 001c7fe9 /system/lib/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.4175568579+352)
04-19 17:06:09.388 19392 19392 F DEBUG : #57 pc 001cc8b7 /system/lib/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+146)
04-19 17:06:09.388 19392 19392 F DEBUG : #58 pc 001e365b /system/lib/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+754)
04-19 17:06:09.389 19392 19392 F DEBUG : #59 pc 003ed1a3 /system/lib/libart.so (MterpInvokeStatic+130)
04-19 17:06:09.389 19392 19392 F DEBUG : #60 pc 0040ae94 /system/lib/libart.so (ExecuteMterpImpl+14612)
04-19 17:06:09.389 19392 19392 F DEBUG : #61 pc 0059668c /system/framework/boot-framework.vdex (android.database.sqlite.SQLiteDatabase.openDatabase+8)
04-19 17:06:09.389 19392 19392 F DEBUG : #62 pc 001c7fe9 /system/lib/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.4175568579+352)
04-19 17:06:09.389 19392 19392 F DEBUG : #63 pc 001cc8b7 /system/lib/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+146)
04-19 17:06:09.389 19392 19392 F DEBUG : #64 pc 001e365b /system/lib/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+754)
04-19 17:06:09.389 19392 19392 F DEBUG : #65 pc 003ed1a3 /system/lib/libart.so (MterpInvokeStatic+130)
04-19 17:06:09.389 19392 19392 F DEBUG : #66 pc 0040ae94 /system/lib/libart.so (ExecuteMterpImpl+14612)
04-19 17:06:09.389 19392 19392 F DEBUG : #67 pc 0044251e /system/framework/boot-framework.vdex (android.database.sqlite.SQLiteOpenHelper.getDatabaseLocked+166)
04-19 17:06:09.389 19392 19392 F DEBUG : #68 pc 001c7fe9 /system/lib/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.4175568579+352)
04-19 17:06:09.389 19392 19392 F DEBUG : #69 pc 001cc8b7 /system/lib/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+146)
04-19 17:06:09.389 19392 19392 F DEBUG : #70 pc 001e365b /system/lib/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+754)
04-19 17:06:09.389 19392 19392 F DEBUG : #71 pc 003ed059 /system/lib/libart.so (MterpInvokeDirect+196)
04-19 17:06:09.389 19392 19392 F DEBUG : #72 pc 0040ae14 /system/lib/libart.so (ExecuteMterpImpl+14484)
04-19 17:06:09.389 19392 19392 F DEBUG : #73 pc 004427ee /system/framework/boot-framework.vdex (android.database.sqlite.SQLiteOpenHelper.getReadableDatabase+4)
04-19 17:06:09.389 19392 19392 F DEBUG : #74 pc 001c7fe9 /system/lib/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.4175568579+352)
04-19 17:06:09.389 19392 19392 F DEBUG : #75 pc 001cc8b7 /system/lib/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+146)
04-19 17:06:09.389 19392 19392 F DEBUG : #76 pc 001e365b /system/lib/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+754)
04-19 17:06:09.389 19392 19392 F DEBUG : #77 pc 003ec1c7 /system/lib/libart.so (MterpInvokeVirtual+442)
04-19 17:06:09.389 19392 19392 F DEBUG : #78 pc 0040ad14 /system/lib/libart.so (ExecuteMterpImpl+14228)
04-19 17:06:09.389 19392 19392 F DEBUG : #79 pc 0026ed12 /data/dalvik-cache/arm/system@app@xp_ConfigurationCenter@[email protected] (com.alibaba.sdk.android.httpdns.b.d.a+98)
04-19 17:06:09.389 19392 19392 F DEBUG : #80 pc 001c7fe9 /system/lib/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.4175568579+352)
04-19 17:06:09.389 19392 19392 F DEBUG : #81 pc 001cc8b7 /system/lib/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+146)
04-19 17:06:09.390 19392 19392 F DEBUG : #82 pc 001e365b /system/lib/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+754)
04-19 17:06:09.390 19392 19392 F DEBUG : #83 pc 003ec1c7 /system/lib/libart.so (MterpInvokeVirtual+442)
04-19 17:06:09.390 19392 19392 F DEBUG : #84 pc 0040ad14 /system/lib/libart.so (ExecuteMterpImpl+14228)
04-19 17:06:09.390 19392 19392 F DEBUG : #85 pc 0026f03a /data/dalvik-cache/arm/system@app@xp_ConfigurationCenter@[email protected] (com.alibaba.sdk.android.httpdns.b.d.b+6)
04-19 17:06:09.390 19392 19392 F DEBUG : #86 pc 001c7fe9 /system/lib/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.4175568579+352)
04-19 17:06:09.390 19392 19392 F DEBUG : #87 pc 001cc8b7 /system/lib/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+146)
04-19 17:06:09.390 19392 19392 F DEBUG : #88 pc 001e365b /system/lib/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+754)
04-19 17:06:09.390 19392 19392 F DEBUG : #89 pc 003ec1c7 /system/lib/libart.so (MterpInvokeVirtual+442)
04-19 17:06:09.390 19392 19392 F DEBUG : #90 pc 0040ad14 /system/lib/libart.so (ExecuteMterpImpl+14228)
04-19 17:06:09.390 19392 19392 F DEBUG : #91 pc 0026e57c /data/dalvik-cache/arm/system@app@xp_ConfigurationCenter@[email protected] (com.alibaba.sdk.android.httpdns.b.a.b+12)
04-19 17:06:09.390 19392 19392 F DEBUG : #92 pc 001c7fe9 /system/lib/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.4175568579+352)
04-19 17:06:09.390 19392 19392 F DEBUG : #93 pc 001cc8b7 /system/lib/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+146)
04-19 17:06:09.390 19392 19392 F DEBUG : #94 pc 001e365b /system/lib/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+754)
04-19 17:06:09.390 19392 19392 F DEBUG : #95 pc 003ecd95 /system/lib/libart.so (MterpInvokeInterface+1020)
04-19 17:06:09.390 19392 19392 F DEBUG : #96 pc 0040af14 /system/lib/libart.so (ExecuteMterpImpl+14740)
04-19 17:06:09.390 19392 19392 F DEBUG : #97 pc 0026e696 /data/dalvik-cache/arm/system@app@xp_ConfigurationCenter@[email protected] (com.alibaba.sdk.android.httpdns.b.b.b+10)
04-19 17:06:09.390 19392 19392 F DEBUG : #98 pc 001c7fe9 /system/lib/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.4175568579+352)
04-19 17:06:09.390 19392 19392 F DEBUG : #99 pc 001cc8b7 /system/lib/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+146)
04-19 17:06:09.390 19392 19392 F DEBUG : #100 pc 001e365b /system/lib/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+754)
04-19 17:06:09.390 19392 19392 F DEBUG : #101 pc 003ed1a3 /system/lib/libart.so (MterpInvokeStatic+130)
04-19 17:06:09.390 19392 19392 F DEBUG : #102 pc 0040ae94 /system/lib/libart.so (ExecuteMterpImpl+14612)
04-19 17:06:09.390 19392 19392 F DEBUG : #103 pc 00270656 /data/dalvik-cache/arm/system@app@xp_ConfigurationCenter@[email protected] (com.alibaba.sdk.android.httpdns.d.b+134)
04-19 17:06:09.390 19392 19392 F DEBUG : #104 pc 001c7fe9 /system/lib/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.4175568579+352)
04-19 17:06:09.391 19392 19392 F DEBUG : #105 pc 001cc8b7 /system/lib/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+146)
04-19 17:06:09.391 19392 19392 F DEBUG : #106 pc 001e365b /system/lib/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+754)
04-19 17:06:09.391 19392 19392 F DEBUG : #107 pc 003ed059 /system/lib/libart.so (MterpInvokeDirect+196)
04-19 17:06:09.391 19392 19392 F DEBUG : #108 pc 0040ae14 /system/lib/libart.so (ExecuteMterpImpl+14484)
04-19 17:06:09.391 19392 19392 F DEBUG : #109 pc 002704e4 /data/dalvik-cache/arm/system@app@xp_ConfigurationCenter@[email protected] (com.alibaba.sdk.android.httpdns.d.a)
04-19 17:06:09.391 19392 19392 F DEBUG : #110 pc 001c7fe9 /system/lib/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.4175568579+352)
04-19 17:06:09.391 19392 19392 F DEBUG : #111 pc 001cc8b7 /system/lib/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+146)
04-19 17:06:09.391 19392 19392 F DEBUG : #112 pc 001e365b /system/lib/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+754)
04-19 17:06:09.391 19392 19392 F DEBUG : #113 pc 003ed1a3 /system/lib/libart.so (MterpInvokeStatic+130)
04-19 17:06:09.391 19392 19392 F DEBUG : #114 pc 0040ae94 /system/lib/libart.so (ExecuteMterpImpl+14612)
04-19 17:06:09.391 19392 19392 F DEBUG : #115 pc 0026f954 /data/dalvik-cache/arm/system@app@xp_ConfigurationCenter@[email protected] (com.alibaba.sdk.android.httpdns.d$2.run+4)
04-19 17:06:09.391 19392 19392 F DEBUG : #116 pc 001c7fe9 /system/lib/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.4175568579+352)
04-19 17:06:09.391 19392 19392 F DEBUG : #117 pc 001cc803 /system/lib/libart.so (art::interpreter::EnterInterpreterFromEntryPoint(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*)+82)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.