Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
68 views

Everytime I try to run the app in Android Studio, this error appears. java.lang.AbstractMethodError: Receiver class androidx.room.migration.bundle.FieldBundle$$serializer does not define or inherit ...
Adli Hanafi Rosli's user avatar
0 votes
0 answers
40 views

I’m trying to compile a Lazarus project that uses UniDAC, but Lazarus keeps failing with: unidac10.pas(11,3) Error: Cannot find UniProvider used by unidac10. Check the search path of package unidac10,...
AlbLivX's user avatar
4 votes
1 answer
99 views

I am trying to declare an extension property for the int type in C# 14: extension(int) { public int MyProperty => 13; } I am getting this compilation error: 'MyProperty': cannot declare ...
Theodor Zoulias's user avatar
-5 votes
0 answers
106 views

I have multiple .cpp files and .h files in VS2022, there are no red squiggly things under text (yeah I have no idea what to call them), and the code has forward decl. and no circular includes or ...
NotAnOwl's user avatar
-1 votes
0 answers
25 views

In my Unity Project when my game runs my world item prefab initiates sprites that don't show on my inventory display only the canvas that can't be seen on screen and it doesn't spawn any collectable ...
Duane Cooper's user avatar
0 votes
1 answer
91 views

I'm trying to compile my app using vs code and g++ on windows 11 without having to type all the files manually in the task.json file, but everytime I try to compile I get a fatal error : cc1plus.exe: ...
HugeElmo's user avatar
1 vote
0 answers
47 views

The TypeScript handbook recommends using the in operator for narrowing. Yet this doesn't work when the attribute name is variable. type MyObj = { a?: string; b?: boolean; c?: number; }; ...
WBT's user avatar
  • 2,562
1 vote
1 answer
160 views

I’ve installed GCC (MinGW-w64) and the necessary VS Code extensions for C/C++ development. However, when I try to run even a simple C program, I get the following error: The "gcc" command is ...
Haitham Qabban's user avatar
3 votes
5 answers
260 views

I'm trying to reimplement the standard strlen function in C, and I'm closely replicating its behavior. I defined my function based on standard C declaration for strlen: size_t ft_strlen(const char *s);...
user31651582's user avatar
-3 votes
1 answer
103 views

I apparently hit a Rust bug. The minimal example: use std::cell::RefCell; thread_local! { static REQUESTS_CHECKER: RefCell<()> = RefCell::new(()); } async fn a() {} async fn b() { ...
porton's user avatar
  • 5,909
0 votes
0 answers
62 views

My Qt isn't able to detect MSVC 2022 compiler only showing MINGW compiler in installation. I have Visual Studio with MSVC 2022 Latest and have all the necessary configuration like software ...
Abril's user avatar
  • 1
2 votes
1 answer
404 views

NOTE: Scroll to the bottom for the exact reproduction steps. When I add the dependency com.squareup.okhttp3:okhttp:5.1.0 to build.gradle.kts (app module), apply the "Replace with new library ...
Bxx's user avatar
  • 78
0 votes
1 answer
57 views

When I try to compile FFmpeg to WebAssebly I got wasm-ld-13: error: unknown file type: demux.o, I configure and install FFmpeg (ffmpeg-8.0) using: emconfigure ./configure \ --prefix=$(pwd)/installed ...
ali's user avatar
  • 19
0 votes
1 answer
86 views

I'm new to OMNeT++ 6.1 with INET 4.5. I wanted to create a .msg file where I import the TagBase from inet.common.TagBase. I referenced inet4.5 in Properties -> Project References but it can't ...
Henzer's user avatar
  • 1
0 votes
0 answers
71 views

I am running some old ruby code and it misbehaves with the latest versions of some dependencies. I can change the dependency version in the Gemfile and then ask bundle to install the dependencies. The ...
Sparr's user avatar
  • 7,830
2 votes
1 answer
72 views

For example, if I create file jopa.erl with this code inside ... -module(jopa). ...everything compiles without errors However, if I put this code inside jopa.erl ... -module(lol). and try to compile....
Kitaram's user avatar
  • 31
2 votes
1 answer
56 views

I have been making a Haskell project that I want to continue on in C at some point through the FFI. I wanted to create a makefile to compile all the source with Clang for C and GHC for Haskell. The ...
Jacob Bauer's user avatar
0 votes
1 answer
69 views

I made no changes in any but once i ran the app as usual it started giving me this error : file:///C:/src/flutter/packages/flutter_tools/gradle/src/main/kotlin/DependencyVersionChecker.kt:97:99 ...
Mian Faseeh's user avatar
0 votes
0 answers
39 views

I am unable to use PyCuba, a Python interface for the multidimensional-integration library Cuba, on macOS 15.5. PyMultiNest, which requires PyCuba, is common for Bayesian analysis in the scientific ...
user29650973's user avatar
1 vote
1 answer
62 views

Context I'm trying to learn Rust by just reading the book and working through the problems in Advent of Code (the 2024 edition). Just to make it harder, I decided to practice TDD while I do it. To ...
Juan F. Meleiro's user avatar
3 votes
2 answers
110 views

This is my test code: #include<vector> #include<iostream> #include<type_traits> using std::vector; using std::is_same_v; using std::cout; using std::endl; int func() { struct ...
Vinod's user avatar
  • 1,215
0 votes
1 answer
102 views

It affects any struct. I've cleaned chars, renamed, tried new scripts – still fails. Any solutions? So frustrating. //@version=6 indicator("TestStruct", overlay=true) struct MyData float ...
Carlos Wittman's user avatar
1 vote
2 answers
179 views

The test code is as shown below: #include<vector> #include<algorithm> #include<iostream> using std::vector; using std::min; using std::cout; using std::endl; int func() { vector&...
Vinod's user avatar
  • 1,215
0 votes
0 answers
86 views

I am currently developing with Expo (React Native) and am getting errors as shown in the attached image. I would like to debug it. How do developers who usually use React Native debug it? I would like ...
clifford's user avatar
0 votes
0 answers
46 views

I'm working on an Android project and encountering a strange error during the build process. The app fails while executing the :app:mergeDebugResources task with the following error: I have tried with ...
Salunkhe Rushikesh's user avatar

1
2 3 4 5
413