-
Notifications
You must be signed in to change notification settings - Fork 34
/
credits.html
75 lines (66 loc) · 4.7 KB
/
credits.html
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
<!DOCTYPE html>
<html>
<head>
<title>Credits | Android-x86</title>
<link rel="stylesheet" type="text/css" href="master.css" title="default">
<link rel="alternate stylesheet" type="text/css" href="dark.css" title="alternate">
<script type="text/javascript" src="styleswitcher.js"></script>
<link rel="icon" type="image/png" href="mobile.png">
<meta charset="utf-8" name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div w3-include-html="navbar.html"></div>
<div class="openNav">
<div class="icon"></div>
</div>
<!--HTML of main page-->
<div class="wrapper">
<section>
<h1 id="top" class="heading">Android-x86</h1>
<h2 class="subheading">Run Android on your PC</h2>
<!--Style Switcher-->
<div class=themebtn>
<button class="button" onclick="setActiveStyleSheet('default'); return false;"><img src="light_theme.png" height="20px" width"20px" title='Toggle Theme'/> </button>
<button class="button" onclick="setActiveStyleSheet('alternate'); return false;" ><img src="dark_theme.png" height="20px" width"20px" title="Toggle Theme"/></button>
</div>
<p>This project could not have been a reality without these:</p>
<h2>Developers</h2>
<ul>
<li><a href="mailto:[email protected]">Chih-Wei Huang</a> (cwhuang in Taiwan) and <a href="mailto:[email protected] ">Yi Sun</a> (beyounn in U.S.) who founded the project. Current project maintainer is Chih-Wei Huang.</li>
<li><a href="mailto:[email protected]">Mauro Rossi</a> who maintained the most of mesa and kernel porting.</li>
<li><a href="mailto:[email protected]">Michael Goffioul</a> who improved stagefright-plugins including hardware codecs support.</li>
<li><a href="mailto:[email protected]">Paulo Sergio</a> who contributed a lot of bugfixes.</li>
<li><a href="mailto:[email protected]">Jaap Jan Meijer</a> who contributed the <a href="https://www.lineageos.org">LineageOS</a> porting.</li>
<li>0xlab, a group of engineers enthusiastic in open source software development , contributed many fixes and improvements to the Android frameworks, included the OpenGL ES hardware acceleration for Android-x86.</li>
<li><a href="mailto:[email protected]">Michael Chen</a> who developed the stagefright-plugins to improve the multimedia support.</li>
<li><a href="mailto:[email protected]">Dima Zavin</a>, the original guy ported the Android to EeePC 701</li>
<li><a href="mailto:[email protected]">Geunsik Lim</a>, wrote original "HOWTO Build Android-X86 Full Source" and "How to use x86 android platform on virtualbox"</li>
<li><a href="mailto:[email protected]">Chen Yang</a> for the instructions on the how to make boot-able image and how to build Android for VMware, and investigations on almost all of the build breaks and run time issues </li>
<li><a href="mailto:[email protected]">Arya Bhushan</a> and <a href="mailto:[email protected]">Aditya Sood</a> for developing and maintaining this website.</li>
<li><a href="https://codepen.io/Lewitje/pen/tyGdf">Lewi Hussey</a> for navigation bar design.</li>
<li><a href="mailto:[email protected]">Jackie Wu</a> for the fix in alarm.c </li>
<li><a href="mailto:[email protected]">Niels Keeman</a> for the investigation on the path issue in the battery service jni code, v4l2 camera support (android-m912 project)</li>
<li><a href="mailto:[email protected]">Luca Belluccini</a> for the first patch to fix the path issue in the battery service jni code </li>
<li><a href="mailto:[email protected]">Kevin Jeng</a> for adding the mouse wheel support </li>
<li><a href="mailto:[email protected]">Andrew Hughes</a> for the works on iwlwifi4965 and Thinkpad x61 testing </li>
<li><a href="mailto:[email protected]">Al Sutton</a> for testing and work on the ViewSonic ViewPad 10</li>
</ul>
<br>
<p>Of course, there are other people who gave helps. But there are too many e-mails and it is very hard for me to go through each e-mail to find the related person to list here. So, if you think we missed your name here, please kindly <a href="mailto:[email protected]">drop us an e-mail</a>.</p>
<br>
</section>
<div w3-include-html="footer.html"></div>
</div>
<!--JAVASCRIPT CODE-->
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script>
includeHTML();
$(".openNav").click(function() {
$("body").toggleClass("navOpen");
$("nav").toggleClass("open");
$(".wrapper").toggleClass("open");
$(this).toggleClass("open");
});
</script>
</body>
</html>