Skip to content

AppSpice Android SDK - Get more users for your apps and keep them happy

Notifications You must be signed in to change notification settings

naughtyspirit/appspice

Repository files navigation

AppSpice Android SDK

Use AppSpice in your Android apps to promote and find engaged users for free. Fast and Easy!

Getting started

AppSpice supports both Eclipse and Android Studio (via gradle), so you are in for a treat!

Android Studio

Add the following dependency to your build.gradle

compile 'it.appspice:android:+'

Eclipse

Download the SDK

  • Unzup and import as a library project
  • Add AppSpice as a dependency to your project
  • Integrate Google Play Services and AppCompat library in your project

How to integrate Google Play Services

Update Android Manifest

Add the Internet permission

<uses-permission android:name="android.permission.INTERNET" />

Add your AppSpice ID

<meta-data android:name="APP_SPICE_ID" android:value="YOUR APP SPICE ID" />

Add your App ID

<meta-data android:name="APP_SPICE_APP_ID" android:value="YOUR APP ID" />

Add the AppSpice service

<service
    android:name="it.appspice.android.services.InstalledAppsService"
    android:exported="true"
    android:process="it.appspice.InstalledAppsService" />

Init AppSpice

Add this code to your main Activity

@Override
public void onCreate(Bundle savedInstance) {
    super.onCreate(savedInstance);
    setContentView(R.layout.main_activity);

    AppSpice.init(this);
    AppSpice.showAd(this);
}

@Override
protected void onDestroy() {
    super.onDestroy();
    AppSpice.onDestroy();
}

Manage your App

Add awesomeness to your app here

License

Copyright (c) 2014 NaughtySpirit. Released under MIT license

About

AppSpice Android SDK - Get more users for your apps and keep them happy

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages