RSSTS

Additional

Language
Java
Version
N/A
Created
Apr 25, 2015
Updated
May 9, 2015 (Retired)
Owner
goka (gotokatsuya)
Contributor
goka (gotokatsuya)
1
Activity
Badge
Generate
Download
Source code

RSSTS

RSSTS = Report Screenshot To Slack

You can report a screenshot of your application to slack channels that you like.

When one activity starts, RSSTS's notification will be shown.

When you tap this notification, Screenshot will be sent to a slack channel.

How to use

public class YourApplication extends Application {

    @Override
    public void onCreate() {
        super.onCreate();

        // Initialize Rssts
        Rssts.initialize(true, "your slack token", "your slack channel ID");

        // Start Rsstser of Your Application
        Rsstser.start(this);
    }

    // Maybe, this method is called when you use emulator
    @Override
    public void onTerminate() {

        // Stop Rsstser of Your Application
        Rsstser.stop(this);
        super.onTerminate();
    }
}

You should look this sample code.

Application.ActivityLifecycleCallbacks is used by sample code but it is released from API-14. When the api that you use is lower than 14, you have to use compat-ActivityLifecycleCallbacks. Check this sample.

Gradle

repositories {
    jcenter()
}

dependencies {
    compile 'com.github.goka.rssts:library:1.0.0'
}

iOS

Check this repository !

OSX

Check this repository !