About Appnext:-
- Appnext releases its self-serve mobile advertising platform with cost controls .
- Appnext Announces Record Growth in 2014.
- 7 Resources for A Winning App Marketing Strategy.
- Special Valentine’s Bonuses for The Appnext Publishers.
Platform :-
- Android.
- iOS.
- Mobile Web.
- Facebook.
Payment Method :-
- Paypal.
- Connect Credit Card.
- Wire Transfer.
Payment Terms :-
Payment by Appnext is processed within net 10 days from Publisher’s invoice; provided that Publisher’s account balance is greater than US$ 200 (in case Publisher elected to receive payment by wire transfer) or US$ 50 (in case Publisher elected to receive payment by Paypal or similar service) (in either case, “Minimum Balance”).
—> Frist Open AppNext Account And app ID.
After Getting All Information Start Eclipse And Create New Project.
For google_play_services import project from the J:\android-sdk-windows\extras\google\google_play_services\libproject
—> AndroidManifest.xml
<uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.GET_ACCOUNTS" /> <meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" /> <service android:name="com.appnext.appnextsdk.DownloadService"/>
open MyActivity.java file…
import com.appnext.appnextsdk.Appnext; import android.app.Activity; import android.os.Bundle; public class MainActivity extends Activity { Appnext appnext; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); appnext = new Appnext(this); appnext.setAppID("8ce1a263-7a74-42b1-b209-80276c0fe971"); // Set your AppID appnext.showBubble(); // show the interstitial } @Override public void onBackPressed() { if(appnext.isBubbleVisible()){ appnext.hideBubble(); } else{ super.onBackPressed(); } } }
—> Run Your Code.
Leave a Reply