2
我的應用程序有Robolectric框架測試的Android Alertdialog。Robolectric與AppCompat庫不兼容AlertDialog的問題
ShadowAlertDialog.getLatestAlertDialog()
然而,現在AlertDialog改爲android.support.v7.app.AlertDialog正因爲如此Robolectric給我一個不兼容的類型錯誤。
Error:(81, 50) error: incompatible types
required: android.support.v7.app.AlertDialog
found: android.app.AlertDialog
我該如何解決這個問題?
[有](https://github.com/robolectric/robolectric/issues/2232)的問題打開。 – azizbekian