In the web interface of admob when I add a custom event I type in the name of the class, in my case it is ChartboostAdapter. I created a swift file called ChartboostAdapter with the same class name. I always get the console output,
<Google> Cannot find Custom Event class named ChartboostAdapter.Swift class
import Foundation
import GoogleMobileAds
class ChartboostAdapter : NSObject, GADCustomEventInterstitial {
static var mListener:GADCustomEventInterstitialDelegate?;
static var cAdapter : ChartboostAdapter?;
var delegate:GADCustomEventInterstitialDelegate?;
override init(){
}
.../
}Enter the fully qualified name of the class that implements the custom event.
If your class is implemented in Swift, you need to prefix the class name with the name of its app / framework module (for example, appName.className).
Target name is required if you have multiple targets in your project or if the project name is different from the target name. With the target name, it would look like this: appName_targetName.className. In addition, remember to replace any non-alphanumeric characters such as dashes with underscores.
For more details, see this example.
--
---
You received this message because you are subscribed to the Google Groups "Google Mobile Ads SDK Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-admob-ads-sdk+unsub...@googlegroups.com.
To post to this group, send email to google-admob-ads-sdk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-admob-ads-sdk/e292094e-f424-4bb1-b840-39651ae70d9a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.