Not happy with Airpush Bundle 2 - 1500 to 2000 downloads a day and $4.50

Could you share some stats of airpush bundle 2 for 3rd party stores?

Are they CPI/CPC/CPM/PPC?

Please share. I only use pollfish and admob with 3rd party store.
i know admob is useless with them.
but i am too loaded in another stuff and no time to change.

but prior info will to save time during the change.

Opera only accepts apps on google play now, also when user clicks download button it goes to the google play page of the package name of your app to download, so if app is not on google play then you get no downloads. Yes I know it sucks now. I used to be able to clear $100 a day alone with bundle2 and opera sitting all day publishing a few apps every 10 minutes but those days are gone now. Also thier downloads are way off published an app and got 2400 downloads but when i check google analytics only 10 installs and google play stats show 10 as well.

Really sad .For now which are the markets your getting the best download rates for 3rd party apps with bundle 2 .can you please share theme .

Hi Ryanosaur,

I am sorry to hear your feedback on the Bundle 2 SDK.
The SDK pays the $0.05 rate when a new / unique user to the Airpush network installs your app, and agree’s to the opt in page.
Some markets have more Airpush apps on it than others (particularly Mobile9, 1Mobile, etc). I would recommend trying some others. Some markets will count downloads of the file, but normally only a percentage of those users will install the file and open the app. Having your app with the SDK on as many different markets as possible is the best way to earn with it.

Here is our recommended list of 3rd party sites to try - http://bit.ly/AIrpush.
You can also try alternative methods of getting new users, such as hosting your own site and sending mobile traffic to it, via like forum postings, Facebook groups, videos, etc.

Hope this helps. Shoot me any questions.
Cheers,
Airpush Nick

in my app its write"Your campaign has reached the maximum daily or total budget or campaign need audit or this campaign is currently restricted to specific geos." in banner what does it mean any ideas?

Let me PM you to help get this resolved.
Nick

Hi Ryanosaur,

Send me an email to [email protected].
I think I can help you make much more money for your trarrfic.

Thanks,
Green.Onliner

Yes, I saw this error when intergrating airpush sdk. Why airpush show these ads if “the campaign has reached the maximum daily”?:confused:

You did say 1500-2000 downloads with earnings of $4.50 - $7.50…
I’d be interested in knowing how many impressions you are getting to generate that revenue.

Tested Appodeal on 3rd party app markets and getting a nice $4.51 eCPM rate with them. I literally fell off my chair when I published a few apps and made over $1.00 on a few new apps with-in the hour.

c:\MyJava>adb logcat ‘*:D’ | find “B2SDK”
I/B2SDK (12309): Setting Appid: 239084
I/B2SDK (12309): Cache enabled: true
I/B2SDK (12309): Initialising: 8.02
I/B2SDK (12309): Status code: 200
W/B2SDK (12309): Limit ad tracking enabled
W/B2SDK (12309): Limit ad tracking enabled
W/B2SDK (12309): Limit ad tracking enabled
I/B2SDK (12309): Setting Appid: 239084
I/B2SDK (12309): Cache enabled: true
I/B2SDK (12309): Initialising: 8.02
W/B2SDK (12309): Limit ad tracking enabled
W/B2SDK (12309): Limit ad tracking enabled
W/B2SDK (12309): Limit ad tracking enabled
I/B2SDK (13007): Setting Appid: 239084
I/B2SDK (13007): Cache enabled: true
I/B2SDK (13007): Initialising: 8.02
I/B2SDK (13007): Status code: 200
W/B2SDK (13007): Limit ad tracking enabled
W/B2SDK (13007): Limit ad tracking enabled
W/B2SDK (13007): Limit ad tracking enabled
I/B2SDK (13208): Setting Appid: 239084
I/B2SDK (13208): Cache enabled: true
I/B2SDK (13208): Initialising: 8.02
I/B2SDK (13208): Status code: 200
W/B2SDK (13208): Limit ad tracking enabled
W/B2SDK (13208): Limit ad tracking enabled
W/B2SDK (13208): Limit ad tracking enabled

Dr. Hu

From: GuoQing Hu <[email protected]>
To: Bill Huynh <[email protected]>; “[email protected]” <[email protected]>; “[email protected]” <[email protected]>
Sent: Saturday, June 6, 2015 4:52 PM
Subject: Re: Note about your Airpush SDKs

When I try your Bundle2 SDK 8.0, the eula screen is never show up. What would be the problem?
If EUla screen not show, I can’t get the $0.05, right? But the airpush ad still show up. I use following code. But the optinResult is not show up either.

	    AdConfig.setAppId(239084);  //setting appid. 
AdConfig.setApiKey("1303511197426136252"); //setting apikey
    AdConfig.setEulaListener(eulaListener); //setting EULA listener. 
    //AdConfig.setAdListener(this);  //setting global Ad listener. 
    AdConfig.setCachingEnabled(true); //Enabling SmartWall ad caching. 
    AdConfig.setPlacementId(0); //pass the placement id.
    AdConfig.setEulaLanguage(EulaLanguage.ENGLISH); //Set the eula langauge
    main=new Main(getApplicationContext());

EulaListener eulaListener=new EulaListener() {
	@Override
	 public void showingEula() {
		//This will get called when EULA dialog is showing on screen.
		Log.e(TAG, "showingEula");
	 }
			
	@Override
	 public void optinResult(boolean isAccepted) {
	  //This will get called when EULA dialog is closed with a boolean result.	
		Log.e(TAG, "optinResult: "+isAccepted);
	 }
};