Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - MCP

#1
Wow thanks for the link spacefractal that opens up a whole new set of possibilities for me  :)
#2
Thanks for your help MrTAToad. It's a toss up between that or "DOCUMENTS' from what I can gather. I guess I'll have to get some more hardware and do some testing.
#3
What texture modes are you using? The textured objects may also be rendering with colours enabled which will obviously be slower than untextured coloured objects.
#4
Thanks for your reply det. I'm used to the eclipse SDK/ndk setup too so I'll follow your instructions and let you know how things work out.  ;)
#5
GLBasic - en / Android help
2013-Mar-17
Hi folks,
I have a couple of newbie questions regarding Android builds I hope someone can help me with:-

1) What's the best file directory to save files to on Android bearing in mind not all devices have external storage using glbasic?

2) Is it possible to change the Android build config to support arm arm7 and x86? If so how would I go about doing this?

3) Is it possible to incorporate the Google licensing api in glbasic compiled app from eclipse and compile the final apk from there?

Any help appreciated thanks.
#6
Quote from: MrTAToad on 2013-Jan-24
Yes, forgot to mention that...  Must be a newly acquired bug :)
The bug is present in version 10.283.
#7
Hi Ian,

Thanks for your reply. I've tested your code snippet and it works fine for me too.
Previously I'd set a breakpoint pretty much where your PRINT statement would be and the debugger falsely reports the strings returned as empty. I think the bug report still stands although it seems to be a debugging issue.

Thanks for your help.
#8
Hi folks,

I'm new to GLBasic and these forums so I'm sad to report that PLATFORMINFO$ doesn't seem to work as implied in the documentation and will only return empty strings regardless of whatever parameter I pass to it. I have the latest GLBasic version of 10.283 and I have GLBasic installed on Win7 (32bit).

Here's my code snippet for you to look at just in case it's me that's doing something wrong...
Code (glbasic) Select

// --------------------------------- //
// Project: TestApp
// Start: Tuesday, January 01, 2013
// IDE Version: 10.283
GLOBAL gPlatform$
GLOBAL gSavePath$
GLOBAL gDocsPath$
GLOBAL gTempPath$
gPlatform$=PLATFORMINFO$("")
gSavePath$=PLATFORMINFO$("APPDATA")
gDocsPath$=PLATFORMINFO$("DOCUMENTS")
gTempPath$=PLATFORMINFO$("TEMP")


Any help would be very much appreciated. Thanks.