cian
(Cian)
May 17, 2019, 12:24pm
#1
When I open my HackProtect extension in IDE I get strange line formatting, which makes it hard to manage, and also causes errors. (Because I am new at coding, I am a heavy whitespace user.)
This:
"Build.MANUFACTURER: " + Build.MANUFACTURER + "\n" +
"Build.BRAND: " + Build.BRAND + "\n"
Changes to this
"Build.MANUFACTURER: " + Build.MANUFACTURER + " "Build.BRAND: " + Build.BRAND + "
Other lines change as well.
|| Build.HARDWARE.equalsIgnoreCase("goldfish")
|| Build.HARDWARE.equalsIgnoreCase("vbox86")
Changes to:
|| Build.HARDWARE.equalsIgnoreCase("goldfish") || Build.HARDWARE.equalsIgnoreCase("vbox86")
Robert
(rickastlee)
May 17, 2019, 12:41pm
#2
I am also facing with this problem, IDE removes some line breaks.
2 Likes
Yes I’m also facing with this problem too. I reported that before.
After I save my Kodular IDE project, I lost ignoring character escapes.
Example; this is my code for test variable and I’m trying to print " (quote char):
String test = "file=\"" + file + "\"";
Adding \ (backslash) before " (quote) character will ignore character escape expression, by the way, I can print and use " (quote) in strings.
Like,
Hello “World”!
But,
When I exit from my project and when I open my project, the result is:
String test = "file="" + file + """;
As you can s…
2 Likes
cian
(Cian)
May 18, 2019, 1:05pm
#4
Another example. @Diego . Sorry to call you into this. Can you give us an idea of what is going on?
I close the browser it looks like this
return
"\nVERSION.RELEASE : " + Build.VERSION.RELEASE
I open and it looks like this
return
"
VERSION.RELEASE : " + Build.VERSION.RELEASE
Diego
(Diego Barreiro PĂ©rez)
May 18, 2019, 2:08pm
#5
This issue is now fixed
Please wait up to 24h for cache resetting
Else it should work on Incognito now
3 Likes
cian
(Cian)
May 18, 2019, 2:31pm
#6
You may have introduced a new bug.
Now When I compile I am getting an error.
here is the real code,
if (new File(places[i] + this.binaryName).exists()) {
And here is the code from the error
if (new File(places[i] %u0244 this.binaryName).exists()) {
Diego
(Diego Barreiro PĂ©rez)
May 18, 2019, 2:51pm
#7
cian:
%u0244
This was removed… Make sure cache has been purged
cian
(Cian)
May 18, 2019, 3:23pm
#8
Now it has deleted all the + in my code
Diego
(Diego Barreiro PĂ©rez)
May 18, 2019, 3:31pm
#9
Make sure you are using Incognito…
I have tested it right now and it’s working properly…
Diego
(Diego Barreiro PĂ©rez)
May 18, 2019, 3:34pm
#10
BTW, purged cache in Cloudflare one more time
Try even using other device
cian
(Cian)
May 18, 2019, 4:11pm
#11
Ok . Trying now. In cognito, wifes computer
cian
(Cian)
May 18, 2019, 4:13pm
#12
Nope, it is still deleting the +
Diego
(Diego Barreiro PĂ©rez)
May 18, 2019, 4:15pm
#13
Weird
I would say to wait up to 24h. Here it is working, but probably because I have used development mode
2 Likes