Open harryandroiddev opened 9 months ago
Same thing at my side. It seems that simultaneous calls to the requestAuthorization()
.
Did you add to manifest permission "android.permission.health.READ_STEPS"?
Same issue here Health connect App is not opening for granting my app permission.
Same thing at my side. It seems that simultaneous calls to the
requestAuthorization()
.
Have you found any workaround? Is there any way not to check requestAuthorization if already allowed permission?
use following in MainActivity.kt file :
import io.flutter.embedding.android.FlutterFragmentActivity
class MainActivity: FlutterFragmentActivity() {
}
instead of
class MainActivity: FlutterActivity() {
}
Remember to specify the plugin name in the title!
Device / Emulator and OS
Describe the bug
When i use health connect on android 13 the app crashes when requesting for the permission .
To Reproduce
When trying to access permission the error occurs . HealthFactory health = HealthFactory(useHealthConnectIfAvailable: true); health. requestAuthorization
Expected behavior
app should not crash
Actual behavior
app is crashing
Flutter doctor
[✓] Flutter (Channel stable, 3.16.4, on macOS 13.0 22A8380 darwin-arm64, locale en-IN) [✓] Android toolchain - develop for Android devices (Android SDK version 34.0.0-rc2) [✓] Xcode - develop for iOS and macOS (Xcode 14.2) [✓] Chrome - develop for the web [✓] Android Studio (version 2022.1) [✓] VS Code (version 1.86.2) [✓] Connected device (3 available) [✓] Network resources
Additional information
I/ViewRootImpl@5ec6f50MainActivity: ViewPostIme pointer 1 I/flutter (29069): >> trying to get permissions for [STEPS, BLOOD_GLUCOSE] with permissions [0, 0] I/FLUTTER_HEALTH(29069): Permission launcher not found I/flutter (29069): >> isAuthorized: false [healthconnect ] isavialable = true req false isgranted PermissionStatus.granted false E/AndroidRuntime(29069): FATAL EXCEPTION: main E/AndroidRuntime(29069): Process: com.example.health_app, PID: 29069 E/AndroidRuntime(29069): java.lang.SecurityException: com.example.health_app lacks the following permissions: [android.permission.health.READ_STEPS] E/AndroidRuntime(29069): at androidx.health.platform.client.impl.error.ErrorStatusConverterKt.toException(ErrorStatusConverter.kt:47) E/AndroidRuntime(29069): at androidx.health.platform.client.impl.ReadDataRangeCallback.onError(ReadDataRangeCallback.kt:35) E/AndroidRuntime(29069): at androidx.health.platform.client.service.IReadDataRangeCallback$Stub.onTransact(IReadDataRangeCallback.java:72) E/AndroidRuntime(29069): at android.os.Binder.execTransactInternal(Binder.java:1321) E/AndroidRuntime(29069): at android.os.Binder.execTransact(Binder.java:1280) E/AndroidRuntime(29069): Suppressed: kotlinx.coroutines.internal.DiagnosticCoroutineContextException: [StandaloneCoroutine{Cancelling}@c094c5e, Dispatchers.Main] I/Process (29069): Sending signal. PID: 29069 SIG: 9 Lost connection to device.
Exited.