Android Question BUG - white screen

jeronimovilar

Active Member
Licensed User
Longtime User
My app is working in 3 differents tables. SDK 26, 28 and 30, but just one (sdk 26) shows white screen.
I reset 1, 2, 3.....times and its working fine again
What is the problem?

my app is sdk 26 in Manifest Editor.
two attached print screen:
 

Attachments

  • Screenshot_20221019-110510.png
    Screenshot_20221019-110510.png
    4.8 KB · Views: 71
  • Screenshot_20221019-110652.png
    Screenshot_20221019-110652.png
    46 KB · Views: 75

jeronimovilar

Active Member
Licensed User
Longtime User
Run in mode debug shows: "Program compiled in debug mode, can only run with debugger attached."
and white screen
my b4a is attached


Manifest Editor:
Manifest Editor:
AddManifestText(
<uses-sdk android:minSdkVersion="5" android:targetSdkVersion="27"/>
<supports-screens android:largeScreens="true"
    android:normalScreens="true"
    android:smallScreens="true"
    android:anyDensity="true"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
'End of default text.
 

Attachments

  • SBY-2023.zip
    15 KB · Views: 59
Upvote 0

agraham

Expert
Licensed User
Longtime User
Run in mode debug shows: "Program compiled in debug mode, can only run with debugger attached."
That's normal. If you run a program compiled for debug without the IDE attached that's what happens. The IDE actually runs a lot of the code in debug mode - not the device,
 
Upvote 1

jeronimovilar

Active Member
Licensed User
Longtime User
I think that problem is the tablet.
I creat a new projet. using the default. mode debug
works fine 1, 2...4 times. and white screen after :(
reset tblat 3 times and works fine again
 
Upvote 0
Top