https://github.com/mainasuk/emulatorautomator
An emulator debugging tool.
https://github.com/mainasuk/emulatorautomator
Last synced: 2 months ago
JSON representation
An emulator debugging tool.
- Host: GitHub
- URL: https://github.com/mainasuk/emulatorautomator
- Owner: MainasuK
- License: mit
- Created: 2020-06-12T12:47:54.000Z (about 6 years ago)
- Default Branch: develop
- Last Pushed: 2020-08-27T15:21:19.000Z (almost 6 years ago)
- Last Synced: 2025-03-01T00:12:27.886Z (over 1 year ago)
- Language: Swift
- Size: 148 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Emulator Automator
An emulator debugging tool.
## Setup
Setup build environment.
```bash
$ brew cask install android-platform-tools
$ brew install wget
$ brew install opencv
$ brew install tesseract
```
## Usage
Launch an emulator with debug mode. And try this in the `main.js`.
```js
console.log('Hello, world!');
var packages = emulator.listPackages();
for (var i = 0; i < packages.length; i++) {
console.log(packages[i]);
}
emulator.openPackage('com.android.browser');
```
## License
Emulator Automator is released under the [MIT License](./LICENSE).