Open Doldrums opened 1 year ago
@daadu could u take a look
any update?
any update?
I also hit the very same issue
% flutter doctor
Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel stable, 3.10.3, on Ubuntu 22.04.2 LTS 5.15.0-73-generic, locale en_US.UTF-8)
[!] Android toolchain - develop for Android devices (Android SDK version 33.0.2)
✗ cmdline-tools component is missing
Run `path/to/sdkmanager --install "cmdline-tools;latest"`
See https://developer.android.com/studio/command-line for more details.
✗ Android license status unknown.
Run `flutter doctor --android-licenses` to accept the SDK licenses.
See https://flutter.dev/docs/get-started/install/linux#android-setup for more details.
[✗] Chrome - develop for the web (Cannot find Chrome executable at google-chrome)
! Cannot find Chrome. Try setting CHROME_EXECUTABLE to a Chrome executable.
[✓] Linux toolchain - develop for Linux desktop
[✓] Android Studio (version 2022.2)
[✓] VS Code (version 1.78.2)
[✓] Connected device (2 available)
[✓] Network resources
And the same issue happened also on real android device when uploading the example APK.
Same issue
Guys, this is AP functionality, which is broken from SDK 26 and above. The example app is out of date as long as AP functionality is concerned.
I guess you know the best, to me the error code looked like the platform - communication failed for some mysterious reason; like it would not be able to encode the ENUM value of WIFI_AP_STATE_DISABLED
Same issue
original:
private void getWiFiAPState(Result poResult) {
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.Q) {
poResult.success(moWiFiAPManager.getWifiApState().ordinal());
} else {
poResult.success(localOnlyHotspotState);
}
}
fixed:
private void getWiFiAPState(Result poResult) {
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.Q) {
poResult.success(moWiFiAPManager.getWifiApState().ordinal());
} else {
poResult.success(localOnlyHotspotState.ordinal());
}
}
Android 12 API 35 nothing works
Android 12 API 35 nothing works
same here
Is there any updates?
in plugin example