Skip to content

Latest commit

 

History

History
48 lines (38 loc) · 2.16 KB

README.md

File metadata and controls

48 lines (38 loc) · 2.16 KB

Build Status Download Android Arsenal

selfie

A simple library to make taking screenshots of your apps a breeze.

With the Marshmallow release and the new permissions model, taking screenshots of your applications has become just slightly more complicated as you need to deal with permissions on the run.

This library does it all for you regardless of the device you're running it on.


Usage

Two easy steps:

  1. From the activity you want to take screenshots or the application class initialise the Selfie.

  2. Obtain Selfie's instance and use it throughout your app.

Initialising Selfie

Using default configuration:

Selfie.initWithDefaults();

Using builder:

Selfie.initWithBuilder(new Selfie.Builder()
                .fileFormat("yyyy-MM-dd_hh:mm:ss")
                .path(Environment.getExternalStorageDirectory())
                .quality(100));

Taking a screenshot

Selfie.getInstance().snap(MainActivity.this);

Downloading

compile 'uk.co.placona.selfie:selfie:1.0.0'