I'm having a problem with the Admob lib - specifically, when I call .LoadAd, I get this error: java.lang.NoClassDefFoundError: Failed resolution of: Landroid/support/v4/util/SimpleArrayMap;
I suspect that this is because of a missing lib file or something...any ideas?
I'm just using your tutorial code at the moment, to rule out any possible errors in my own....so I'm using this (which isn't working):
Dim height As Int
If GetDeviceLayoutValues.ApproximateScreenSize < 6 Then
'phones
If 100%x > 100%y Then height = 32dip Else height = 50dip
Else
'tablets
height = 90dip
End If
Activity.AddView(adView1, 0dip, 100%y - height, 100%x, height)