iOS Question problem with build and full screan

soroush_safarii

Member
Licensed User
hi
i use fullscrean code in this theater :
https://www.b4x.com/android/forum/threads/full-screen-apps.47866/#content
______________________________________________________
1. Add this attribute:
Code:
#PlistExtra: <key>UIViewControllerBasedStatusBarAppearance</key><false/>
2. Add this code:
Code:
Dim no AsNativeObject = app
no.RunMethod("setStatusBarHidden:animated:", Array(True, False))


___________________________________________________
and when i use tools>build server>build release app
i see this error
and i try over and over
 

Attachments

  • ccc.JPG
    ccc.JPG
    74 KB · Views: 207
  • cvb.JPG
    cvb.JPG
    71.6 KB · Views: 203

tufanv

Expert
Licensed User
Longtime User
hi
i use fullscrean code in this theater :
https://www.b4x.com/android/forum/threads/full-screen-apps.47866/#content
______________________________________________________
1. Add this attribute:
Code:
#PlistExtra: <key>UIViewControllerBasedStatusBarAppearance</key><false/>
2. Add this code:
Code:
Dim no AsNativeObject = app
no.RunMethod("setStatusBarHidden:animated:", Array(True, False))


___________________________________________________
and when i use tools>build server>build release app
i see this error
and i try over and over


The error says nothing about the full screen. it says bundle id is not correct. Check project / build configurations and enter package name.
 
Upvote 0

soroush_safarii

Member
Licensed User
The error says nothing about the full screen. it says bundle id is not correct. Check project / build configurations and enter package name.
when i clean fullscrean code , i havent any problem and all work good ,
but when i write this code i have receive error ,
 
Upvote 0

tufanv

Expert
Licensed User
Longtime User
Why did you delete key and /key at the end of the plist line ? Add it exactly written in the post you took the code
 
Upvote 0
Top