我正努力让我的应用支持2.3.3版本(Api等级10),但我收到以下错误。
Could not find class 'android.app.Notification$Builder', referenced from method
com.google.android.gms.common.GooglePlayServicesUtil.showErrorNotification
答案 0 :(得分:1)
Notification.Builder
。对于早期版本,应使用NotificationCompat.Builder
代替。
由于错误来自Google Play服务,因此对于11之前的目标,请使用google_play_services_froyo
代替google_play_services
。