Hong

Results 16 issues of Hong

Flag NETFX_CORE does not work with 3.0.44. It works with versions up to 3.0.38.

.Net Native does not like cscore. I think [this page](https://docs.microsoft.com/en-us/answers/questions/15463/uwp-compilation-error-with-net-native-compile-opti.html) shed some light on why. .Net Native will throw the following errors including the following: `C:\Program Files (x86)\Windows Kits\10\bin\10.0.18362.0\XamlCompiler\Microsoft.Windows.UI.Xaml.Common.targets(482,5): error...

As soon as I add the following to build.gradle: `implementation 'com.github.jiangdongguo:AndroidUSBCamera:2.3.4'` building an app generates the following error: `jetified-common-4.1.1\res\values\values.xml:687:5-705:22: AAPT: error: duplicate value for resource 'attr/orientation' with config ''.` Yes,...

I copied and pasted the code from [AMP Start](https://www.ampstart.com/components#navigation), but got the following: ![image](https://user-images.githubusercontent.com/6095671/64458264-dce8fc00-d0c2-11e9-9c4c-d679e5853bef.png) Here is the code of the page: ``` body { -webkit-animation: -amp-start 8s steps(1,end) 0s 1...

It would be very helpful if some simple instructions are offered for porting an existing UWP to iOS and Android. I am actually still trying to figure what "bridge" means...

## Describe the bug The following code had been working flawlessly for about 2 years until today when I updated a bunch of NuGet packages: `oneDriveRootFolder = await OneDriveService.Instance.RootFolderForMeAsync();` Now,...

bug :bug:
documentation :page_with_curl:

The following error is generated when confusing a UWP class library: ``` [ERROR] Failed to resolve dependency of 'MyClassLibraryUWP.dll'. Exception: dnlib.DotNet.AssemblyResolveException: Could not resolve assembly: Windows.Foundation.UniversalApiContract, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime...

In UVCPreview.cpp, I have modified `void UVCPreview::do_preview(uvc_stream_ctrl_t *ctrl)` to replace ``` result = uvc_mjpeg2yuyv(frame_mjpeg, frame); ``` with ``` result = uvc_mjpeg2rgbx(frame_mjpeg, frame) ``` It frequently crashes: ``` ********** Crash dump:...

``` /** * this class needs permission to access USB device before constructing * @param monitor * @param device */ private UsbControlBlock(final USBMonitor monitor, final UsbDevice device) { if (DEBUG)...

If versionTarget = 27, everything works fine. If versionTarget is set to 28, mUsbManager.requestPermission() never shows the dialog..