From: Miggi <mig...@go...> - 2011-01-13 11:00:46
|
Hello I've tried to cross-compile an android project with XMLVM and got something about 100 errors ;) The most (perhaps all) of these errors are something about SQLite. Is there any problem with XMLVM and SQLite or did I have to add some libs or something like that? Thanks for your help! Greetings Miggi |
From: Miggi <mig...@go...> - 2011-01-18 17:38:31
|
Hello Can somebody explain me what I have to do to cross-compile an android project which is using sqlite with XMLVM into an iPhone project? If I try it the normal way I get a lot of errors because XMLVM can't find sqlite. Panayotis already said, that it's not a big thing to fix that. But I don't know what to do to get it working. Thanks a lot for your answers. Greetings Miggi |
From: Jeff P. <jcp...@ro...> - 2011-01-18 19:13:04
|
Just a guess, but there is C/C++ code in addition to Java classes that is going to need to be converted. This is what GIT has: http://android.git.kernel.org/?p=platform/external/sqlite.git;a=tree;f=andro id;h=f2c79cd4d4608152df916a6f494051c4b972ccc5;hb=HEAD On 1/18/11 12:38 PM, "Miggi" <mig...@go...> wrote: > Hello > > Can somebody explain me what I have to do to cross-compile an android > project which is using sqlite with XMLVM into an iPhone project? If I > try it the normal way I get a lot of errors because XMLVM can't find > sqlite. Panayotis already said, that it's not a big thing to fix that. > But I don't know what to do to get it working. > > Thanks a lot for your answers. > > Greetings Miggi > > ------------------------------------------------------------------------------ > Protect Your Site and Customers from Malware Attacks > Learn about various malware tactics and how to avoid them. Understand > malware threats, the impact they can have on your business, and how you > can protect your company and customers by using code signing. > http://p.sf.net/sfu/oracle-sfdevnl > _______________________________________________ > xmlvm-users mailing list > xml...@li... > https://lists.sourceforge.net/lists/listinfo/xmlvm-users |
From: Miggi <mig...@go...> - 2011-01-18 19:42:44
|
Hello Sascha and Panayotis. Thanks for your answers and sorry for double-posting my question, but I'm a little bit under pressure, because I need to cross-compile this project with XMLVM for my bachelor thesis ;) So, do you think it's possible to write the code you mentioned, Sascha, for a person, that's not very experienced in writing code (I'm short of programming practice)? Is it possible, that you give me a short how-to and a hint, where I have to add code manually? Or is it not that easy? Greetings Miggi |
From: Sascha H. <sa...@gm...> - 2011-01-18 21:26:31
|
Miggi, please try to avoid double postings in the future. We are all just freelancers working on this and posting multiple times will not get anything done quicker. As you have probably, read we are making great progress on the C backend, which will allow us to cross-compile whole JDK classes with no or minor changes. Not that this is working, we are looking at Android. In a first step we will get the Android-Cococa library working and only after that try to see what can be cross-compiled from the Android SDK. For SQLite to work we need to take a closer look at the SQllite SDK that Android provides as well as on the iPhone implementation. And we need to find a way to make the Android API accessible on iOS. This is either done my cross-compiling the original classes and implementing native methods, if needed, or by providing manual mapper classes. In either case I would rate this as non-trivial and not for someone who is unexperienced. Unfortunately, I cannot give you any ETA on when we might get there. // Sascha On Tue, Jan 18, 2011 at 8:42 PM, Miggi <mig...@go...> wrote: > Hello Sascha and Panayotis. > > Thanks for your answers and sorry for double-posting my question, but > I'm a little bit under pressure, because I need to cross-compile this > project with XMLVM for my bachelor thesis ;) > > So, do you think it's possible to write the code you mentioned, Sascha, > for a person, that's not very experienced in writing code (I'm short of > programming practice)? Is it possible, that you give me a short how-to > and a hint, where I have to add code manually? Or is it not that easy? > > Greetings Miggi > > > ------------------------------------------------------------------------------ > Protect Your Site and Customers from Malware Attacks > Learn about various malware tactics and how to avoid them. Understand > malware threats, the impact they can have on your business, and how you > can protect your company and customers by using code signing. > http://p.sf.net/sfu/oracle-sfdevnl > _______________________________________________ > xmlvm-users mailing list > xml...@li... > https://lists.sourceforge.net/lists/listinfo/xmlvm-users > |
From: Panayotis K. <pan...@pa...> - 2011-01-13 20:33:04
|
On Jan 13, 2011, at 1:00 PM, Miggi wrote: > Hello > > I've tried to cross-compile an android project with XMLVM and got > something about 100 errors ;) The most (perhaps all) of these errors are > something about SQLite. Is there any problem with XMLVM and SQLite or > did I have to add some libs or something like that? > > Thanks for your help! > > Greetings > Miggi SQLite is not directly supported by XMLVM, but it is not a lot of work to do it. In any case, what kind of errors do you have? |