1 - Download SDK
Download Tentica jar: link.
With only 50k size, our small jar would keep your app light and fast!
2 - Add library to your project
Drop it in your Android lib folder.
3 - Integrate actions you want to monetize
Replace your calls to startActivity() with calls to CustomIntent.startActivity() for example:
Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT, "text to send");
sendIntent.setType("text/plain");
//Remove only below line
startActivity(sendIntent);
//Replace with this line:
CustomIntent.startActivity(this,sendIntent);