Getting error:
error: cannot access zzb class file for com.google.firebase.iid.zzb not found
after including AccountKit:
compile 'com.facebook.android:account-kit-sdk:4.+'
Also onCreate & onDestroy is not getting resolved.
public class FirebaseInstanceIDService extends FirebaseInstanceIdService {
@Override
public void onCreate() {
super.onCreate();
}
@Override
public void onDestroy() {
super.onDestroy();
}
}
Firebase & play services: v11.4.0
Firebase
and play services
libraries were older.
Upgraded them to v15.0.0
and accountkit
to v4.32
resolved compile errors and build errors.
Solution- Downgrading them to 11.8.0 worked. (Accountkit v4.32)
Solution- Notification not showing in Oreo