About :-AppLovin turns mobile into the medium of choice for brands by using data gathered across screens to deliver dynamic mobile ads for consumers.
Platform :-
- Android
- iOS
Payment Method & Terms :-
- Pay via PayPal (minimum payment threshold is $20)
- Pay via ACH (minimum payment threshold is $20)
We pay out previous month’s earnings on the 15th of the next month (net 15). For example, if you earned $15,000 in January, we would make the payment to you on the 15th of February. It may take up to 2 days for the payment to show up in your bank, depending on your bank.
Additionally, Applovin has minimum payment thresholds for a payment for each type. We require you to earn at least $20 in total revenues with us before you can receive a payment if you are using ACH or Paypal. For example, if you earn $10 month with us, you will be paid every second month. If you are using wire, the minimum payment is $150, and we do not any pay wire fees so your bank may take your wire fee out of your payment.
—> Frist Open AppLovin Account And Get Key.
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.WRITE_EXTERNAL_STORAGE" /> <!-- These permissions are strongly recommended and will result in higher performance --> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" /> <meta-data android:name="applovin.sdk.key" android:value="UD0od3s9ey20d8ZSdmTB7qUCbk8Edvn67ovmrmvUixVK43ohpLux9M8l4GziAlqHWi1MTxrAtKVxOHdBcV6ntF" /> <activity android:name="com.applovin.adview.AppLovinInterstitialActivity" /> <activity android:name="com.applovin.adview.AppLovinConfirmationActivity" />
open MyActivity.java file…
import android.app.Activity; import android.os.Bundle; import com.applovin.adview.AppLovinInterstitialAd; import com.applovin.sdk.AppLovinSdk; public class MainActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); AppLovinSdk.initializeSdk(MainActivity.this); // For interstitials AppLovinInterstitialAd.isAdReadyToDisplay(MainActivity.this); AppLovinInterstitialAd.show(MainActivity.this); } }
—> Run Your Code.
Leave a Reply