This repository has been archived by the owner on Sep 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 35
/
FILES.txt
55 lines (36 loc) · 1.47 KB
/
FILES.txt
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
---- project structure ----
-- sources --
DalvikBridge
Contains the C# source that handles interop with Dalvik.
MonoBridge
Contains the Java source that handles interop with Mono.
MonoActivity
The activity that contains and extracts mono, libmono.so, and .NET assemblies.
MonoTest
A simple Android application that tests Mono/Dalvik interop.
MonoDevelop.Android
Experimental: A MonoDevelop plugin for building Android applications.
aot
Experimental - Performs AOT of the Mono assemblies for Android.
jni
Contains all the code that is to be built by the NDK. The jni
directory name is named such due to directory structure/naming requirements of
Android NDK 1.6 (and probably beyond).
jni/MonoDalvikInterop
JNI Interop layer to connect Mono and Dalvik by embedding Mono.
jni/PlatformPatches
All the Android headers and configs necessary to compile Mono.
jni/fwdstdin
Forwards all input from stdin to a ipaddress/port. This is used by
the MonoDevelop.Android plugin for reading console output.
-- mono directories --
jni/mono
The checkout of mono to be build for Android. This directory is generated and
managed by get-mono.sh.
hostbuild
Contains the checkout of mono and mcs to build the assemblies for a host build
that will be packaged in the APK. This directory is generated and managed by
get-mono.sh.
-- output directories --
libs
This is where mono and libmono.so get placed when built by the NDK.