4,772 questions
-3
votes
0
answers
22
views
How to screencast easily using Kotlin? [closed]
The only documentation I've found on using chromecast is this and it is a piece of crap (in my opinion). I'd like to make a chromecast flutter plugin that invokes native Kotlin using Platform Channels ...
0
votes
0
answers
33
views
ERROR: do_prepare_recipe_sysroot: The file /usr/bin/cargo is installed by both rust-native and cargo-native, aborting
After upgrading to Rust v1.86.0 locally (currently poky master has v1.85.1),
the following error is observed:
ERROR: libstd-rs-1.86.0-r0 do_prepare_recipe_sysroot: The file /usr/bin/cargo is installed ...
0
votes
0
answers
36
views
Where are these runtime startup/shutdown errors coming from using C++ WinRT/WinUI-3?
I have created a small C++ WinRT/WinUI-3 project to isolate the errors I've been experiencing. I start with a Blank App, Packaged (WinUI 3 in Desktop) using VS2022 V17.13.6 solution. Then I strip out ...
0
votes
0
answers
28
views
React Native WireGuard VPN Package Linking Issue
I want to use this library :
https://github.com/usama7365/react-native-wireguard-vpn
I did everything in the Readme guide which is:
I installed the library with npm
I ran expo prebuild
I ran pod ...
0
votes
0
answers
32
views
How to call method of another .Net library from a function exported for native code using DllExport 1.8?
We created a .NET 8 library DllExportTest.dll in C#. This library exports two functions (AddOne and AddOneWithHelper) to be called from native code.
The export is done with the DLLExport 1.8 package.
...
0
votes
0
answers
75
views
Why does this Safari Error on iOS Simulator when redirecting to Auth0, and how to debug?
I am using expo for a react native app. I am using a development build on an iOS simulator so that I am able to use Auth0 as my authentication package. I am using their build in sdk function ...
1
vote
0
answers
35
views
type 'NativeScannerModule' does not conform to protocol 'AnyModule'
I am trying ti implement a native module for scanning air printers and getting this error
import ExpoModulesCore
import Foundation
public class NativeScannerModule: NSObject,Module, ...
0
votes
0
answers
26
views
Dev launcher setup that initializes twice on Android React Native app startup causes crash
My app crashes during startup.
When I use logcat I get the error
(reverse domain name deliberately obscured for security):
E FATAL EXCEPTION: main (Ask Gemini)
...
0
votes
1
answer
30
views
React Native fail to run on an emulator
I just created me a new react native project on ubuntu lts with command npx @react-native-community/cli init and the project created just fine. after finishing with the project I CD into the project ...
0
votes
0
answers
25
views
React native: Using setTimeout to render and hide text
I am trying to use setTimeout to hide rendered text after a certain interval. Everything works well until I press an element to display (or set) the text. I then get an error message:
(NOBRIDGE) ...
0
votes
0
answers
21
views
Xamarin native Android linked Reference not able to build and showing error reference not linked
The type or namespace name 'SalesRecordManager' could not be found (are you missing a using directive or an assembly reference?)
The name 'SalesRecordManager' does not exist in the current context
The ...
0
votes
0
answers
36
views
I can't get the GPS metadata of an image on Android React Native, most show 0 and some 0/1, 0/1, 0/1
I can't get the GPS metadata of an image on Android React Native, I've tested many libraries, most show 0 and some 0/1, 0/1, 0/1, but they are not the correct GPS coordinates.
i tested many libraries ...
0
votes
0
answers
21
views
Get list of supported formats for ANativeWindow_setBuffersGeometry?
Is there a way to get supported device specific formats when using ANativeWindow_setBuffersGeometry? My current approach to test each option seems awkward. I can use ANativeWindow_getFormat (window) ...
0
votes
0
answers
62
views
Cannot create a Xaml UserControl in WinUI(3) WinRT/C++ Native Desktop App
I have created a minimalist WinUI(3) WinRT/C++ Desktop (Blank, Packaged) and added a single UserControl. The module that is added compiles and runs just fine. But I want to deal with ...
1
vote
2
answers
79
views
How to set `java.io.tmpdir` using Quarkus in native mode in a container
How to set java.io.tmpdir using Quarkus in native mode in a container.
I've tried different options but didn't manage to have the Files. createTempDirectory use my own value:
TMPDIR as env -> not ...