Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/akarsh/adkit-install-apk-tutorial
Tutorial for installing apk on android device using adbkit
https://github.com/akarsh/adkit-install-apk-tutorial
adbkit android node-js tutorial
Last synced: 13 days ago
JSON representation
Tutorial for installing apk on android device using adbkit
- Host: GitHub
- URL: https://github.com/akarsh/adkit-install-apk-tutorial
- Owner: akarsh
- License: apache-2.0
- Created: 2017-09-17T20:46:14.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-10-26T19:51:47.000Z (about 1 year ago)
- Last Synced: 2024-11-06T04:29:37.501Z (2 months ago)
- Topics: adbkit, android, node-js, tutorial
- Language: JavaScript
- Size: 34.2 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
# adkit-install-apk-tutorial
Tutorial for installing apk on android device using adbkit## apk file in url
Specifying the url of the apk file to install on the connected device.
```
return client.install(device.id, new Readable().wrap(request('https://gitlab.com/sakarsh/gitlab-ci-android/-/jobs/31927817/artifacts/raw/app/build/outputs/apk/app-debug.apk')))
```## apk file in local storage
Specify the location of the apk file to instal on the connected device.
```
return client.install(device.id, 'debug.apk')
```### Credits
This project uses Open Source components. You can find the source code of their open source projects along with license information below. We acknowledge and are grateful to these developers for their contributions to open source.
* Project: [adbkit](https://github.com/openstf/adbkit)
Author: [9+ contributors](https://github.com/openstf/adbkit/graphs/contributors)License: [Apache-2.0](https://github.com/openstf/adbkit/blob/master/LICENSE)