Posts

Showing posts from June, 2019

How to create audience network facebook account

Image
Hello friends how are you all.... You can easily create a Facebook interstitial Ads by watching the video. Build.gradle: ....Copy any code.... implementation 'com.facebook.android:audience-network-sdk:5.4.1' implementation 'com.facebook.android:audience-network-sdk:5.+' AndroidManifest.xml: ....Copy the code as shown on the video.... <uses-permission android:name="android.permission.INTERNET"></uses-permission> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"></uses-permission> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/AppTheme"> <activity android:name=".MainActivity"> <intent-filter...

How To Create Facebook Interstitial Ads Android Studio

Image
Hello friends how are you all.... You can easily create a Facebook  Interstitial Ads  by watching the video. Build.gradle: ....Copy any code.... implementation 'com.facebook.android:audience-network-sdk:5.4.1' implementation 'com.facebook.android:audience-network-sdk:5.4.1' AndroidManifest.xml: ....Copy the code as shown on the video.... <uses-permission android:name="android.permission.INTERNET"></uses-permission> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"></uses-permission> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/AppTheme"> <activity android:name=".MainActivity"> <intent-fil...

How to create facebook Banner Ads | Audience Network

Image
Hello friends how are you all.... You can easily create a Facebook Banner Ads by watching the video. Build.gradle: ....Copy any code.... implementation 'com.facebook.android:audience-network-sdk:5.4.1' implementation 'com.facebook.android:audience-network-sdk:5.4.1' AndroidManifest.xml: ....Copy the code as shown on the video.... <uses-permission android:name="android.permission.INTERNET"></uses-permission> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"></uses-permission> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/AppTheme"> <activity android:name=".MainActivity"> <intent-filter> ...

How To Create Facebook Audience Network Account..

Image
Hello friends how are you all.... You can easily create a Facebook Audience Network Account by watching the video. Facebook Audience-Network Sign Up Link = http://bit.ly/2WkyEdT Subscribe On Youtube: = http://bit.ly/2wxCP6Y ===================================== Video Voice English ................................................................................................................................ Hello friends, How are you,Easily create a Facebook Audience Network account,Fast open any Browser,And type in the Facebook audience network account,go to the URL,Click on the gate start,click next,Enter your phone number here,send test,give your Facebook password here,submit,Enter the pin code sent to your phone,and next,Fill the captcha,submit,click developer,Add your first product,your account has been completely created, subscribe to the channel, to get next video.... You can easily create a Facebook Audience Network Account by watching the video.... Stay up-to-date with our ch...

Android Studio Guidelines

Image
Facebook Audience Network allows you to monetize your Android apps with Facebook ads. This guide will walk you through all the steps to integrate the SDK. Prerequisites Ensure that you have  Android Studio installed . Please see the FAQ for  minimum OS version  supported by Audience Network SDK. Getting Started Steps Step 1: Creating a New Project Step 2: Including the SDK Step 3: Integration Error Mode (optional) Step 1: Creating a New Project You can skip this step if you already have a project you want to integrate Audience Network into. Start Android Studio and select "Start a new Android Studio Project" Name your project and specify your company's domain. The Package name will be your identifier if you decide to upload your app to the Google Play store. Set your minimum Android SDK version. Audience Network requires  API 15  or higher, but for the sake of these samples, we will use  API 21 . Add an Empty Activity to your Project Name your initial Activ...