-
Notifications
You must be signed in to change notification settings - Fork 39
/
README
149 lines (103 loc) · 5.01 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
apkenv
======
A compatibility layer for applications packaged as .apk.
Support website: http://thp.io/2012/apkenv/
If you want to run this no your Desktop Linux machine, see README.osmesa for
how to build it with the necessary compatibility libraries. This is now the
default build target.
Example module and .apk
=======================
An example module is provided in modules/trg2.c - you can use this module as a
basis to create your own modules. You can download the .apk that works with
this example module from:
http://thp.io/2011/trg2/
"Installing" applications
=========================
apkenv now includes a very rudimentary facility to "install" an .apk as an
application. What it really does is extract the icon from the .apk (this might
not work for all .apks - we'd need to read the manifest to get the real file
name and application name in all cases) and create a launcher icon that starts
apkenv with the apk file as its argument. To use it, type:
apkenv --install /path/to/your.apk
please note that installing is not supported on the pandora port yet.
softfp vs. hardfp
=================
Android is softfp.
Maemo 5 is softfp.
MeeGo 1.2 Harmattan is hardfp.
Pandora is softfp.
softfp and hardfp differ in the way functions with floating point arguments
get called. Trying to call a hardfp function with the softfp calling
convention will not work and likely result in a crash or worse. To avoid
this, you can add an attribute to function declarations to make sure that
the function accepts its parameters using the softfp calling convention,
like this:
__attribute__((pcs("aapcs")))
There's a convenience #define in apkenv.h called "SOFTFP" with which you can
decorate all functions that are either in a native library (i.e. in
modules/) or that will be called from the native library (i.e. in compat/).
Please note that in theory this attribute is only required on functions that
pass float values in the arguments, but do it always to save you some
headaches.
Debugging crashes
=================
First of all, enable debugging in the makefile (set DEBUG=1). Then rebuild
to get a debug build with lots of debug output. You can then check which
symbols get mapped from where at the linker phase (e.g. apkenv x.apk | grep
'from libc') - in general, most libc functions must be mapped in order to
avoid problems (e.g. stdio functions don't work in Bionic libc, so we have
to hack around these issues - the same is true for memory (de-)allocation,
etc..).
When you have all relevant functions mapped, ltrace'ing apkenv can help you
find the library function in which it crashes - this will not list functions
from Bionic libs, but only from your system libraries (another reason why it
is usually a good idea to map system-level functions).
apkenv now also has some more in depth debugging options (see --help), for
example tracing calls to bionic libraries (-ta -u), while running an app this
will show you which bionic functions are called from the app and if the crash
happens soon after one of the bionic functions is called try adding this
function to the hooks, in some cases this has helped us to fix crashes.
Documentation
=============
JNI Invocation API
http://docs.oracle.com/javase/1.5.0/docs/guide/jni/spec/invocation.html
JNI Functions
http://docs.oracle.com/javase/1.5.0/docs/guide/jni/spec/functions.html
JNI Types and Data Structures
http://docs.oracle.com/javase/1.5.0/docs/guide/jni/spec/types.html
GCC Function Attributes
http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
ARM Hard Float Point: VFP Comparison
http://wiki.debian.org/ArmHardFloatPort/VfpComparison
Android MotionEvent
http://developer.android.com/reference/android/view/MotionEvent.html
Third Party Code
================
All code written by me (thp) for apkenv is licensed under a simplified BSD
license (see LICENSE.apkenv). However, code from third parties might be
licensed under a different license, and have different copyright holders:
apklib/unzip.{c,h}, apklib/ioapi.{c,h}:
The MiniZip project - http://www.winimage.com/zLibDll/minizip.html
Copyright (C) 1998-2010 Gilles Vollant (minizip)
Copyright (C) 2007-2008 Even Rouault
Copyright (C) 2009-2010 Mathias Svensson ( http://result42.com )
apklib/ioapi_mem.c:
ioapi implementation for accessing .zip files in memory
Copyright (C) 1998-2003 Gilles Vollant
Copyright (C) 2003 Justin Fletcher
imagelib/stb_image.h:
stb_image - v2.27 - public domain image loader - http://nothings.org/stb
Copyright (c) 2017 Sean Barrett
linker/*:
The Android Bionic Linker + The Android Bionic C Library
Copyright (c) 2005-2008, The Android Open Source Project
jni/jni.h:
libnativehelper: Support functions for Android's class libraries
Copyright (C) 2006 The Android Open Source Project
compat/hooks.c, compat/pthread_wrapper.c:
pthread wrapper implementation based on code from libhybris
Copyright (C) 2012 Carsten Munk
Pandora Port
============
All code written by me (crowriot) for apkenv's pandora port is
licensed under same conditions as the apkenv itself.