Sunday, August 8, 2021

Flutter: Unable to find bundled Java version

Let's say you try to run your flutter app in a simulator and failed.
When you run "flutter doctor", you get this message: "Unable to find bundled Java version".
What you need to do is to duplicate the Contents directory into a directory called jdk [1].
$ cd /Applications/Android\ Studio.app/Contents/jre
$ mkdir jdk
$ cp -R Contents ./jdk/Contents
[1] https://github.com/flutter/flutter/issues/76215#issuecomment-864407892

Thursday, July 15, 2021

Wednesday, April 21, 2021

How to install MinGW on Windows 10

In this video, you will learn on how to install MinGW on Windows 10. After install MinGW, you will get many command tools from Gnu and BSD projects. For example, ls, pwd, sed, awk, gcc and g++. This video will also show you how to run BASH and compile a C program using gcc.