Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eyedol/kasahorow-keyboard-for-android
kasahorow Keyboard For Android
https://github.com/eyedol/kasahorow-keyboard-for-android
Last synced: about 5 hours ago
JSON representation
kasahorow Keyboard For Android
- Host: GitHub
- URL: https://github.com/eyedol/kasahorow-keyboard-for-android
- Owner: eyedol
- Created: 2013-06-11T00:17:02.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T08:17:46.000Z (11 months ago)
- Last Synced: 2023-12-15T09:28:44.735Z (11 months ago)
- Language: Java
- Homepage:
- Size: 4.45 MB
- Stars: 59
- Watchers: 15
- Forks: 45
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
kasahorow Keyboard For Android
==============================kasahorow keyboard for Android. See http://kasahorow.com for more info.
This project is based on [AnySoftKeyboard](https://github.com/AnySoftKeyboard/AnySoftKeyboard)![Kasahorow Keyboard on HTC One](https://lh5.googleusercontent.com/-TOyx-zjPMzQ/Udu4AwTKt4I/AAAAAAAAJP0/WT5v9CKiD0g/s640/framed_Screenshot_2013-07-09-15-22-30.png)
Build
====Clone the repository
`git clone git://github.com/eyedol/kasahorow-Keyboard-For-Android.git`
After, you should have
```
.
|-- AndroidManifest.xml
|-- build
|-- build.gradle
|-- buildSrc
|-- dictionaries
|-- gradle
|-- gradlew
|-- gradlew.bat
|-- install_apk.sh
|-- keyboard_keystore
|-- proguard-rules.txt
|-- README.md
|-- res
|-- shippable.yml
|-- src
|-- StoreStuff
`-- temp_jni```
### Debug Build
To make a debug build, in the project's root directory, issue
`./gradlew assembleDebug`
This should build an unsigned apk for testing and debugging purposes.
### Release Build
To make a release build for distribution at the app store, make sure you have these files `local.signing.properties` and `local.extra.properties` in the root of the project.
**local.signing.properties**
```
STORE_FILE=signing_key_file
STORE_PASSWORD=store_password
KEY_ALIAS=key_alias
KEY_PASSWORD=key_password
```A typical `local.signing.properties` content. Used the Android debug key details.
```
STORE_FILE=/home/username/.android/debug.keystore
STORE_PASSWORD=android
KEY_ALIAS=androiddebugkey
KEY_PASSWORD=android
```**local.extra.properties**
```
[email protected]
```Then in the project's root directory, issue
`./gradlew assemble`