Skip to content
Klaus Wuestefeld edited this page Aug 25, 2015 · 21 revisions

Set up your Android Development Environment.

Make sure you are using the latest Sneer release:

Create or open the Android app you wish to enhance with sovereign features.

###AndroidManifest.xml File Add this line to the application section:

<meta-data android:name="SneerApp" android:value=""/>

Make sure the activities to be launched within Sneer conversations look like this:

    <activity
        android:name=".MyActivity"
        android:excludeFromRecents="true"
        android:exported="true">
        ...
    </activity>

Choose what you want your app to do:

Run your app on a device with Sneer installed. Sneer will detect it automatically and add its activity to the conversation app list. Your activity will be started when the user taps it.

###Be Seen Publish your app on the play store with "SneerApp" in the description. It will be shown in this list when users click the "Find Apps" button in Sneer.

Aim for simple, awesome apps.