Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
119 views

I'm attempting to embed Lua (using minilua.h) into my project. Pure lua scripts work, but anything requiring native libraries fails stating that lua_type symbol is missing, but it's not according to ...
Dakun Skye's user avatar
0 votes
1 answer
387 views

My Java project for my CS class is acting completely whack, and I have no idea why. There's three classes (Cons, Nil, and List) all in a package called "funlist" and in the same folder (also ...
Sam T's user avatar
  • 11
1 vote
1 answer
458 views

I use Lombok in my Spring project and because I use the IDE Visual Studio Code with the plugin Extension Pack for Java, the necessary generated sources are created automatically. This works inside of ...
Socrates's user avatar
  • 9,724
-1 votes
1 answer
113 views

I'd like to print out the names of people that do not have their time as 0, but maybe its the way that im passing the parameters that it doesnt work? I have the number of entries input as 5 Note: I am ...
boomchikaci's user avatar
2 votes
0 answers
406 views

I'm encountering an issue with Firebase in my project, specifically related to a missing dSYM file. I've tried multiple setups with Xcode for setting up with different flavors. , but I'm still stuck. ...
Sabin Simkhada's user avatar
1 vote
1 answer
169 views

Error: The import XXX cannot be resolved I'm facing this issue in Java 11 while trying to migrate from java 8. Parent Project X: Project A: Project Aa: src/test/java: ...
Manoj Nanjundaswamy's user avatar
0 votes
1 answer
483 views

