https://github.com/hoenchioma/hotkey-client
The client (mobile) version of Hotkey application
https://github.com/hoenchioma/hotkey-client
android bluetooth hotkey java keyboard-emulation lan mouse remote-control remote-desktop touchpad
Last synced: 7 days ago
JSON representation
The client (mobile) version of Hotkey application
- Host: GitHub
- URL: https://github.com/hoenchioma/hotkey-client
- Owner: hoenchioma
- License: gpl-3.0
- Created: 2019-09-09T11:54:55.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2020-01-30T05:39:45.000Z (over 6 years ago)
- Last Synced: 2025-09-03T17:53:15.518Z (10 months ago)
- Topics: android, bluetooth, hotkey, java, keyboard-emulation, lan, mouse, remote-control, remote-desktop, touchpad
- Language: Java
- Homepage: https://hoenchioma.github.io/hotkey/
- Size: 1.03 MB
- Stars: 3
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Hotkey (client application)
Hotkey is a cross platform solution for controlling your PC from a mobile device.
(This is a university project for the course CSE-2216 (Application Development Lab) at the [Department of Computer Science and Engineering, University of Dhaka](http://www.cse.du.ac.bd/).)
This is the repository for the client application (Android). It is an Android Studio (gradle) project. For more information refer the parent repository [hotkey](https://github.com/hoenchioma/hotkey).
## Building
In order to build the source code yourself you will need to first clone the repository. Open the terminal (for windows `cmd` or `git bash`) in the directory of your choice and run:
```
git clone https://github.com/hoenchioma/hotkey-client.git
```
#### Command line
Then in order to build enter the directory you just cloned into and run a gradle build:
```
cd hotkey-client
./gradlew assembleDebug
```
This creates an APK named `app-debug.apk` in `hotkey-client/app/build/outputs/apk/`. The file is already signed with the debug key and aligned with zipalign, so you can immediately install it on a device. For more info see [this](https://developer.android.com/studio/build/building-cmdline).
#### GUI
Alternatively you can open this folder in `Android Studio` and build/run the android application. For more info see [this](https://developer.android.com/studio/run)