Java Question make libraries for appwiz?

tuhatinhvn

Active Member
Licensed User
Longtime User
I am interested in this library

http://www.b4x.com/forum/libraries-developers-questions/30748-try-make-libraries-appwiz.html

Who can finish it and share to us?

B4X:
Add to Code
Go to your main class activity (the one which has android.intent.action.MAIN marked in the
manifest) and import the SDK package in:
import com.analitics.api.AppwizSDK;
import com.analitics.api.OnEulaScreenClosedHandler;
- Call the static function in the beginning of the 'onCreate' function of that
activity:
AppwizSDK.init(this, new OnEulaScreenClosedHandler()
{
/**
* This function takes place, once the user passes the EULA screen
* eulaResult possible values: Accepted = 0 Skipped = 1 Already Accepted = 3 Error = 4
*/
@Override
public void continueToApp (int eulaResult)
{
//Put you code here to continue to app
}
});

AppwizSDK.startOfferWall(Context);
- To start Offerwall call the following method:
AppwizSDK.startOfferWall(Context);
- To start PremiumAd call the following method:
AppwizSDK.startPremiumAd(Context);


SDK here:
https://s3.amazonaws.com/appwiz/sdk/AppwizSDK_v1.4.7.zip
 
Top