| Hi guys, 
 I've put the following code into Onsuspend(), because it appeared that Admob was still busy serving up ads to my app when it was suspended
 
 
 
Method OnSuspend()
' if user suspends, we will quit (appeared to be still pulling down some ads when suspended?!)
		#If TARGET="android" 
			Error ""
		#End
End Method
 
 I am not sure this is a great thing to do.
 
 Am I better off leaving the OS to deal with this kind of thing (even if it means the app gets served up a few ads when it's suspended, before it gets swapped out)?
 
 
 |