-
Notifications
You must be signed in to change notification settings - Fork 46
Open
Description
Specify the language of the codelab if it is not English:
In which task and step of the codelab can this issue be found?
2
Describe the problem
imports are in the wrong order
import androidx.work.CoroutineWorker
import androidx.work.WorkerParameters
import android.content.Context
class BlurWorker(ctx: Context, params: WorkerParameters) : CoroutineWorker(ctx, params) {
}to
import android.content.Context
import androidx.work.CoroutineWorker
import androidx.work.WorkerParameters
class BlurWorker(ctx: Context, params: WorkerParameters) : CoroutineWorker(ctx, params) {
}Steps to reproduce?
- Go to...
- Click on...
- See error...
Versions
Android Studio version:
API version of the emulator:
Additional information
Include screenshots if they would be useful in clarifying the problem.
Metadata
Metadata
Assignees
Labels
No labels