Bug? B4i does not work at all with hosted Xcode compiling, directory name invalid

Simon Smith

Active Member
Licensed User
Longtime User
1. Registered user of B4A, registered Android/iPhone Developer.
2. Standard install with extra for remote compiler of B4i
3. Set the correct IP address to my external IP, and tried internal
4. For simplicity installed it to c:\b4i instead of default which also didn't work.

5. Build Configurations, standard.

upload_2014-12-15_22-38-5.png


6. Build server setting set correctly with correct password

upload_2014-12-15_22-39-27.png


7. Paths as follows, project saved in c:\temp\b4iex.b4i

upload_2014-12-15_22-40-30.png


8. Press Run in Debug mode. Constantly get the directory name is invalid.

upload_2014-12-15_22-41-31.png


Cannot work out what it could be. Please assist!
Simon
 

Simon Smith

Active Member
Licensed User
Longtime User
Hi, as mentioned, it is simply c:\temp - full rights.
It used to be on a portable hard drive as a different project. I've tried all.
 

Simon Smith

Active Member
Licensed User
Longtime User
Same exact error in c:\users\simon\documents with standard code untouched, below is the screen.

'Code module
#Region Project Attributes
#ApplicationLabel: B4i Example
#Version: 1.0.0
'Orientation possible values: Portrait, LandscapeLeft, LandscapeRight and PortraitUpsideDown
#iPhoneOrientations: Portrait, LandscapeLeft, LandscapeRight
#iPadOrientations: Portrait, LandscapeLeft, LandscapeRight, PortraitUpsideDown
#End Region

Sub Process_Globals
'These global variables will be declared once when the application starts.
'Public variables can be accessed from all modules.
Public App As Application
Public NavControl As NavigationController
Private Page1 As Page

End Sub

Private Sub Application_Start (Nav As NavigationController)
NavControl = Nav
Page1.Initialize("Page1")
Page1.Title = "Page 1"
Page1.RootPanel.Color = Colors.White
NavControl.ShowPage(Page1)
End Sub

Private Sub Page1_Resize(Width As Int, Height As Int)

End Sub

Private Sub Application_Background

End Sub
upload_2014-12-16_1-10-40.png
 

Simon Smith

Active Member
Licensed User
Longtime User
Hi, again no luck. Surely this was tested before release?

1052328
Getting token.
System.IO.IOException: The directory name is invalid.

at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
at System.IO.Directory.InternalGetFileDirectoryNames(String path, String userPathOriginal, String searchPattern, Boolean includeFiles, Boolean includeDirs, SearchOption searchOption)
at System.IO.Directory.GetFiles(String path, String searchPattern, SearchOption searchOption)
at fd.f()
at ct.a(cw A_0, Boolean A_1, c A_2, Boolean A_3)
 

Simon Smith

Active Member
Licensed User
Longtime User
installed in c:\b4i, with full network, everyone, administrator, users access to c:\temp where the sample project lies. Why?
 

Simon Smith

Active Member
Licensed User
Longtime User
Congrats, new problem:

Parsing code. 0.00
Compiling code. 0.01
Compiling layouts code. 0.00
Compiling debugger engine code. 0.29
Building Xcode project 0.01
Sending data to remote compiler. Error
Mobile provision file not found.

But if that is covered in full in the other forum please let me know. I am a Registered Developer. Any more apps on the Appstore yet from B4I?
Simon
 
Top