Buddycloud Android SDK developed is the first SDK that allows developers to easily interact with the Buddycloud API.
- Discover the API endpoint
- Register user
- Fetch and create new posts
- Edit followers
- Manage channels
- Post media
git clone [email protected]:buddycloud/buddycloud-android-sdk.git
- Import the code into your Android Workspace: File > Import... > Android > Existing Code into Android Workspace
- Add the Buddycloud project as a library project to the App that you wish to Buddycloud enable: Properties > Android > Library > Add
- Add the following two lines of code in your manifest file
<activity android:name="com.buddycloud.sdk......"
android:theme="@android:style/Theme.NoTitleBar" />
- Initialize the SDK, when you initialize your app using the
initialize
API call - Set the buddycloud account using the
setBudd......
API call ...
During testing you can use the buddycloud.org
domain for testing account activities and check the retults with [demo.buddycloud.com] (https://demo.buddycloud.com)
public class MainActivity extends Activity implements BuddycloudChannels {