Reamaze allows you to embed a support knowledge base into your 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.
- Clone this repository
- Be sure you've installed the Android SDK with API Level 19
- Import the "reamaze" folder into Eclipse (use "Existing Projects into Workspace", not "Existing Android Code").
- In your project settings, add the Reamaze project under the "Libraries" section of the "Android" category.
- In your AndroidManifest, make sure you are requiring permissions for INTERNET and declare the ReamazeActivity.
- 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.*;
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!