错误: 程序包android.support.annotation不存在
import android.support.annotation.IntDef;
说明你当前项目使用的是 AndroidX 架构,而你引用的是 过时的 android.support.annotation.IntDef 包,所以找不到。
迁移提示(如果你还在用旧库)
如果你之前是旧项目升级来的,你可以运行:
Refactor > Migrate to AndroidX
Android Studio 会自动帮你替换如 android.support.annotation
→ androidx.annotation
。