File is not opening above android version 9 in Flutter - flutter

Open file plugin url
This plugin is working in oreo and below android versions. But It is not working in Android 9 and above versions. File is not opening. It is crashing.
I have given all android permissions but it is not working.

Related

Chrome://inspect Devices option not showing devices after Chrome upgrade

I was happily debugging some javascript code used in my Flutter Webview project, but it stopped working yesterday.
I do execute
if (Platform.isAndroid) {
await AndroidInAppWebViewController.setWebContentsDebuggingEnabled(true);
}
in main.dart.
Dev platform is Mac/M1 chip with Monterey Version 12.5.1, running Android Studio Chipmunk/2021.2.1 Patch 2
I don't think it is Flutter related as I tried also with a strictly Android project and it has same problem.
It does look like Chrome was recently updated. I now have 'Version 105.0.5195.125 (Official Build) (arm64)'.
Anyone else have this problem using this version of Chrome?

Vscode showing erros after locating flutter and dart sdk

I located the flutter and dart sdk paths in the settings.json file but still Vscode showing errors.
I think it's related to the sdk path only.
Edit: It's not detecting any devices

Grandlew bat file not found in windows 10

I have installed flutter and android studio. Followed some resources I have added path.(In windows)
But everytime I run the first project it is giving errors
like. Grandlew bat file not found.
sometimes : exception: exit with 1
Flutter doctor is always giving licenses unknown. I tried number of solutions in the YouTube and from here..but still getting same thing..
My dreams are going to stop in the first step.
you need to install flutter and dart plugin in your android studio/VS code.
to install a plugin in Android Studio follow these steps
Launch Android Studio application
Choose File -> Settings (For Mac Preference )
Search for Flutter then for dart(But dart will be installed automatically with flutter)
I just noticed you don't have Android SDK either, for that, you should go to your android studio and on the top right corner click on the SDK icon, and then install 28/29 version of android SDK hopefully it will solve your problem
alternatively, you can download SDK from here as well

Flutter: Intellij does show no device (but no problem in Android Project)

I am trying to set up Flutter in Intellij (2020.1 Community Edition). I installed Dart and Flutter as plug-ins. I also have installed the Flutter SDK as well as the Android SDK.
After downloading an android virtual device (Pixel 2 XL API 27) I wanted to try out to run the Flutter template app, but it fails to recognize the emulator. When I create an Android Project and try to run it with an emulator it runs without any problems.
This post (Flutter : No devices) did not provide me with anything useful.
I solved the issue. I went to File > Project Structure > Project. At Project SDK I selected Android API 28 Platform. Then click Apply and Ok to finish this process. After doing this step you can select the device.
Intellij does that a lot in my system. You had to check Flutter path is set in File | Settings | Languages & Frameworks | Flutter
and Android SDK is set to Android API 29 Platform in File > Project Structure > Project

How to get debug output on eclipse console screen for cordova app

I am using cordova plugin (THym) with eclipse Mars to make applications for android platform and I have an Android device with Android 4.3 due to which, chrome remote debugging is not working in my case.
Also I have tried android virtual device but even that didn't worked.
Only thing I am able to do is to run apk on my android device.
How can I debug the cordova app using eclipse?
Weinre is your friend for older Android Versions:
http://people.apache.org/%7Epmuellr/weinre/docs/latest/
And you should use Android Studio for developing Cordova Apps. Eclipse is no more supported.