problems with flutter doctor - visual-studio

Windows Version (Unable to confirm if installed Windows version is 10 or greater)
Android toolchain - develop for Android devices (Android SDK version 33.0.1)
X Could not determine java version
Visual Studio - develop for Windows
X Visual Studio not installed; this is necessary for Windows development.
Download at https://visualstudio.microsoft.com/downloads/.
Please install the "Desktop development with C++" workload, including all of its default components
[!] Android Studio (version 2021.3)
X Unable to determine bundled Java version.
[!] Android Studio (version 2022.1)
X Unable to find bundled Java version.
problems with flutter doctor

Related

Unknown command line argument : '--reference=/' after Visual Studio Update

I working on project in Windows 10, paring to Macbook for building iOS project, and it's works as expected.
Today I just updated the Visual Studio in Windows and also Visual Studio for Mac and I encountered bunch of errors with Unknown command line argument : '--reference=/'. There is no clue about what to do, does anyone have any ideas ?
Windows
Microsoft Visual Studio Enterprise 2019 - Version 16.11.10
Xamarin.iOS and Xamarin.Mac SDK - 15.2.0.17
Xamarin Android SDK - 12.0.0.3
Mac
Visual Studio for Mac - Version 8.10.19 (build 2)
Xamarin iOS - Version 13.18.1.31
Xamarin Mac - Version 8.6.0.3
XCode - Version 13.2.1
Operating System - Mac OS X 11.3.0

How to build release version of windows app?

How to build release version of windows app in flutter and where to find the build file ?
Actually I have build the windows app using flutter build windows but am not able to locate the file which could to installed to other desktops and could be used further on .
Flutter doctor output :-
H:\window app flutter\windowsapp>flutter doctor
Doctor summary (to see all details, run flutter doctor -v):
[√] Flutter (Channel master, 1.22.0-2.0.pre.36, on Microsoft Windows [Version 10.0.18363.1082], locale en-IN)
[√] Android toolchain - develop for Android devices (Android SDK version 28.0.3)
[√] Chrome - develop for the web
[√] Visual Studio - develop for Windows (Visual Studio Community 2019 16.7.5)
[√] Android Studio (version 4.0)
[√] VS Code (version 1.50.0)
[√] Connected device (4 available)
• No issues found!
Please help 🙂
Flutter 2.10 arrives with stable support for building Windows app.
You can use flutter build windows and it will do the build for you.
Make sure to install Desktop development with C++.
The build .exe file can be found on ...\projectName\build\windows\runner\Release\
You can use msix package for build. To build using msix you need to enable developer mode on Windows.
Type start ms-settings:developers and it will open the setting and enable it.
Open Command prompt (as Administrator if you needed) and navigate to your project directory and type these command
flutter build windows
flutter pub run msix:create
You will get an .msix app that will install the usual way windows does.
You can also configuring your installer.
For more details go to https://flutter.dev/desktop
The executable can be found in your project under
build\windows\runner<build mode>. In addition to that executable,
you need the following:
From the same directory:
all the .dll files
the data directory
The Visual C++ redistributable
You can use any of the methods shown in the deployment example walkthroughs on the Microsoft site.
If you use the application-local option, you need to copy:
msvcp140.dll
vcruntime140.dll
vcruntime140_1.dll
Place the DLL files in a directory next to the executable and the other DLLs, and bundle them together in a zip file.
Yes!
So I found the release build in this folder after executing flutter build windows :-
windowsapp\build\windows\runner\Release
Here windowsapp is the main app directory
Note - For further distribution you'll need to zip the content present
inside the Release folder and distribute the same zipped file.

Cordova build windows on Windows 10 and VisualStudio 2017

