-
Notifications
You must be signed in to change notification settings - Fork 2
/
README
37 lines (25 loc) · 901 Bytes
/
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
Fleksy module for Appcelerator
===========================================
This module will give your app users the option to choose the Fleksy keyboard.
BUILD MODULE
--------------------
1. Run `build.py` which creates your distribution
2. cd to `~/Library/Application Support/Titanium`
3. copy this zip file into the folder of your Titanium SDK
REGISTER YOUR MODULE
---------------------
Register your module with your application by editing `tiapp.xml` and adding your module.
Example:
```
<modules>
<module version="2.0.2">com.fleksy</module>
</modules>
```
When you run your project, the compiler will know automatically compile in your module
dependencies and copy appropriate image assets into the application.
USING YOUR MODULE IN CODE
-------------------------
To use the Fleksy module in code, all you will need to do is require it.
```
var Fleksy = require('com.fleksy');
```