How to solve "Expression expected" error in Airpush Ad integration? (Android Java)

349 Views Asked by At

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?

1

There are 1 best solutions below

0
On

It should look this way:

 private AdListener adListener;
 main = new Main(this, adListener);