I have some links that may help you:
How to start Super Dev Mode in GWT
Also check out this topic fooobar.com/questions/1195793 / ...
EDIT
I tested on Android Studio with MacOS
Steps:
Run ./gradlew html:clean to clean your html module
- In the Android Studio terminal, I run the command
./gradlew html:superDev - I got
The code server is ready at http://127.0.0.1:9876/ on the terminal - Then I open Google Chrome, View → Always show bookmarks bar
- I typed
http://127.0.0.1:9876/ in the address field -> enter - I have a page with
Dev Mode On and Dev Mode Off , two buttons - Drag
Dev Mode On to the bookmarks bar, which is below my address bar - Done! now I'm looking for http: // localhost: 8080 / html / , I got my game in the browser
- Click the
Dev Mode On button, which is located in the bookmarks bar, I have an option to compile
Now I need to deploy my html project
I am running ./gradlew html:dist in Android Studio Terminal
I got a BUILD SUCCESSFUL in the terminal, then I found the dist folder inside my html module.
dist is inside the html module -> build -> dist
I copied the dist folder and deployed it to my server.
EDIT 2
Make sure that badlogic.jpg is in the folder with your resources in the Android module
Check the entry in the assets.txt file and find badlogic.jpg inside the html module->war->assets . If the file or record does not exist.
Somehow the program cannot write to the resource folder
- Check which programs open the / s file
- Check access rights and administrator rights
- Delete the cache files, run "gradlew html: clean html: superDev" for each new launch of superDev.
- Check antivirus software, they may indicate GWT behavior as suspicious
Aryan source share