Skip to content

reamaze/reamaze-android

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Reamaze SDK for Android

Reamaze allows you to embed a support knowledge base into your app.

Sample app

For a quick first look at Reamaze, we have included a very small sample application that you can build and run. The sample app demonstrates invoking a ReamazeActivity.

Installation

  1. Clone this repository
  2. Be sure you've installed the Android SDK with API Level 19
  3. Import the "reamaze" folder into Eclipse (use "Existing Projects into Workspace", not "Existing Android Code").
  4. In your project settings, add the Reamaze project under the "Libraries" section of the "Android" category.
  5. In your AndroidManifest, make sure you are requiring permissions for INTERNET and declare the ReamazeActivity.
  6. In your .java file, you need to import the Reamaze SDK.
<uses-permission android:name="android.permission.INTERNET" />
<activity android:name="com.reamaze.sdk.ReamazeActivity" />
import com.reamaze.sdk.*;

Instructions

Integrate

Trigger Reamaze from anywhere (e.g. Button Press)

// SomeActivity.java
public void onHelpClicked(View view) {
  Intent intent = new Intent(this, ReamazeActivity.class);
  intent.putExtra("brand", "YOUR BRAND HERE"); // Get your brand from the subdomain of your public site. (e.g. foobar.reamaze.com is brand "foobar")
  startActivity(intent);
}

That's all you need to do!

About

Reamaze Android SDK

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages