Coder Social home page Coder Social logo

kartikhimself / appfeedback-android Goto Github PK

View Code? Open in Web Editor NEW

This project forked from yahoojapan/appfeedback-android

0.0 0.0 0.0 2.1 MB

๐Ÿ“ธ You can post feedback messages and screenshots to Slack from your Android app! ๐ŸŽฅ

License: MIT License

Java 100.00%

appfeedback-android's Introduction

API License CircleCI

AppFeedback

You can post feedback messages and screenshots to Slack from your Android app!

It is very useful for internal test!

How to feedback

Introducing this SDK, a floating icon of feedback is displayed. Tapping it, a feedback dialog is displayed.

Feature

  • Show feedback button
  • Two fingers long press to show feedback dialog
  • Take a screenshot & Record screen

Requirements

  • Minimum SDK Version - requires a minimum SDK version of 21 or higher
  • Compile SDK Version - must be compiled against SDK version 27 or higher
  • Support Library Version - uses support library version 27.

Usage

Integrate SDK

Step 1. Add the JitPack repository to your build file:

    allprojects {
        repositories {
            ...
            maven { url 'https://jitpack.io' }
        }
    }

Step 2. Add the dependency:

    dependencies {
        implementation 'com.github.yahoojapan.AppFeedback-android:sdk:1.+'
    }

In order to remove sdk code from your release bundle, use sdk_stub module. sdk_stub has same I/F with empty implementation.

    dependencies {
        releaseImplementation 'com.github.yahoojapan.AppFeedback-android:sdk_stub:1.+'
    }

MainActivity

Call AppFeedback.start in the MainActivity.

import jp.co.yahoo.appfeedback.core.AppFeedback;

public class MainActivity extends Activity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
 
        // Start feedback SDK
        AppFeedback.start(this,
                          "<slack token>",
                          "<slack channel id>");
        );
    }

appfeedback-android's People

Contributors

taisukeh avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.