Questions tagged [mosync]

MoSync's open-source Software Development Kit (SDK) and MoSync Reload enable mobile and web developers to build and compile apps for up to nine different mobile platforms with one single code base, using standard C/C++ or HTML5/JavaScript, or a combination of both to create hybrid apps.

57 questions
0
votes
1 answer

Sending data from client to SQL database (MoSync)

I sincerely apologize if this has been asked before, however I was unable to find a suitable answer that appeared similar to my current situation. I am developing an app with MoSync using the MAUI because of the same appearance across all platforms.…
0
votes
1 answer

MoSync Android : Browse File System

I am creating an app in MoSync for Android and iOS. I am using HTML5/JS/JQuery Mobile, and I need an example on how to browse a file in a MoSync App. I used simple: tag, which is rendering normal file browse of HTML. However,…
GKG4
  • 440
  • 1
  • 4
  • 16
0
votes
1 answer

AdMob and pure HTML5-JS Integration

I have an App build on MoSync Reload - e.g. pure HTML5/JS. Is there a way to show an AdMob or other ad network ad in my App without Java XML? The old AdMob HTML tutorial (https://support.google.com/admob/answer/1704625?hl=en) is now 404 and they …
Spirodo
  • 11
  • 3
0
votes
2 answers

how to determine how many columns in a mobile app could be rendered reasonably? (screen size/resolution/orientation)

Question: For a mobile app being developed with a cross-platform tool, how would one determine how many columns in a mobile app could be rendered reasonably? For example how to determine whether extra columns could be placed in a layout for a given…
Greg
  • 34,042
  • 79
  • 253
  • 454
0
votes
1 answer

How are actual native UI widget resolved within the NativeUI C++ infrastructure?

I'd like to know and understand the code which ultimately calls the actual IOS/Android/WP native widgets, when a NativeUI C++ class is used within the MoSync code base. I've taken a quick look at a few classes on GitHub, like Button.cpp etc, but I…
Big Rich
  • 5,864
  • 1
  • 40
  • 64
0
votes
1 answer

can't able to access php file from serverside

im newbie to mobile web app development ... now im struggling to connect myphpadmin using mosync sdk... $(document).ready(function () { $.ajax({ url: "http://192.168.2.136:80/ajaxjson/gene.php", dataType: 'text', success:…
kamesh
  • 2,374
  • 3
  • 25
  • 33
0
votes
1 answer

Calling parent's method

I'm kinda newbie to all this c++ stuff, so this probably is a beginner's problem: ListScreen.h #ifndef _LISTSCREEN_H_ #define _LISTSCREEN_H_ #include "MAUI/Screen.h" namespace CoolPlaces { namespace Views { using namespace MAUI; …
Marek M.
  • 3,799
  • 9
  • 43
  • 93
0
votes
1 answer

gifs in html5 app make the app slowers?

I am working on an html5 mobile app for a website. The website contains a lot of gifs(about 5-10 per page) on its pages which are making the app events, scroll, drag, css animations, and everything very slow. if i get rid of the gifs the app runs…
0
votes
1 answer

Printf erases the screen (using the MoSync library)

I have some simple code that looks like this: printf("Press zero or back to exit\n"); maSetColor(0x0055ff); maFillRect(10,10,100,100); maUpdateScreen(); This runs, but when it's like…
JVE999
  • 3,327
  • 10
  • 54
  • 89
0
votes
1 answer

MoSync Reload - captureImage

I am developing an app using Mosync Reload 3.3 and I am having issues using the captureImage function to let a phone take a photo and upload it to my server. Firstly, I only have a Google Nexus 4 for testing and it is not jailbroken. When I call the…
user1573618
  • 1,696
  • 2
  • 20
  • 38
0
votes
1 answer

Writing data to file in MoSync (Converting MAUtil::String to const char*)

I'm trying to write some data to a file in Mosync. This is what I'm doing: String filename = "c:\\hamburger.txt"; MAHandle newfile = maFileOpen (&filename, MA_ACCESS_READ_WRITE); maFileCreate (newfile); maFileWrite (newfile, &keyCode, 1); The error…
JVE999
  • 3,327
  • 10
  • 54
  • 89
0
votes
1 answer

MoSync 3.3.1, landscape screen orientation causing crashing

Im creating an app using OpenGL ES 2.0 on Mosync 3.3.1 and ideally I would like the screen to rotate to whatever orientation the screen is tilted. However using maScreenSetSupportedOrientations() and setting it to dynamic or landscape caused to the…
D.Cole
  • 27
  • 10
0
votes
1 answer

How do I store configuration information on my mobile device?

We are building a jquery mobile app to live inside mosync. When the app first starts up, I want to ask some configuration information and store the config on the device somewhere so it never needs to ask for it again. For example, I want the user to…
Thom
  • 14,013
  • 25
  • 105
  • 185
0
votes
1 answer

Unable to apply css in moSync

I want to learn cross platform application development.i am using moSync tools for it.it uses html,javascript,css. for native application they provide their own api which is written in javascript.i have run simple demo application.but i want to…
Deepak Borade
  • 191
  • 2
  • 5
  • 15
0
votes
1 answer

MoSync - addTo or addChild?

To keep it short and simple, I'm doing a mosync nativeUI javascript project. Here's part of my code: var myScreen = mosync.nativeui.create("Screen" ,"myScreen", { "title": "My Screen" }); //Create a…
None None
  • 537
  • 2
  • 8
  • 15