Trying to build the Cordova App on Windows 10 always fails with
(node:31) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): No valid MSBuild was detected for the selected target.
on Windows 10 Pro 1709 with VisualStudio 2017 Community Edition.
I exactly followed all instructions for Windows 10 in the cordova docs for windows
I have installed VS with package Mobile Development with Javascript which includes the cordova tools. I also installed the additional Build Tools for Visual Studio 2017.
To create the test app, I used the commands from the docs:
cordova create test
cd test
cordova platform add windows
cordova build windows
After hours of research, I found out the issue could be an active WindowsPolicy DisableRegistryTools, but this is not causing the issue. Reinstalling VisualStudio does also not have any effect. The error message is always the same.
Edit:
I just checked cordova requirements, I did not know that command before. This is the output:
Requirements check results for windows:
Windows OS: installed Windows 10
MSBuild Tools: not installed
MSBuild tools v.12.0 not found. Please install Visual Studio 2013 Express for Windows Update2 from https://www.visualstudio.com/downloads/download-visual- studio-vs
Visual Studio: not installed
Required version of Visual Studio not found. Please install Visual Studio 2013 Express for Windows Update2 from https://www.visualstudio.com/downloads/download-visual-studio-vs
Windows SDK: not installed
Windows SDK not found. Ensure that you have installed Windows 8.1 SDK along with Visual Studio or install Windows 8.1 SDK separately from https://dev.windows.com/en-us/downloads
Windows Phone SDK: not installed
Windows Phone SDK not found. Ensure that you have installed Windows Phone 8.1 SDK along with Visual Studio or install Windows Phone 8.1 SDK separately from https://dev.windows.com/develop/download-phone-sdk
Error: Some of requirements check failed
If it is possible, I would try the required older version of VisualStudio. But the download is not available anymore.
I finally got cordova build windows and cordova run windows working by following this recently posted guide on the cordova blog.
Install VistualStudio Community 2017 or better
With options:
Universal Windows Platform development,
+add optional: Windows 10 Mobile-Emulator (Fall Creators Update)
+add optional: Windows 10 SDK (10.0.15063.0) für UWP: C#, VB, JS
+add optional: Windows 10 SDK (10.0.10586.0)
Mobile development with JavaScript
+add optional: Windows 10 Mobile-Emulator (Fall Creators Update)
+add optinoal: UWP-Tools for Cordova
Install Build Tools for Visual Studio 2017, you will find them on the VS downloads page in Other Tools and Frameworks section
The options below might not all be necessary, but I installed them all to get it just running.
With options:
Visual C++ Buildtools
+add optional: Windows 10 SDK (10.0.16299.0) für Desktop C++
+add optional: Visual C++-Tools für CMake
Buildtools for web development
+add optional: Development tools für .NET Framework 4–4.6
+add optional: .NET Core 2.0-Development tools
+add optional: NuGet-Ziele und Buildaufgaben
+add optional: TypeScript 2.6 SDK
+add optional: Extended ASP.NET-Features
.NET Core-Buildtools
Node.js Buildtools
Make sure to use cordova platform add windows#6.0.0
otherwise 5.0.0 will be added to your project, which is mostly incompatible to VisualStudio 2017.
Make sure to set MSBUILDDIR to C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\MSBuild\15.0\Bin
Make sure to NOT use bash on Windows, otherwise Cordova will not recognize you are on a Windows operating system. So you have to use CMD or Powershell.
I also added these preferences to the config.xml
<platform name="windows">
<preference name="windows-target-version" value="10.0" />
<preference name="windows-phone-target-version" value="10.0" />
<preference name="WindowsDefaultUriPrefix" value="ms-appx://" />
</platform>
- If you still run into errors, try opening the project in Visual Studio and build there.
If you are using Ionic 3, you can use bash to run npm install, ionic cordova platform add windows#6.0.0 and ionic cordova build windows --prod to compile and copy to platform/www. But building the .appx package must be done with CMD using cordova build windows or cordova run windows
If the App style remains Android-like, add this config to app.module.ts
imports: [
IonicModule.forRoot(MyApp, {
mode: 'wp',
})
],

could not locate Android SDK path in visual studio enterprise 2015

Installed v 2015 enterprise edition.
Downloaded JDK ver 9.1 version for 64 bit.
Have files in this path C:\Program Files (x86)\Android\android-sdk\ for Android SDK.
Even after added that SDK path, it shows build a error as
Xamarin.Android for Visual Studio requires Android SDK. Please install it or set Android SDK path on Tools->Options->Xamarin->Android Settings menu.
Screeshot for adding sdk and JDK:

Error building sample driver: An SDK corresponding to WDK version '8.1' was not found

I used one Windows Driver samples from github (Filesys) and tried to build it on Windows 10 with Visual Studio 2015.
I have installed both:
WDK8.1 with its SDK
WDK10
But when i try to build a project i see this error message:
An SDK corresponding to WDK version '8.1' was not found. Please install the SDK before building. minispy (Filter\minispy) C:\Program Files (x86)\Windows Kits\10\build\WindowsDriver.common.targets
but SDK of 8.1 is already installed.
Is there any option in Visual studio that i could use to point it to SDK 8.1?
I had the same problem and the solution
is sdk version 10 released after VS 2015 .
You should download and install it manually. I used the following link for downloading sdk :
https://dev.windows.com/en-us/downloads/windows-10-sdk
Also see this link for help with downloading and installing sdk
http://blogs.msdn.com/b/jpwdkblog/archive/2015/08/21/windows-10.aspx
good luck
In this case, you may missed No.3.
Check following points:
Install Visual Studio 2015
Install Visual C++ (Not installed by default)
Install Windows SDK for Windows 10 (Not installed by default)
Install WDK 10 (Download separately)
Upgrade project from WDK 8.1 (for more detail: https://msdn.microsoft.com/en-us/library/windows/hardware/mt270257%28v=vs.85%29.aspx )
Currently,
Visual Studio 2015 supports WDK 10.
Visual Studio 2013 supports WDK 8.1.
In my environment, Visual Studio 2015 may not support WDK 8.1.
When build in WindowsUserModeDriver8.1 with VS2015, an error was occurred: prop is not found.
WDK 10 supports build drivers for Windows 10 / 8.1 / 8 (/ 7?).
(see also: https://msdn.microsoft.com/en-US/library/windows/hardware/dn914754%28v=vs.85%29.aspx )
To build Windows 8.1 driver, follow below.
Open project properties
Navigate to Configuration Properties > General
Check: Platform Toolset Windows****ModeDriver10.0
Navigate to Configuration Properties > Driver settings
Check: Target OS Version: Windows 8.1
Check: Target Platform: Desktop (Default: Universal)
You are likely targeting the wrong platform toolset. To build a driver for Windows 10, you need to target one of the Windows 10 platform toolset (WindowsKernelModeDriver10.0 or WindowsUserModeDriver10.0). If you want to use SDK 8.1, then you should use the WDK 8.1 platform toolsets (WindowsKernelModeDriver8.1 or WindowsUserModeDriver8.1).
You cannot use the 10.0 toolsets and try to make them point to SDK 8.1 because there were some key changes to how files are laid on disk between the two kits. Using the appropriate toolset should hopefully fix the issue!
Have you followed all the instructions during the installation of VS? https://msdn.microsoft.com/en-us/windows/hardware/dn913721.aspx
After correct installation I have handled the problem.
(Optional)
Did you install Windows 10 SDK?
Download link: https://dev.windows.com/en-us/downloads/windows-10-sdk

Resources