Click here to Skip to main content
15,867,568 members
Articles / Desktop Programming / XAML

Promote your App using Advertising( Adduplex , Admob) Part1

Rate me:
Please Sign up or sign in to vote.
4.56/5 (5 votes)
10 Aug 2014CPOL4 min read 11.8K   111   5  
It's Time to make Money with your Apps

Introduction

You learn , you develop , you make your own Apps on the Windows Phone Store , you have good reviews , good feedback and important downloads then what?, are you still wasting your time just for reading feedback and count downloads everyday? it will become so boring...

Think about it , you can become a Millionaire , who made Flappy Bird,2048 ,LumberMan.. are better then you? surely not , maybe there are Smarter than you,

You always wonder how they become Rich although they make their Apps free!

Users don't buy your App unless they try it before even for 0,99$ and  even you made it Trial, he can  try then another Trial app and forgot you :)

Think about it , you have to make an App or a Game that let Users used everyday , you should make a reason to make Users return back to your App.

Think about it , make  Games that Secretes much Dopamine when Users use it ;)

Don't rush to make money on the first game , don't wait everyday and said :" that's  weird , why users don't buy my games , when I will make money , why..why..how.." and then you will be frustrated.It's not like that , you should be patience , People make money on their 4th or 5th App and maby more.You must know what users want , what users love spending all time for a simple game , a classic game that don't take 48 hours development.

Think About it , it's all about psychology and making a good strategy and let the universe bring the money.You made a Game , you submit it , then start developing the second and the third.. , money is rising while you are sleeping :)

Let's Start now!

Background

First part , I will show you how to add a banner adduplex and Admob and we will see the difference between them.

Second Part , I will show you how to include in-app-purchase in your Apps or Games.

PART 1 : Adduplex

Adduplex is a Cross-promotion network for Windows 8 and Windows Phone apps.

Why we Use Adduplex and how Does it Work?

Addpulex  start serving ads for other apps. They serve ads for your app in return. It's that simple.

that means your App will be shown in other banner of Apps so Users will click on the banner to download it.

Conclusion

Adduplex promote your App in other Apps and it does't give you money but it helps you to advertise it ;)

 

Take a look on the Website, create a new account ,then click on New app

Image 1

 

Image 2


Enter the Url of your App on the Store later. 

Image 3

Then you Create your banner : for more information  Click on How to create banners .

After that you must download the sdk of Adduplex and add it on the reference in your project. you can download it from NuGet .

Add this following code the PhoneApplicationPage :

xmlns:adduplex="clr-namespace:AdDuplex;assembly=AdDuplex.WindowsPhone"

Then add this Code to add a banner :

<adduplex:AdControl Name="adduplex"  VerticalAlignment="Top"   AppId="Your_UNIT_ID"/>

You can get the  App ID here :

Image 4

Screenshot :

 

Image 5

 

PART 2 : Admob

You can make money with Admob.

There are two types o Admob : Banner Ads and interstitian ads.

1-Banner Ads :

the same thing like Adduplex , the difference that each time the Banner change Image , you earn some money.

Check the Website of Admob.

Create an account or just Sign in with your gmail account.

Then Click on Monetize

Image 6

and Then click on New ad unit :

Image 7

After that choose Banner and type the Text ad ,  the Title and choose the time that takes the ads to refresh

 

Image 8

 

After That Admob will generate an App ID :

 

Image 9

Return to Visual Studio , add the references GoogleAds you can find it when you download the Project.

Then add this Code in the PhoneApplicationPage :

xmlns:GoogleAds="clr-namespace:GoogleAds;assembly=GoogleAds"

and add the Banner :

<GoogleAds:AdView AdUnitID="YOUR_AD_ID"
                          Format="Banner"
                          Grid.Row="1"
                          VerticalAlignment="Top"
                          ReceivedAd="OnAdReceived"
                          FailedToReceiveAd="OnFailedToReceiveAd"
                           />

2-Interstitial Ads :

Image 10

After that we will show this Interstitial ads with C# , no need to xaml :

First of All we send the request :

private void OnRequestInterstitialClick(object sender, EventArgs e)
      {
          // NOTE: Edit "MY_AD_UNIT_ID" with your interstitial
          // ad unit id.
          interstitialAd = new InterstitialAd("ca-app-pub-3296397228927741/4035813717");
          // NOTE: You can edit the event handler to do something custom here. Once the
          // interstitial is received it can be shown whenever you want.
          interstitialAd.ReceivedAd += OnAdReceived;
          interstitialAd.FailedToReceiveAd += OnFailedToReceiveAd;
          interstitialAd.DismissingOverlay += OnDismissingOverlay;
          AdRequest adRequest = new AdRequest();
          adRequest.ForceTesting = true;
          interstitialAd.LoadAd(adRequest);
          showInterstitial.IsEnabled = false;
      }

After receiving the Request we show it :

interstitialAd.ShowAd();
Conclusion

Generaly we show the Interstitial ads just before losing while we play , a pop up is shown and you earn money , if the user click on it you will earn more.

Ps : the User can Close this Ads.

Screenshot :

 

Image 11

Summarize

Promoting your Apps is very important to increase number of downloads and get money.but Users sometimes don't like these Banners of Ads and maybe he will uninstall the App , so it's preferred to let him delete this Ads and ofcourse after he pay :D

We Will see how to do it on the Next Article Part2, it's called In-App-Purshase , the fact that  the user can buy products inside the App.

 

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Junior) Microsoft Student Partners
Tunisia Tunisia
I study Software Engineering , 23 years old , I'm motivated with all Technologies of Microsoft.
Since I have been in the Community of Microsoft as Microsoft Student Partners, I developped many apps on the platform Windows and Phone. Now , it's time to share what I learn here and I'am ready to help Everyone.
You can contact me at any time (anisderbel@outlook.com)
This is a Organisation

9 members

Comments and Discussions

 
-- There are no messages in this forum --