8.1 Copy all files from the Plugin/Eclipse/AndroidVMAXSDKLibrary/libs folder to your application libs folder.
8.2 Copy the resources and assets to your respective application folders.
8.3 Copy below manifest snippet to your application Manifest file.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
<uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <activity android:name="com.vmax.android.ads.vast.VastBillBoardActivity" android:configChanges="touchscreen|keyboard|keyboardHidden|navigation| orientation|screenLayout|uiMode|screenSize" android:theme="@android:style/Theme.NoTitleBar.Fullscreen"> </activity> <activity android:name="com.vmax.android.ads.vast.VastBillBoardFrameActivity" android:configChanges="touchscreen|keyboard|keyboardHidden|navigation| orientation|screenLayout|uiMode|screenSize" android:theme="@android:style/Theme.Translucent.NoTitleBar"> </activity> <activity android:name="com.vmax.android.ads.webview.WebViewFullscreenActivity" android:configChanges="touchscreen|keyboard|keyboardHidden|navigation| orientation|screenLayout|uiMode|screenSize"> </activity> |
8.4 [Highly recommended] Add the Google Play Services Library. Place the below code in your application Android Manifest file, after importing Google Play Services Library.
1 2 3 |
<meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" /> |
Once you’re done with these steps, go continue to step 9 here.