LiveCode 7.0.5 and Xcode 6.4

Getting into LiveCode for iOS? Ask your questions here.

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller

FireWorx
Posts: 362
Joined: Wed Sep 07, 2011 9:39 pm

Re: LiveCode 7.0.5 and Xcode 6.4

Post by FireWorx » Mon Aug 03, 2015 11:01 pm

Has anyone been successful at testing and deploying an IOS app in IOS version 8.4 ? When attempting to pair LC 7.0.5 or 7.0.6 with x-code 6.4 in the mobile preferences I continue to get error "The chosen folder is not a valid IOS SDK among 5.1, 6.1, 7.1, 8.2, 8.3. Which sorta makes sense because the SDK we are looking for in Xcode 6.4 is 8.4.

SO it appears to be a Livecode issue.

I tried downloading LC 7.1 dp and I was able to open my app in the 8.4 simulator but the app wouldn't open correctly because LC 7.1 won't open my SQLIGHT database. because the command below fails.

command databaseConnect
local tDatabasePath, tDatabaseID
## The database must be in a writeable location
put specialFolderPath("documents") & "/FireWorxDb.sqlite" into tDatabasePath
## Open a connection to the database
## If the database does not already exist it will be created
put revOpenDatabase("sqlite", tDatabasePath, , , , ) into tDatabaseID
--answer tDatabaseID ----RETURNS ERROR IN LC 7.1 in SIMULATOR WORKS FINE IN LC 7.0.6
## Store the database id as a custom property so other handlers can access it
setDatabaseID tDatabaseID
databaseCreateTables
end databaseConnect

AGAIN-- ANYONE SUCCESSFULLY TEST OR DEPLOY TO IOS 8.4 IF SO HOW !!!

Post Reply