forked from windwardadmin/android-awt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.txt
54 lines (37 loc) · 1.46 KB
/
README.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
android-awt
=============
This project replaces java.awt and javax.imagio since we can't use
these classes on Android. This GitHub project is created to maintain any minor modifications we may need to make from the original code from appengine-awt.
=========
CHANGELOG
=========
1.0.0 - initial branch from appengine-awt and project set-up
============
DEPENDENCIES
============
IMPORTANT: You need to add the included jars to the local Maven repository in
order to build android-awt. To do this, run the .bat script
located in the dep directory.
- Maven
In order to build sfntly and android-awt, you need Maven (it was already
set up well for both projects) -- Maven will basically generate all the
jars without a second thought.
- sfntly (jar included in dep)
Located at: https://code.google.com/p/sfntly/
========
BUILDING
========
- This project uses Maven (I didn't want to set up ant and Maven worked
perfectly well and was already set up). You should check the Dependencies
section before building to make sure dependencies are satisfied!!
mvn clean - clean up generated files
mvn compile - compile
mvn test - run tests (haha j/k; there are none)
mvn package - generate a jar <-- This is most likely what you want
mvn install - install to the local Maven repository
- any output files generated are usually placed in target\ such as the jar and
class files.
- The version number can be updated in pom.xml
=====
ABOUT
=====