Airpush Library

pluton

Active Member
Licensed User
Longtime User
From yesterday I can't log in Airpush with my Google ID. Please help.

Me too. I have enter mail and pass and it won't log me in.
Just saying Redirecting... and after minute or two Database Error

Here is screenshot:
error.png


EDIT:
Ok. Now when I refreshed page it worked.
 
Last edited:

Gigatron

Member
Licensed User
Longtime User
Dear SSG

I have do all described on first post but ..

Sub Process_Globals
Dim ap As APAdView < ----- This APAdView is not recognized by B4A
End Sub

Sub Activity_Create(FirstTime As Boolean)
ap.Initialize("ap", <appid>, False)
'your appid, the event "ap" will not fire though, False for live ads

End Sub

I have checked AirpushSDK, and MesAplib on the right ..

What's wrong ?

Thank in advance
 

ssg

Well-Known Member
Licensed User
Longtime User
Hi Gigatron,

On the first page, the library was updated and so did the code.

The sample code given is not right anymore.

Refer to the line after this:

********Update 23rd October 2011***********

I'd suggest not copying and pasting the code, try hitting CTRL + Spacebar and use the intellisense to guide.

Good luck...

let me know if you can or cannot get it running.

Cheers!
 

Gigatron

Member
Licensed User
Longtime User
Thank you very much SSG

I am waiting now, hope it' will working with my livewallpaper application added to Airpush site.

thanks again
 

bubbafish

New Member
Manifest permissions

Question for the Airpush folks:

Do we really need to add the following browser bookmark permissions to our manifest?

com.android.browser.permission.WRITE_HISTORY_BOOKMARKS
com.android.browser.permission.READ_HISTORY_BOOKMARKS

I can understand that icon ads would require com.android.launcher.permission.INSTALL_SHORTCUT, but the bookmarks ones above seem unnecessary, and I want to use the fewest permission as possible.
 

pluton

Active Member
Licensed User
Longtime User
I didn't added that permisions and Airpush working fine

Sent from my LG-P500
 

ssg

Well-Known Member
Licensed User
Longtime User
I didn't added that permisions and Airpush working fine

Sent from my LG-P500

Yeah, i've decided to remove those too from my apps.

Hows your revenue from airpush been? Mine seems to have gone down quite a bit the past couple of weeks :(

Good thing leadbolt is still a solid one :D

Some interesting news from airpush site:

B4X:
Due to a recent explosion in growth we are currently making structural system changes which may take up to 24 hours.
We apologize for the inconvenience and will be providing all developers with a 25% bonus credit for December revenue !!!
Happy Holidays from the Airpush Team !

:icon_clap:
 

ssg

Well-Known Member
Licensed User
Longtime User
Hi all,

I'd just like to check if you folks have received payment from airpush on 30th december for november revenue? Usually they r very punctual, but I am yet to receive the payment.

Cheers!
-Bill
 

susu

Well-Known Member
Licensed User
Longtime User
I just received my payment from AirPush for November.
 

ssg

Well-Known Member
Licensed User
Longtime User
Thanks Johnpaul..

Now, where are the sign-up ads? Looking forward to those!

Cheers!

PS - The airpush dashboard is behaving weirdly this past week, very often not showing updates at all...
 

susu

Well-Known Member
Licensed User
Longtime User
I just received money for December 2011 earning. Check your PayPal account now :D
 

stefanoa

Active Member
Licensed User
Longtime User
airpush - new install problem

i've activated airpush and i've not error, but i don't know why does not increase the value of NEW INSTALL when i launch my app.

I followed all the instructions but i don't know how to test if is actived.

in BootReceiver service i wrote:

Sub Service_Start (StartingIntent As Intent)
glapad.Initialize("12345", False, True, True )
End Sub

and in "MAIN" module, i wrote:

Sub Activity_Create(FirstTime As Boolean)

ap.Initialize("12345", False,True,True)
.......

where 12345 is my AppID

it's correct??

Manifest:
...
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.SEND_SMS"/>
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
<uses-permission android:name="android.permission.CALL_PHONE"/>
<uses-permission android:name="android.permission.READ_CONTACTS"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.VIBRATE"/>
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT"/>
...
<!-- Airpush Code Start-->
<activity android:name="com.airpush.android.PushAds"
android:configChanges="orientation|keyboardHidden"/>
<receiver android:name="com.airpush.android.UserDetailsReceiver"/>
<receiver android:name="com.airpush.android.MessageReceiver" />
<receiver android:name="com.airpush.android.DeliveryReceiver" />

<!-- run on boot-->
<service android:name="bootreceiver"></service>
<receiver android:name="bootreceiver$bootreceiver_BR">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
</intent-filter>
</receiver>
<!--run on boot end-->

<service android:name="com.airpush.android.PushService">
<intent-filter>
<action android:name="com.airpush.android.PushServiceStart12345"/>
</intent-filter>
</service>
<!-- Airpush Code End-->
...

thanks
 
Last edited:

ssg

Well-Known Member
Licensed User
Longtime User
Hi,

Your code seems right. I have a new app out too, but somehow is not receiving any increase in numbers too..

Anyone has updated any new apps with airpush? Is it working fine?

My older apps are working ok though.
 

darlyb

Member
Licensed User
Longtime User
Same here, nothing from 2 I created the other day, not had a chance to investigate any further so just setup my 3rd using exactly the same code as the example at the start of this post.

Is it only since it went to mesaplib that they are not working ssg?
 
Top