Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pyclashbot/cr-apk
APK Manager for Clash Royale
https://github.com/pyclashbot/cr-apk
Last synced: 12 days ago
JSON representation
APK Manager for Clash Royale
- Host: GitHub
- URL: https://github.com/pyclashbot/cr-apk
- Owner: pyclashbot
- Created: 2024-10-10T06:19:28.000Z (about 1 month ago)
- Default Branch: master
- Last Pushed: 2024-10-11T02:14:18.000Z (about 1 month ago)
- Last Synced: 2024-10-11T02:15:41.389Z (about 1 month ago)
- Language: Python
- Homepage:
- Size: 90.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cr-apk
Clash Royale APK Manager
## Installation
```bash
pipx install cr-apk
```## Usage
List available commands:
```bash
crapk list
# Available commands:
# build Builds an APK version
# deploy Deploys an APK version
# help Displays help for a command.
# list Lists commands.
# ls Lists all APK versions
# pull Pulls an installed application's APKs from the device
```### Example
```bash
crapk pull 80256022 # target version
# Pulling APKs for package com.supercell.clashroyale as version 80256022
# APKs pulled.
crapk build
# Building APK...
# Building version 80256022
# APK built.
crapk ls
# Pulled versions:
# 80256022
#
# Built versions:
# 80256022
crapk deploy
# Deploying APK...
# Deploying version 80256022
# APK deployed.
```