Questions tagged [run-app]

51 questions
28
votes
8 answers

ERROR: resizing partition e2fsck failed with exit code 8

I'm new to android studio. When I try to run my first programme in android studio on the emulator, I get this error. I have searched through other comments and have also tried decreasing my build.gradle from 24.0.0 to 23.0.3 as shown below, but it…
26
votes
12 answers

Flutter: Found this candidate, but the arguments don't match

I am working on a flutter app and project was running perfectly but suddenly project isn't running and it is giving me an error. Here is the error code i am getting when i try to run app Compiler…
17
votes
9 answers

How to use command to shutdown grails run-app

After executing grails run-app, except using Ctrl + C", is there a command to shutdown it?
zbchen
  • 205
  • 1
  • 2
  • 6
9
votes
5 answers

java.lang.LinkageError: loader constraint violation in Grails project

I've built a Grails project with POI (include poi-3.7 and poi-ooxml-3.7). I've added these 2 external libraries to dependencies block in BuildConfig.groovy file of my project. There's nothing strange when I compiled it. But when I called the command…
Đinh Hồng Châu
  • 4,700
  • 14
  • 47
  • 87
8
votes
2 answers

returns error 'UNSUPPORTED'' while run app

I just updated my Android Studio to version 3.5. When I run App using my phone, it successfully compiles, but an error occurs during the installation process. this is the error message: Installation did not succeed. The application could not be…
5
votes
3 answers

Running war on tomcat7 vs grails run-app

I am having a problem running grails generated war file on tomcat7. If/when I run the same app with grails run-app all is good and in the proper working order. The exception I get while running tomcat7 and deployed war: 2014-08-20 09:17:28,933…
ash
  • 661
  • 3
  • 8
4
votes
2 answers

Flutter Hot Reload and Hot Restart do not always work

For now one week, sometimes when I HotReload my changes are not applied (the log says it's been HotReload but in fact, they are not) and the same when I HotRestart so I'm forced to stop and re-run the app (and sometimes to delete the build)! …
4
votes
4 answers

What is the difference between main function and the runApp() function in Flutter?

I tend to ask this question because most of the time we directly call the runApp function main and do nothing else. My question is that why was runApp and main kept different? It could have been simple that either main function or runApp function…
Harsh Gupta
  • 701
  • 1
  • 4
  • 7
3
votes
0 answers

Shiny app is not working

I try to build a shiny app with R but when I press RunApp the following Error Message appears: TypeError 'undefined' is not an object (evaluating 'c.b.') Any ideas to solve this problem? Shiny app looks like this:…
N11
  • 39
  • 4
3
votes
1 answer

Grails - using subdomain of localhost on run-app

Is there any way of configuring the embedded tomcat (from run-app) to respond to myapp.localhost:8080 instead of localhost:8080/myapp ?
cripox
  • 597
  • 1
  • 7
  • 18
2
votes
0 answers

Can RStudio be configured to run app in a Shiny project by default?

Can RStudio be configured to launch my project as a Shiny app even when the server.R, ui.R or app.R files are not in focus? I know I can use the runApp function in the console, but would like to just hit the menu button or, even better, a keyboard…
dommer
  • 18,952
  • 9
  • 68
  • 124
2
votes
2 answers

Run grails functional test without having embedded tomcat start

I have a project that I am usually debugging/running using the grails run-app command. I would like to run a test but without having the server run again only for the specific test. I usually run the server in debug mode all the time in the…
Menelaos
  • 20,773
  • 14
  • 71
  • 130
1
vote
3 answers

Upgrade to Grails 2.0: /index.gsp not found

I have upgraded from Grails 1.3.7 to 2.0.0.RC1: After sorting out a lot of issues with depdendencies I have finally managed to start my Grails application but when browsing to URL it tell me I receive the following: GroovyPagesServlet: "/index.gsp"…
Jonas
  • 784
  • 10
  • 29
1
vote
1 answer

grails run-app returns a strange case of "context initialization failed"

I'm using grails 2.0.0.M1 with few plugins (spring-security-core-1.2.1, spring-cache-1.3.1). No problems cleaning and comipling the application, only running it. This is the result executing "grails run-app --stacktrace": ERROR…
lucke84
  • 4,186
  • 3
  • 32
  • 55
1
vote
1 answer

Start external application from Python as new process

How to start an external application with python but not using os.system or subprocess.call? This external application is one another Win32 console app. The problem with os.system('app') is that when executed external app is closed then I can…
Josef
  • 2,430
  • 5
  • 29
  • 56
1
2 3 4