I have written an annotation processor to generate classes to the generated sources directly during compilation. The class generates with valid syntax, and to the correct, matching (same as interface ...
Mustapha Mond's user avatar
0 votes
0 answers
67 views

I'm a engineer student and as I need to use rider to code in C# I also need to use Unitest. The problem is that when I write code like this public class Pyramid { [Theory] [InlineData(1, '*', &...
Jimmy Ngome's user avatar
0 votes
0 answers
258 views

package com.test; public class Main { public static void main(String[] args) { Car car = new Car(); System.out.println("Car speed: " + car.speed); } } package com....
DartMol21's user avatar
0 votes
1 answer
120 views

I created a file Organ.java package OrganProject; public class Organ{ private String name; private String condition; public Organ(String name, String condition){ this.name = ...
ling131031003's user avatar
0 votes
1 answer
472 views

I'm unable to resolve this error. I wanted to use two-way databinding in edittext. Here is the code for the layout file. <?xml version="1.0" encoding="utf-8"?> <layout ...
Anmol Agrawal's user avatar
0 votes
3 answers
794 views

I am making a Java program about a simple student management system. Here's the summary of how the code works: Student class Represents a student with attributes such as the name and grade Provides ...
A_Pag5329's user avatar
0 votes
1 answer
2k views

This is my primary class named Revenue where I'm trying to call a secondary class in same directory as this one and in the same package as well package Hotel; //import java.util.*; public class ...
user9812664's user avatar
-1 votes
1 answer
1k views

I have two classes, one is Course, another is CourseController. They are in the same package , same path; But when I compile javac CourseController.java, Intellij says :"error: cannot find symbol&...
nick nick's user avatar
0 votes
2 answers
959 views

I am working on a notepad application in java. After initializing the database in RoomDB.java class, i am importing the values in my MainDAO.java interface to perform Datebase logics. However, i get ...
Faizan 's user avatar
0 votes
1 answer
251 views

good day, I meet some error when I try to code this. If I initial when declare, it show like this . public class FragmentCalendar extends Fragment { Calendar calendar; CalendarView ...
learningLion's user avatar
1 vote
0 answers
497 views

So I made a profiling using Visual Studio 2022 CPU profiler on one machine. Then I copied the resulting .diagsession file to the local copy of the same project on another machine. But when I try to ...
helgez's user avatar
  • 327
0 votes
1 answer
66 views

I am new to java and have been trying to learn it and now I have been facing this error even though both the files are in the same folder : BankTest.java:3: error: cannot find symbol ...
Dev's user avatar
  • 45
1 vote
4 answers
6k views

I am trying to use a kotlin class in my java class in android studio. But I get the following error twice... "cannot find symbol class KotlinClass" KotlinClass is the file name of the kotlin ...
harry powers's user avatar
0 votes
1 answer
638 views

I am not a programmer and basically this is like a cut-and-paste assignment from our lecturer which did not turn out well for me. Here is the code: try { Class.forName("net....
acceber17's user avatar
0 votes
1 answer
76 views

program-EV Charge Scheduling error Description Resource Path Location Type CPLEX(default) cannot extract expression: forall(i in 0..11, j in 0..4) if ( soc[i][j] > 0.7 ) pevch[i][j] == soc[...
Haripriya M R's user avatar
3 votes
0 answers
230 views

the project structure is: project --app --library_module1 --library_module2 and i need to use AAR files in library_module1. i put aars in library_module2 and added them using artifacts.add() in build....
Draculea's user avatar
  • 313
0 votes
0 answers
843 views

I am using wsdl2java plugin for genreating wsdl in a gradle project. I am using intellij. Now the functionality of JAXB seems fine and from some XSD schema several Java classes are generated in build/...
ISMAEL BOUADI's user avatar
0 votes
1 answer
2k views

My Role Class. I have getter setter annotations: @Getter @Setter @Builder @Entity @Table(name = "role_table") @NoArgsConstructor @AllArgsConstructor public class Role { @Id @...
program's user avatar
0 votes
0 answers
69 views

I am trying to recreate the built in method Offer() myself to use to add items(Strings) to an existing Array List. Here is my code already: import java.util.ArrayList; public class PriorityQueue<...
CoderInNeed's user avatar
2 votes
2 answers
504 views

So I'm learning Selenium for test automation with Java, and I have an error message like in the title, "window()" in IntelliJ is red . I was trying to import org.openqa.selenium.WebDriver....
Weronika's user avatar
0 votes
1 answer
207 views

How can i import Linphone library only when built in Sip Api is not supported? Because this library greatly affects to apk size (~100 Mb) This is example of conditional dependency (based on variable ...
alexbayker's user avatar
  • 1,158
0 votes
0 answers
2k views

I have looked at all the similar questions regarding "cannot find symbol". Most of them give a vague answers in terms of "It means that either there is a problem in your Java source ...
constantlyFlagged's user avatar
0 votes
1 answer
224 views

case 1. class A extends java.util.ArrayList { public static void main(String[] args) { ArrayList a=new ArrayList(); } } Here I am getting a compiletime error saying, cannot ...
veerraju annamdevula's user avatar
0 votes
0 answers
1k views

What went wrong: Gradle could not start your build. *- Cannot create service of type TaskExecuter using method ProjectExecutionServices.createTaskExecuter() as there is a problem with parameter #17 of ...
Choeun Lengrotha's user avatar
0 votes
0 answers
127 views

I do have a MessageRVAdapter in my project directory but I don't know why my app isn't finding this class. I get the following problem in MainActivity.java within app\src\main\java\com\example\chatbot:...
Daniel_devil's user avatar
0 votes
2 answers
168 views

So, this is the sample code that we are supposed to use as reference for a formative assessment. I decided to run it in the terminal to see if it would work, and it always result in "Error Cannot ...
Confusion's user avatar
0 votes
0 answers
19 views

I am having trouble figuring how to solve this "cannot find symbol" error. The error is occurring in the line with if (serverNamePart1.length >= 3) { and it saying that serverNamePart1 is ...
Justin Bridges's user avatar
0 votes
0 answers
17 views

I'm trying to create a factory that contains chart types but I'm getting a cannot find symbol error on my this.map.put(chart.nc); under nc and I have no idea why, can anyone tell me what I'm doing ...
J52677's user avatar
  • 11
0 votes
1 answer
557 views

[Disclaimer: Beginner in Java] My program has run into a problem just now, while I was trying to finish it up. The error was that it cannot find the symbol, and the IDE (I am using Text Pad) pinpoints ...
Jhon Lorenz E. Pabroa's user avatar
2 votes
0 answers
1k views

I am struggling for quite a while to make Lombok getter available in two parts of my Spring Boot API. Despite many articles about this error, I haven’t found a suitable solution on the internet for my ...
Thomas Dunkel's user avatar
0 votes
1 answer
306 views

After following the instruction on the document: https://github.com/Survicate/react-native-survicate I got build failed on Android: error: cannot find symbol Survicate.Survicate.setWorkspaceKey(...
Huan Huynh's user avatar
0 votes
1 answer
725 views

Problem I am trying to create a simple Suitcase class that wraps some Items which have a weight. I created a getTotalWeight() method and now I want to call it in my toString method but I get: cannot ...
sqpl13's user avatar
  • 15
1 vote
3 answers
2k views

I'd like to use isDirectory() method (java.io.File class). I created a simple test code to try out this method, however I always get a 'cannot find symbol' error. My code: import java.io.File; public ...
Belushi's user avatar
  • 127
0 votes
1 answer
2k views

I'm working on C++ code called, via pybind11, from a Python (v3.8) application on Ubuntu 20.04. Running the application I get an error Traceback (most recent call last): snip... ImportError: <full-...
Uri Raz's user avatar
  • 444
0 votes
2 answers
2k views

I am working through a practice assignment in my Java Programming Textbook and have encountered the common "error: cannot find symbol". I have to create an application that refers to another ...
Waxyshaw's user avatar
-1 votes
1 answer
1k views

I am writing a method that looks for the index of the second occurrence of a substring in an array. It finds the index of the first occurrence fine. Next, I tried to create the loop that would start ...
Anya's user avatar
  • 7
-3 votes
1 answer
1k views

I set up a variable that I want returned, but it does not work. The goal of this method is to create a random name generator which can be expanded as I see fit. But it does not return the ...
GalliadII's user avatar
  • 170
2 votes
1 answer
2k views

I'm trying to run V8 engine's samples from here: Getting started with embedding V8. The output static library is built in release mode, locate at out.gn/libv8_monolith.a and clearly has no debugging ...
Tran Chien's user avatar
-2 votes
2 answers
5k views

I am trying to create a class to send information on the day of the week. For some reason when I try to include the class I get an error saying: CreateCalendarVisuals.java:1: error: cannot access ...
KlutzyMender's user avatar
0 votes
1 answer
103 views

I have been trying to deploy an Azure VM to an availability zone like the following link https://azure.microsoft.com/en-us/blog/java-manage-availability-zones-and-more/, but I keep on getting the ...
Tech333's user avatar
  • 41
0 votes
1 answer
646 views

i had this problem with this code and it got the error "Cannot resolve symbol 'Gamepanel'" import java.awt.*; import java.awt.event.*; import java.util.*; import javax.swing.*; public class ...
timjanssen's user avatar
-1 votes
1 answer
680 views

import java.util.Scanner; public class Outside{ public static void main (String[] args){ Scanner scan = new Scanner (System.in); System.out.print("Is your homework done? "); ...
Chukwuemeka's user avatar
0 votes
0 answers
3k views

I've got a fresh React Native app, where I'm trying to use react-native-config: npx react-native init RNConfigDemo cd RNConfigDemo yarn add react-native-config echo "SOME_VAR="something&...
Nick Bull's user avatar
  • 9,966
0 votes
1 answer
163 views

Hi there I'm was trying to make 3 buttons(left, center, right) with actionListener, so when someone clicks on one of these buttons the alignment of FlowLayout of the frame change, but when I'm was ...
Warrior4EVA's user avatar

1
2 3 4 5 6