0

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?

David O'Meara
  • 2,983
  • 25
  • 38
Zac1
  • 208
  • 7
  • 34

1 Answers1

0

It should look this way:

 private AdListener adListener;
 main = new Main(this, adListener);
Yurets
  • 3,999
  • 17
  • 54
  • 74
Raj Mohammed
  • 173
  • 1
  • 3
  • 10