Popularity
0.3
Stable
Activity
0.0
Stable
1
1
0

Description

Lite Version (No Activity needed)

Activity Version (It will include activity to send feedback)

Rooted Status of device

Text feedback

Device Information

App version

Programming language: Java
License: Apache License 2.0
Tags: Android     Animations     Java     Layout     Android-library     Feedback    

Feedbacker Library alternatives and similar packages

Based on the "Animations" category.
Alternatively, view Feedbacker Library alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of Feedbacker Library or a related project?

Add another 'Animations' Package

README

Feedbacker Library

This Library Provide you to get user device information, when they provide feedback to you.

It Includes-

Lite Version (No Activity needed)

Activity Version (It will include activity to send feedback)

Rooted Status of device

Text feedback

Device Information

App version

Screenshot-

Alt text

Minimum SDK-

11

Download-

Gradle

compile 'com.kanishq.feedbacker:feedbacker:0.1.2'

Maven

<dependency>
  <groupId>com.kanishq.feedbacker</groupId>
   <artifactId>feedbacker</artifactId>
   <version>0.1.2</version>
   <type>pom</type>
</dependency>

Using-

For Direct Use (This will directly open Mail app and add device information)

  feedbacker fd = new feedbacker();
  fd.deviceInf(Context);

For Adding Email Address

 feedbacker.e= "[email protected]"; //Replace with your Email

For Using With Activity

  Intent i = new Intent(MainActivity.this, feedbackerActivity.class);
            startActivity(i);

Don't Forget to add activity in Your Manifest

<activity android:name="com.kanishq.feedbacker.feedbackerActivity" />