I followed the Airpush Installation Instructions but when I use this line in Android Studio,
main=new Main(this, AdListener);
I get the error, "Expression Expected". What does this mean?
I followed the Airpush Installation Instructions but when I use this line in Android Studio,
main=new Main(this, AdListener);
I get the error, "Expression Expected". What does this mean?
It should look this way:
private AdListener adListener;
main = new Main(this, adListener);