我在Jdeveloper中创建了一个简单的"Hello“应用程序,并使用Android4.2.2将其部署到我的三星Tab 3中。当我触摸应用程序来打开它时,它会加载一小段时间,然后重定向到Apps部分。我的应用程序从未打开过。
这是我的特性所具有的简单Html:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252"></meta>
</head>
<body>
Hello World!
</body>
</html>我把它部署到我的Nexus,Android4.1上,它运行得很好,在我的Samsumg 3,Android4.2上不起作用。我用Logcat查看了日志,我认为这些信息可能与所发生的事情有关:
D/CVM (22824): CVM Configuration:
D/CVM (22824): Java stack chunk size (stackChunkSize):
D/CVM (22824): 2048
D/CVM (22824): Java stack minimum size (stackMinSize):
D/CVM (22824): 3072
D/CVM (22824): Java stack maximum size (stackMaxSize):
D/CVM (22824): 131072
D/CVM (22824): CPU affinity mask (cpuMask):
D/CVM (22824): 0
D/CVM (22824): Reduce Signal Usage (noSignals):
D/CVM (22824): false
D/CVM (22824): JIT Configuration:
D/CVM (22824): Interpreter transition cost (icost):
D/CVM (22824): 20
D/CVM (22824): Mixed transition cost (mcost):
D/CVM (22824): 50
D/CVM (22824): Backwards branch cost (bcost):
D/CVM (22824): 4
D/CVM (22824): Compilation threshold (climit):
D/CVM (22824): 20000
D/CVM (22824): When to compile (compile):
D/CVM (22824): policy
D/CVM (22824): What to inline (inline):
D/CVM (22824): none
D/CVM (22824):
D/CVM (22824): Max Inlining Depth (maxInliningDepth):
D/CVM (22824): 12
D/CVM (22824): Max Inlining Code Length (maxInliningCodeLength):
D/CVM (22824): 68
D/CVM (22824): Min Inlining Code Length (minInliningCodeLength):
D/CVM (22824): 16
D/CVM (22824): Policy Triggered Decompilations (policyTriggeredDecompilations):
D/CVM (22824): true
D/CVM (22824): Max Working Memory Size (maxWorkingMemorySize):
D/CVM (22824): 1048576
D/CVM (22824): Max Compiled Method Size (maxCompiledMethodSize):
D/CVM (22824): 65535
D/CVM (22824): Code Cache Size (codeCacheSize):
D/CVM (22824): 524288
D/CVM (22824): Upper Code Cache Threshold (upperCodeCacheThreshold):
D/CVM (22824): 95%
D/CVM (22824): Lower Code Cache Threshold (lowerCodeCacheThreshold):
D/CVM (22824): 90%
D/CVM (22824): Pass Phi values in registers (XregisterPhis):
D/CVM (22824): true
D/CVM (22824): Pass locals in registers between blocks (XregisterLocals):
D/CVM (22824): true
D/CVM (22824): Compiling Causes Class Loading (XcompilingCausesClassLoading):
D/CVM (22824): false
D/CVM (22824): Patched Method Invocations (Xpmi):
D/CVM (22824): true
D/CVM (22824): Trace (trace):
D/CVM (22824): none
D/CVM (22824):
D/CVM (22824): GC[SS]: Initialized semi-space gen for generational GC
D/CVM (22824): Size of *each* semispace in bytes=16384000
D/CVM (22824): Limits of generation = [0x7e267000,0x801a7000)
D/CVM (22824): First semispace = [0x7e267000,0x7f207000)
D/CVM (22824): Second semispace = [0x7f207000,0x801a7000)
D/CVM (22824): Current semispace = First semispace
D/CVM (22824): GC[MC]: Initialized mark-compact gen for generational GC
D/CVM (22824): Size of the space in bytes=36044800
D/CVM (22824): Limits of generation = [0x801a7000,0x82407000)
D/CVM (22824): GC[generational]: Sizes
D/CVM (22824): youngGen = min 16384000 start 16384000 max 16384000
D/CVM (22824): oldGen = min 9830400 start 36044800 max 114688000
D/CVM (22824): overall = min 26214400 start 52428800 max 131072000
D/CVM (22824): GC[generational]: Auxiliary data structures
D/CVM (22824): heapBaseMemoryArea=[0x7e267000,0x86f07000)
D/CVM (22824): cardTable=[0x86f07000,0x86f4d500)
D/CVM (22824): objectHeaderTable=[0x86f4e000,0x86f94500)
D/CVM (22824): summaryTable=[0x86f95000,0x870ae400)
D/houdini (22824): [22861] Unsupported feature (ID:0x20900143).
F/libc (22824): Fatal signal 11 (SIGSEGV) at 0xdead0000 (code=1), thread 22861 Thread-1828)
I/DEBUG ( 1884): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
I/DEBUG ( 1884): Build fingerprint: 'samsung/santos10wifixx/santos10wifi:4.2.2/JDQ39/P5210XXUAMFA:user/release-keys'
I/DEBUG ( 1884): Revision: '8'
I/DEBUG ( 1884): pid: 22824, tid: 22861, name: Thread-1828 >>> om.company.BassicApp2 <<<
I/DEBUG ( 1884): signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr dead0000
I/DEBUG ( 1884): eax 00000000 ebx 7dee65f4 ecx 65cf965c edx 00000000我认为键一定在这里(致命信号意味着有一个空指针):
D/houdini (22824): [22861] Unsupported feature (ID:0x20900143).
F/libc (22824): Fatal signal 11 (SIGSEGV) at 0xdead0000 (code=1), thread 22861 Thread-1828) 发布于 2013-12-04 18:52:23
看起来不支持的是原子cpu。附带的jvm在这方面不起作用。ADF手机只支持ARM。也许在未来的版本中,这将被改变。
发布于 2013-11-29 23:48:03
看来胡迪尼是一个手臂指令集翻译。三星的Tab 310.1有英特尔Atom处理器。问题一定是围绕着这个问题。
发布于 2013-11-30 00:06:37
我发现:ADF移动只支持ARM EABI v7a系统映像.
01/doc.111230/e24475/deploying.htm
我想知道是否有办法让ADF在我的Tab中工作。
https://stackoverflow.com/questions/20255428
复制相似问题