我正在使用android studio 3.1。这是我的构建文件

compileSdkVersion 26
defaultConfig {
    applicationId "com.example.appcomponentexample"
    minSdkVersion 16
    targetSdkVersion 26
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}


我收到错误消息:


  找不到符号类JobSchedular


当我尝试使用JobSchedular类进行构建时。我不知道怎么了。

最佳答案

找不到符号类JobSchedular


当您没有正确导入JobSchedular时发生。将导入语句添加到您的班级:

import android.app.job.JobScheduler;

由于5.0支持JobScheduler,因此请牢记向后可比性。有关更多详细信息,请参考此SO

09-11 23:07