Skip to content

pistatium/android_review_watcher

Repository files navigation

android_review_watcher

CircleCI

This application is a tool to get reviews of your Android apps and notify to Slack. It is using a Google API official API to get reviews.

capture.png

HowToUse

Require files

  • config.toml

    • This file is configuration of your Slack's WebHook, the package names of the application you want to obtain, etc
    • You can set multiple applications at once.
    • Please copy config.toml.sample and custom it.
  • service_account.json

Execute

# Download Zip (for Linux)
#   https://github.com/pistatium/android_review_watcher/releases
./android_review_watcher -c config.toml -o service_account.json

or

git clone https://github.com/pistatium/android_review_watcher.git
cd android_review_watcher/cmd/android_review_watcher
go get
go build
./android_review_watcher -c config.toml -o service_account.json

Run periodically

This script is not a daemon. Please run the command at the timing you want. The same review is controlled not to be reposted.

If you want to use crontab, configure like this

0 */3 * * * cd /path/to/android_review_watcher; ./android_review_watcher

References