You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tasks/app/src/androidTest/java/org/tasks/preferences/PermissivePermissionChecker.kt

12 lines
379 B
Kotlin

package org.tasks.preferences
import android.content.Context
import dagger.hilt.android.qualifiers.ApplicationContext
class PermissivePermissionChecker(@ApplicationContext context: Context) : PermissionChecker(context) {
override fun canAccessCalendars() = true
override fun canAccessForegroundLocation() = true
override fun canAccessBackgroundLocation() = true
}