You can subscribe to this list here.
2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(29) |
Aug
(75) |
Sep
(32) |
Oct
(147) |
Nov
(31) |
Dec
(49) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2010 |
Jan
(46) |
Feb
(35) |
Mar
(148) |
Apr
(33) |
May
(53) |
Jun
(46) |
Jul
(60) |
Aug
(44) |
Sep
(135) |
Oct
(23) |
Nov
(68) |
Dec
(42) |
2011 |
Jan
(94) |
Feb
(55) |
Mar
(114) |
Apr
(78) |
May
(64) |
Jun
(10) |
Jul
(31) |
Aug
(2) |
Sep
(25) |
Oct
(13) |
Nov
(8) |
Dec
(24) |
2012 |
Jan
(5) |
Feb
(33) |
Mar
(31) |
Apr
(19) |
May
(24) |
Jun
(23) |
Jul
(14) |
Aug
(15) |
Sep
(12) |
Oct
(3) |
Nov
(4) |
Dec
(19) |
2013 |
Jan
(8) |
Feb
(20) |
Mar
(4) |
Apr
(2) |
May
(1) |
Jun
(2) |
Jul
|
Aug
(1) |
Sep
(2) |
Oct
(1) |
Nov
(4) |
Dec
|
2014 |
Jan
|
Feb
|
Mar
(6) |
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2015 |
Jan
(7) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(6) |
2016 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(3) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2019 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Miggi <mig...@go...> - 2010-11-15 18:58:05
|
So...I've tried to cross-compile some JUnit-test which runs under android an these are the errors I receive: [xmlvm.ajavac] /Users/svp/Desktop/TennisMathDummy/src/com/tennismath/test/dummy/ForecasterTest.java:3: package org.junit does not exist [xmlvm.ajavac] import org.junit.Assert; [xmlvm.ajavac] ^ [xmlvm.ajavac] /Users/svp/Desktop/TennisMathDummy/src/com/tennismath/test/dummy/ForecasterTest.java:4: package org.junit does not exist [xmlvm.ajavac] import org.junit.Before; [xmlvm.ajavac] ^ [xmlvm.ajavac] /Users/svp/Desktop/TennisMathDummy/src/com/tennismath/test/dummy/ForecasterTest.java:5: package org.junit does not exist [xmlvm.ajavac] import org.junit.Test; [xmlvm.ajavac] ^ [xmlvm.ajavac] /Users/svp/Desktop/TennisMathDummy/src/com/tennismath/test/dummy/ForecasterTest.java:13: cannot find symbol [xmlvm.ajavac] symbol : class Before [xmlvm.ajavac] location: class com.tennismath.test.dummy.ForecasterTest [xmlvm.ajavac] @Before [xmlvm.ajavac] ^ [xmlvm.ajavac] /Users/svp/Desktop/TennisMathDummy/src/com/tennismath/test/dummy/ForecasterTest.java:18: cannot find symbol [xmlvm.ajavac] symbol : class Test [xmlvm.ajavac] location: class com.tennismath.test.dummy.ForecasterTest [xmlvm.ajavac] @Test [xmlvm.ajavac] ^ [xmlvm.ajavac] /Users/svp/Desktop/TennisMathDummy/src/com/tennismath/test/dummy/ForecasterTest.java:20: cannot find symbol [xmlvm.ajavac] symbol : variable Assert [xmlvm.ajavac] location: class com.tennismath.test.dummy.ForecasterTest [xmlvm.ajavac] Assert.assertNotNull(forecaster.forecast()); [xmlvm.ajavac] ^ [xmlvm.ajavac] 6 errors BUILD FAILED /Users/svp/Desktop/TennisMathDummy/nbproject/xcode.xml:179: The following error occurred while executing this line: /Users/svp/Desktop/TennisMathDummy/nbproject/androidsupport.xml:77: Compile failed; see the compiler error output for details. I hope these are the informations you want to see, Arno ;) Greetings, Miggi |
From: Arno P. <ar...@pu...> - 2010-11-14 21:48:34
|
I assume you can run the JUnit tests under Android, right? In principle, we could cross-compile JUnit. The question is, which dependencies does JUnit have and what is missing in XMLVM. Arno On Nov 14, 2010, at 5:16 AM, Miggi <mig...@go...> wrote: Hello Just for interest: Is it possible to cross-compile JUnit-tests written for an android project to iOS? It would be nice to check the cross-compiled project with cross-compiled JUnit-tests ;) Greetings, Miggi ------------------------------------------------------------------------------ Centralized Desktop Delivery: Dell and VMware Reference Architecture Simplifying enterprise desktop deployment and management using Dell EqualLogic storage and VMware View: A highly scalable, end-to-end client virtualization framework. Read more! http://p.sf.net/sfu/dell-eql-dev2dev _______________________________________________ xmlvm-users mailing list xml...@li... https://lists.sourceforge.net/lists/listinfo/xmlvm-users |
From: Mario H. <ma...@de...> - 2010-11-14 20:03:12
|
Hi Brian, i also ran into this problem. A simple -Xmx to increase the Java Heapspace was sufficient for me. java -Xmx512m -jar xmlvm/xmlvm/dist/xmlvm.jar --in=TextXMLVM/ --target=android-on-iphone --iphone-app=TheApplication Am 11/14/10 20:28, schrieb Brian Hurst: > Caused by: java.lang.OutOfMemoryError: Java heap space > at java.util.Arrays.copyOf(Arrays.java:2882) > at |
From: Miggi <mig...@go...> - 2010-11-14 19:42:39
|
There's no need to run the command ls -lr /Users/svp/Desktop/TennisMathDummy/src anymore cause the error doesn't occure again, when I've tried it a second time. I've just done the needed steps once again and than it worked ;) Thanks for your help. Greetings, Miggi |
From: Brian H. <rin...@li...> - 2010-11-14 19:28:32
|
I followed the basic instructions of creating an android application using xmlvm. Everything worked fine and I was able to compile the Application using ant and it worked fine and the application runs. When trying to cross-compile to an iphone application, I received the following errors. What is causing this? I have the latest xmlvm build. Thanks Mac-user:workspace mac$ java -jar xmlvm/xmlvm/dist/xmlvm.jar --in=TextXMLVM/ --target=android-on-iphone --iphone-app=TheApplication [11/14/10 22:14:01.856] WARNING: Unable to create InputProcesses for input: /Users/mac/Documents/workspace/TextXMLVM/.classpath [11/14/10 22:14:01.858] WARNING: Unable to create InputProcesses for input: /Users/mac/Documents/workspace/TextXMLVM/.DS_Store [11/14/10 22:14:01.858] WARNING: Unable to create InputProcesses for input: /Users/mac/Documents/workspace/TextXMLVM/.project [11/14/10 22:14:01.859] WARNING: Unable to create InputProcesses for input: /Users/mac/Documents/workspace/TextXMLVM/AndroidManifest.xml [11/14/10 22:14:01.859] WARNING: Unable to create InputProcesses for input: /Users/mac/Documents/workspace/TextXMLVM/build.properties [11/14/10 22:14:01.860] WARNING: Unable to create InputProcesses for input: /Users/mac/Documents/workspace/TextXMLVM/build.xml [11/14/10 22:14:01.861] WARNING: Unable to create InputProcesses for input: /Users/mac/Documents/workspace/TextXMLVM/default.properties [11/14/10 22:14:01.861] WARNING: Unable to create InputProcesses for input: /Users/mac/Documents/workspace/TextXMLVM/local.properties [11/14/10 22:14:01.862] WARNING: Unable to create InputProcesses for input: /Users/mac/Documents/workspace/TextXMLVM/xmlvm.properties [11/14/10 22:14:01.862] WARNING: Unable to create InputProcesses for input: /Users/mac/Documents/workspace/TextXMLVM/src/my/textxmlvm/MainActivity.java [11/14/10 22:14:01.863] WARNING: Unable to create InputProcesses for input: /Users/mac/Documents/workspace/TextXMLVM/res/values/strings.xml [11/14/10 22:14:01.863] WARNING: Unable to create InputProcesses for input: /Users/mac/Documents/workspace/TextXMLVM/res/layout/main.xml [11/14/10 22:14:01.864] WARNING: Unable to create InputProcesses for input: /Users/mac/Documents/workspace/TextXMLVM/res/drawable/demo.png [11/14/10 22:14:01.865] WARNING: Unable to create InputProcesses for input: /Users/mac/Documents/workspace/TextXMLVM/nbproject/androidsupport.xml [11/14/10 22:14:01.865] WARNING: Unable to create InputProcesses for input: /Users/mac/Documents/workspace/TextXMLVM/nbproject/build-impl.xml [11/14/10 22:14:01.866] WARNING: Unable to create InputProcesses for input: /Users/mac/Documents/workspace/TextXMLVM/nbproject/genfiles.properties [11/14/10 22:14:01.866] WARNING: Unable to create InputProcesses for input: /Users/mac/Documents/workspace/TextXMLVM/nbproject/project.properties [11/14/10 22:14:01.867] WARNING: Unable to create InputProcesses for input: /Users/mac/Documents/workspace/TextXMLVM/nbproject/project.xml [11/14/10 22:14:01.867] WARNING: Unable to create InputProcesses for input: /Users/mac/Documents/workspace/TextXMLVM/nbproject/xcode.xml [11/14/10 22:14:01.867] WARNING: Unable to create InputProcesses for input: /Users/mac/Documents/workspace/TextXMLVM/nbproject/private/config.properties [11/14/10 22:14:01.867] WARNING: Unable to create InputProcesses for input: /Users/mac/Documents/workspace/TextXMLVM/nbproject/configs/Android.properties [11/14/10 22:14:01.867] WARNING: Unable to create InputProcesses for input: /Users/mac/Documents/workspace/TextXMLVM/nbproject/configs/Java.properties [11/14/10 22:14:01.868] WARNING: Unable to create InputProcesses for input: /Users/mac/Documents/workspace/TextXMLVM/nbproject/configs/Xcode.properties [11/14/10 22:14:01.868] WARNING: Unable to create InputProcesses for input: /Users/mac/Documents/workspace/TextXMLVM/gen/my/textxmlvm/R.java [11/14/10 22:14:01.868] WARNING: Unable to create InputProcesses for input: /Users/mac/Documents/workspace/TextXMLVM/bin/classes.dex [11/14/10 22:14:01.868] WARNING: Unable to create InputProcesses for input: /Users/mac/Documents/workspace/TextXMLVM/bin/resources.ap_ [11/14/10 22:14:01.868] WARNING: Unable to create InputProcesses for input: /Users/mac/Documents/workspace/TextXMLVM/bin/TextXMLVM.apk [11/14/10 22:14:01.871] WARNING: Using 'TheApplication' as output directory Exception in thread "main" java.lang.reflect.InvocationTargetException at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at com.simontuffs.onejar.Boot.run(Boot.java:306) at com.simontuffs.onejar.Boot.main(Boot.java:159) Caused by: java.lang.OutOfMemoryError: Java heap space at java.util.Arrays.copyOf(Arrays.java:2882) at java.lang.AbstractStringBuilder.expandCapacity(AbstractStringBuilder.java:100) at java.lang.AbstractStringBuilder.append(AbstractStringBuilder.java:390) at java.lang.StringBuffer.append(StringBuffer.java:224) at java.util.regex.Matcher.appendTail(Matcher.java:769) at java.util.regex.Matcher.replaceAll(Matcher.java:816) at java.lang.String.replace(String.java:2207) at org.xmlvm.proc.out.build.XCodeFile$XCodeProj.injectFiles(XCodeFile.java:259) at org.xmlvm.proc.out.build.XCodeFile$XCodeProj.access$200(XCodeFile.java:117) at org.xmlvm.proc.out.build.XCodeFile.composeBuildFiles(XCodeFile.java:106) at org.xmlvm.proc.out.Android2IPhoneOutputProcess.process(Android2IPhoneOutputProcess.java:108) at org.xmlvm.proc.XmlvmProcessor.process(XmlvmProcessor.java:104) at org.xmlvm.proc.NewMain.main(NewMain.java:50) ... 6 more > ------------------------------ > > Message: 2 > Date: Fri, 5 Nov 2010 17:07:25 +0200 > From: Panayotis Katsaloulis<pan...@pa...> > Subject: Re: [xmlvm-users] Cross compiling an Android application to > xcode > To: xml...@li... > Message-ID:<71E...@pa...> > Content-Type: text/plain; charset="utf-8" > > > On 05 ??? 2010, at 2:22 ?.?., Brian Hurst wrote: > >> There used to be some sort of tutorial/help file that explained the >> basics of cross compiling an android app to the iphone. Which files you >> needed to delete or reconfigure within xcode to get it to work on xcode. >> I've looked on the xmlvm.org homepage along with the google sites page >> and can not find it. Can I get the basic steps on how to compile an >> android app to xcode? >> >> Thanks >> Brian >> > Try to migrate your android application to XMLVM > If it fails, please report here :) > > -------------- next part -------------- > An HTML attachment was scrubbed... > > ------------------------------ > |
From: Miggi <mig...@go...> - 2010-11-14 13:16:37
|
Hello Just for interest: Is it possible to cross-compile JUnit-tests written for an android project to iOS? It would be nice to check the cross-compiled project with cross-compiled JUnit-tests ;) Greetings, Miggi |
From: Miggi <mig...@go...> - 2010-11-13 15:58:30
|
Hello I've tried to do both steps (means migrate the Android project in XMLVM and cross-compile it to an iPhone app) under iOS and get the following error after typing "ant run-Xcode" in Terminal. Can somebody tell me, what's going wrong? Thanks! BUILD FAILED /Users/svp/Desktop/TennisMathDummy/nbproject/xcode.xml:179: The following error occurred while executing this line: /Developer/android-sdk-mac_x86/tools/ant/ant_rules_r3.xml:299: /Users/svp/Desktop/TennisMathDummy/src does not exist. |
From: Panayotis K. <pan...@pa...> - 2010-11-11 19:52:11
|
On Nov 11, 2010, at 6:56 PM, Arno Puder wrote: > > that is a known issue. The code that XMLVM generates is correct. The > problem is that certain classes (such as UIAppication*) are instantiated > by Cocoa and Cocoa doesn't know about the __init__*() constructors that > were generated by XMLVM. The initialization of 'test' in your example > will end up in the default constructor for class Main and since Cocoa > doesn't call it, it won't get initialized. > > This will work perfectly fine for any other class (that is handled by > XMLVM). It is just this special case when Cocoa instantiates a Java > object. Back then I couldn't think of a solution for this. I'll revisit > this with the C backend. Here we might have more hooks to solve this > problem. > > Arno I actually found that problem in another, more complex structure that wasn't based on UIApplicationDelegate. In any case, you are right, probably we should push our efforts more in favor of C backend (although I believe the ObjC backend should not become obsolete) |
From: Arno P. <ar...@pu...> - 2010-11-11 16:56:40
|
that is a known issue. The code that XMLVM generates is correct. The problem is that certain classes (such as UIAppication*) are instantiated by Cocoa and Cocoa doesn't know about the __init__*() constructors that were generated by XMLVM. The initialization of 'test' in your example will end up in the default constructor for class Main and since Cocoa doesn't call it, it won't get initialized. This will work perfectly fine for any other class (that is handled by XMLVM). It is just this special case when Cocoa instantiates a Java object. Back then I couldn't think of a solution for this. I'll revisit this with the C backend. Here we might have more hooks to solve this problem. Arno On 11/11/10 7:08 AM, Panayotis Katsaloulis wrote: > there is something missing when variables are initialized outsize the constructor. > > As a minium program to display this error, have a look at this: instead of printing "hello", it prints "null", since this is not initialized. > > > > > package my.testmem; > > import org.xmlvm.iphone.UIApplication; > import org.xmlvm.iphone.UIApplicationDelegate; > > public class Main extends UIApplicationDelegate { > > String test = "hello"; > > @Override > public void applicationDidFinishLaunching(UIApplication app) { > System.out.println(test); > } > > public static void main(String[] args) { > UIApplication.main(args, null, Main.class); > } > } > > > ------------------------------------------------------------------------------ > Centralized Desktop Delivery: Dell and VMware Reference Architecture > Simplifying enterprise desktop deployment and management using > Dell EqualLogic storage and VMware View: A highly scalable, end-to-end > client virtualization framework. Read more! > http://p.sf.net/sfu/dell-eql-dev2dev > _______________________________________________ > xmlvm-users mailing list > xml...@li... > https://lists.sourceforge.net/lists/listinfo/xmlvm-users |
From: Panayotis K. <pan...@pa...> - 2010-11-11 15:08:12
|
there is something missing when variables are initialized outsize the constructor. As a minium program to display this error, have a look at this: instead of printing "hello", it prints "null", since this is not initialized. package my.testmem; import org.xmlvm.iphone.UIApplication; import org.xmlvm.iphone.UIApplicationDelegate; public class Main extends UIApplicationDelegate { String test = "hello"; @Override public void applicationDidFinishLaunching(UIApplication app) { System.out.println(test); } public static void main(String[] args) { UIApplication.main(args, null, Main.class); } } |
From: Panayotis K. <pan...@pa...> - 2010-11-11 11:05:12
|
On Nov 11, 2010, at 12:50 PM, Miggi wrote: > BUILD FAILED > /Users/svp/Desktop/TennisMathDummy/nbproject/xcode.xml:179: The > following error occurred while executing this line: > /Developer/android-sdk-mac_x86/tools/ant/ant_rules_r3.xml:299: > /Users/svp/Desktop/TennisMathDummy/src does not exist. > Please tell us the result of the command: ls -lr /Users/svp/Desktop/TennisMathDummy/src |
From: Miggi <mig...@go...> - 2010-11-11 10:50:21
|
Hello I've tried to do both steps under iOS and get the following error after typing "ant run-Xcode" in Terminal. Can somebody tell me, what's going wrong? Thanks! BUILD FAILED /Users/svp/Desktop/TennisMathDummy/nbproject/xcode.xml:179: The following error occurred while executing this line: /Developer/android-sdk-mac_x86/tools/ant/ant_rules_r3.xml:299: /Users/svp/Desktop/TennisMathDummy/src does not exist. Greetings, Miggi Am 10.11.2010 19:57, schrieb xml...@li...: > Send xmlvm-users mailing list submissions to > xml...@li... > > To subscribe or unsubscribe via the World Wide Web, visit > https://lists.sourceforge.net/lists/listinfo/xmlvm-users > or, via email, send a message with subject or body 'help' to > xml...@li... > > You can reach the person managing the list at > xml...@li... > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of xmlvm-users digest..." > > > Today's Topics: > > 1. Re: How to write the path to Android SDK in local.properties > (Panayotis Katsaloulis) > 2. Re: How to write the path to Android SDK in local.properties > (Arno Puder) > 3. Re: How to write the path to Android SDK in local.properties > (Miggi) > 4. Re: How to write the path to Android SDK in local.properties > (Arno Puder) > 5. Re: How to write the path to Android SDK in local.properties > (Wolfgang Korn) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Wed, 10 Nov 2010 19:42:17 +0200 > From: Panayotis Katsaloulis<pan...@pa...> > Subject: Re: [xmlvm-users] How to write the path to Android SDK in > local.properties > To: Xmlvm Users<xml...@li...> > Message-ID:<EEB...@pa...> > Content-Type: text/plain; charset="us-ascii" > > > On Nov 10, 2010, at 6:48 PM, Miggi wrote: > >> Hello folks >> >> I'm obviously not able to write the path to the Android SDK in a form that will be understood ;) >> >> I've already tried: >> >> - C:\path\toAndroid >> - "C:\path\toAndroid" >> - C:\path\toAndroid\ >> - "C:\path\toAndroid\" >> - C:/path/toAndroid >> - "C:/path/toAndroid" >> >> and a few more versions. But I always get the message, that the path in local.properties is not been set. Where's my fault? Can somebody help me? >> >> Thanks, Miggi > > You need to provide the path of the *actual* Andoird SDK. > > Let's say that you have installed Android SDK under > C:\Development\SDKs\Android > > Then, this is the directory you need to provide to the local.properties file > > -------------- next part -------------- > An HTML attachment was scrubbed... > > ------------------------------ > > Message: 2 > Date: Wed, 10 Nov 2010 09:45:13 -0800 > From: Arno Puder<ar...@pu...> > Subject: Re: [xmlvm-users] How to write the path to Android SDK in > local.properties > To: xml...@li... > Message-ID:<4CD...@pu...> > Content-Type: text/plain; charset=ISO-8859-15; format=flowed > > > note that if you plan to cross-compile from Android to iOS, you will > need Xcode (meaning, you can't do this under Windows). I'm just > mentioning this because I see Windows-style path names. > > Arno > > > On 11/10/10 8:48 AM, Miggi wrote: >> Hello folks >> >> I'm obviously not able to write the path to the Android SDK in a form >> that will be understood ;) >> >> I've already tried: >> >> - C:\path\toAndroid >> - "C:\path\toAndroid" >> - C:\path\toAndroid\ >> - "C:\path\toAndroid\" >> - C:/path/toAndroid >> - "C:/path/toAndroid" >> >> and a few more versions. But I always get the message, that the path in >> local.properties is not been set. Where's my fault? Can somebody help me? >> >> Thanks, Miggi >> >> >> >> ------------------------------------------------------------------------------ >> The Next 800 Companies to Lead America's Growth: New Video Whitepaper >> David G. Thomson, author of the best-selling book "Blueprint to a >> Billion" shares his insights and actions to help propel your >> business during the next growth cycle. Listen Now! >> http://p.sf.net/sfu/SAP-dev2dev >> >> >> >> _______________________________________________ >> xmlvm-users mailing list >> xml...@li... >> https://lists.sourceforge.net/lists/listinfo/xmlvm-users > > > ------------------------------ > > Message: 3 > Date: Wed, 10 Nov 2010 19:25:29 +0100 > From: Miggi<mig...@go...> > Subject: Re: [xmlvm-users] How to write the path to Android SDK in > local.properties > To: Xmlvm Users<xml...@li...> > Message-ID:<4CD...@go...> > Content-Type: text/plain; charset="iso-8859-15" > > Hello Arno > > That could be the solution I'm searching for ;) So, if I have an android > project under Windows then I have to migrate it under Windows but to > cross-compile it under iOS? Or should I do both steps under iOS? > > Thanks a lot! > > Miggi > > Am 10.11.2010 18:45, schrieb Arno Puder: >> note that if you plan to cross-compile from Android to iOS, you will >> need Xcode (meaning, you can't do this under Windows). I'm just >> mentioning this because I see Windows-style path names. >> >> Arno >> >> >> On 11/10/10 8:48 AM, Miggi wrote: >>> Hello folks >>> >>> I'm obviously not able to write the path to the Android SDK in a form >>> that will be understood ;) >>> >>> I've already tried: >>> >>> - C:\path\toAndroid >>> - "C:\path\toAndroid" >>> - C:\path\toAndroid\ >>> - "C:\path\toAndroid\" >>> - C:/path/toAndroid >>> - "C:/path/toAndroid" >>> >>> and a few more versions. But I always get the message, that the path in >>> local.properties is not been set. Where's my fault? Can somebody help >>> me? >>> >>> Thanks, Miggi >>> >>> >>> >>> ------------------------------------------------------------------------------ >>> >>> The Next 800 Companies to Lead America's Growth: New Video Whitepaper >>> David G. Thomson, author of the best-selling book "Blueprint to a >>> Billion" shares his insights and actions to help propel your >>> business during the next growth cycle. Listen Now! >>> http://p.sf.net/sfu/SAP-dev2dev >>> >>> >>> >>> _______________________________________________ >>> xmlvm-users mailing list >>> xml...@li... >>> https://lists.sourceforge.net/lists/listinfo/xmlvm-users >> ------------------------------------------------------------------------------ >> >> The Next 800 Companies to Lead America's Growth: New Video Whitepaper >> David G. Thomson, author of the best-selling book "Blueprint to a >> Billion" shares his insights and actions to help propel your >> business during the next growth cycle. Listen Now! >> http://p.sf.net/sfu/SAP-dev2dev >> _______________________________________________ >> xmlvm-users mailing list >> xml...@li... >> https://lists.sourceforge.net/lists/listinfo/xmlvm-users > -------------- next part -------------- > An HTML attachment was scrubbed... > > ------------------------------ > > Message: 4 > Date: Wed, 10 Nov 2010 10:29:10 -0800 > From: Arno Puder<ar...@pu...> > Subject: Re: [xmlvm-users] How to write the path to Android SDK in > local.properties > To: xml...@li... > Message-ID:<4CD...@pu...> > Content-Type: text/plain; charset=ISO-8859-15; format=flowed > > > you have to run XMLVM under MacOS to create an iOS Xcode project. The > reason is that Java API such as java.io.File.separator (that XMLVM uses) > are mapped to the local platform. If you have Windows create an Xcode > project, it won't work. This problem could be solved but that is > certainly not high on the TODO list. Ultimately you will need a MacOS > platform anyways to run and deplay the iOS application. > > Arno > > > On 11/10/10 10:25 AM, Miggi wrote: >> Hello Arno >> >> That could be the solution I'm searching for ;) So, if I have an android >> project under Windows then I have to migrate it under Windows but to >> cross-compile it under iOS? Or should I do both steps under iOS? >> >> Thanks a lot! >> >> Miggi >> >> Am 10.11.2010 18:45, schrieb Arno Puder: >>> note that if you plan to cross-compile from Android to iOS, you will >>> need Xcode (meaning, you can't do this under Windows). I'm just >>> mentioning this because I see Windows-style path names. >>> >>> Arno >>> >>> >>> On 11/10/10 8:48 AM, Miggi wrote: >>>> Hello folks >>>> >>>> I'm obviously not able to write the path to the Android SDK in a form >>>> that will be understood ;) >>>> >>>> I've already tried: >>>> >>>> - C:\path\toAndroid >>>> - "C:\path\toAndroid" >>>> - C:\path\toAndroid\ >>>> - "C:\path\toAndroid\" >>>> - C:/path/toAndroid >>>> - "C:/path/toAndroid" >>>> >>>> and a few more versions. But I always get the message, that the path in >>>> local.properties is not been set. Where's my fault? Can somebody help >>>> me? >>>> >>>> Thanks, Miggi >>>> >>>> >>>> >>>> ------------------------------------------------------------------------------ >>>> >>>> The Next 800 Companies to Lead America's Growth: New Video Whitepaper >>>> David G. Thomson, author of the best-selling book "Blueprint to a >>>> Billion" shares his insights and actions to help propel your >>>> business during the next growth cycle. Listen Now! >>>> http://p.sf.net/sfu/SAP-dev2dev >>>> >>>> >>>> >>>> _______________________________________________ >>>> xmlvm-users mailing list >>>> xml...@li... >>>> https://lists.sourceforge.net/lists/listinfo/xmlvm-users >>> ------------------------------------------------------------------------------ >>> >>> The Next 800 Companies to Lead America's Growth: New Video Whitepaper >>> David G. Thomson, author of the best-selling book "Blueprint to a >>> Billion" shares his insights and actions to help propel your >>> business during the next growth cycle. Listen Now! >>> http://p.sf.net/sfu/SAP-dev2dev >>> _______________________________________________ >>> xmlvm-users mailing list >>> xml...@li... >>> https://lists.sourceforge.net/lists/listinfo/xmlvm-users >> >> >> ------------------------------------------------------------------------------ >> The Next 800 Companies to Lead America's Growth: New Video Whitepaper >> David G. Thomson, author of the best-selling book "Blueprint to a >> Billion" shares his insights and actions to help propel your >> business during the next growth cycle. Listen Now! >> http://p.sf.net/sfu/SAP-dev2dev >> >> >> >> _______________________________________________ >> xmlvm-users mailing list >> xml...@li... >> https://lists.sourceforge.net/lists/listinfo/xmlvm-users > > > ------------------------------ > > Message: 5 > Date: Wed, 10 Nov 2010 19:34:23 +0100 > From: Wolfgang Korn<wol...@xm...> > Subject: Re: [xmlvm-users] How to write the path to Android SDK in > local.properties > To: Miggi<mig...@go...> > Cc: Xmlvm Users<xml...@li...> > Message-ID:<4CD...@xm...> > Content-Type: text/plain; charset="iso-8859-15" > > Miggi, > > be careful with cross-compiling under Windows and then running the final > build step on a Mac - you might encounter encoding problems. I recently > talked to someone who did exacly that. It turned out that Xcode was not > able to read the generated project file. It was incomplete and > especially the references to the cross-compiled sources were missing. So > - if you have a Mac available I recommend running both XMLVM and Xcode > on the Mac. > > -- Wolfgang > > > > Miggi wrote: >> Hello Arno >> >> That could be the solution I'm searching for ;) So, if I have an >> android project under Windows then I have to migrate it under Windows >> but to cross-compile it under iOS? Or should I do both steps under iOS? >> >> Thanks a lot! >> >> Miggi >> >> Am 10.11.2010 18:45, schrieb Arno Puder: >>> note that if you plan to cross-compile from Android to iOS, you will >>> need Xcode (meaning, you can't do this under Windows). I'm just >>> mentioning this because I see Windows-style path names. >>> >>> Arno >>> >>> >>> On 11/10/10 8:48 AM, Miggi wrote: >>>> Hello folks >>>> >>>> I'm obviously not able to write the path to the Android SDK in a form >>>> that will be understood ;) >>>> >>>> I've already tried: >>>> >>>> - C:\path\toAndroid >>>> - "C:\path\toAndroid" >>>> - C:\path\toAndroid\ >>>> - "C:\path\toAndroid\" >>>> - C:/path/toAndroid >>>> - "C:/path/toAndroid" >>>> >>>> and a few more versions. But I always get the message, that the path in >>>> local.properties is not been set. Where's my fault? Can somebody >>>> help me? >>>> >>>> Thanks, Miggi >>>> >>>> >>>> >>>> ------------------------------------------------------------------------------ >>>> >>>> The Next 800 Companies to Lead America's Growth: New Video Whitepaper >>>> David G. Thomson, author of the best-selling book "Blueprint to a >>>> Billion" shares his insights and actions to help propel your >>>> business during the next growth cycle. Listen Now! >>>> http://p.sf.net/sfu/SAP-dev2dev >>>> >>>> >>>> >>>> _______________________________________________ >>>> xmlvm-users mailing list >>>> xml...@li... >>>> https://lists.sourceforge.net/lists/listinfo/xmlvm-users >>> ------------------------------------------------------------------------------ >>> >>> The Next 800 Companies to Lead America's Growth: New Video Whitepaper >>> David G. Thomson, author of the best-selling book "Blueprint to a >>> Billion" shares his insights and actions to help propel your >>> business during the next growth cycle. Listen Now! >>> http://p.sf.net/sfu/SAP-dev2dev >>> _______________________________________________ >>> xmlvm-users mailing list >>> xml...@li... >>> https://lists.sourceforge.net/lists/listinfo/xmlvm-users >> ------------------------------------------------------------------------ >> >> ------------------------------------------------------------------------------ >> The Next 800 Companies to Lead America's Growth: New Video Whitepaper >> David G. Thomson, author of the best-selling book "Blueprint to a >> Billion" shares his insights and actions to help propel your >> business during the next growth cycle. Listen Now! >> http://p.sf.net/sfu/SAP-dev2dev >> ------------------------------------------------------------------------ >> >> _______________________________________________ >> xmlvm-users mailing list >> xml...@li... >> https://lists.sourceforge.net/lists/listinfo/xmlvm-users >> > -------------- next part -------------- > An HTML attachment was scrubbed... > > ------------------------------ > > ------------------------------------------------------------------------------ > The Next 800 Companies to Lead America's Growth: New Video Whitepaper > David G. Thomson, author of the best-selling book "Blueprint to a > Billion" shares his insights and actions to help propel your > business during the next growth cycle. Listen Now! > http://p.sf.net/sfu/SAP-dev2dev > > ------------------------------ > > _______________________________________________ > xmlvm-users mailing list > xml...@li... > https://lists.sourceforge.net/lists/listinfo/xmlvm-users > > > End of xmlvm-users Digest, Vol 17, Issue 8 > ****************************************** |
From: Miggi <mig...@go...> - 2010-11-10 19:47:18
|
Thanks a lot to all of you. Simply perfect, how fast my questions were be answered! I will test it in the next few days ;) Am 10.11.2010 19:57, schrieb xml...@li...: > Send xmlvm-users mailing list submissions to > xml...@li... > > To subscribe or unsubscribe via the World Wide Web, visit > https://lists.sourceforge.net/lists/listinfo/xmlvm-users > or, via email, send a message with subject or body 'help' to > xml...@li... > > You can reach the person managing the list at > xml...@li... > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of xmlvm-users digest..." > > > Today's Topics: > > 1. Re: How to write the path to Android SDK in local.properties > (Panayotis Katsaloulis) > 2. Re: How to write the path to Android SDK in local.properties > (Arno Puder) > 3. Re: How to write the path to Android SDK in local.properties > (Miggi) > 4. Re: How to write the path to Android SDK in local.properties > (Arno Puder) > 5. Re: How to write the path to Android SDK in local.properties > (Wolfgang Korn) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Wed, 10 Nov 2010 19:42:17 +0200 > From: Panayotis Katsaloulis<pan...@pa...> > Subject: Re: [xmlvm-users] How to write the path to Android SDK in > local.properties > To: Xmlvm Users<xml...@li...> > Message-ID:<EEB...@pa...> > Content-Type: text/plain; charset="us-ascii" > > > On Nov 10, 2010, at 6:48 PM, Miggi wrote: > >> Hello folks >> >> I'm obviously not able to write the path to the Android SDK in a form that will be understood ;) >> >> I've already tried: >> >> - C:\path\toAndroid >> - "C:\path\toAndroid" >> - C:\path\toAndroid\ >> - "C:\path\toAndroid\" >> - C:/path/toAndroid >> - "C:/path/toAndroid" >> >> and a few more versions. But I always get the message, that the path in local.properties is not been set. Where's my fault? Can somebody help me? >> >> Thanks, Miggi > > You need to provide the path of the *actual* Andoird SDK. > > Let's say that you have installed Android SDK under > C:\Development\SDKs\Android > > Then, this is the directory you need to provide to the local.properties file > > -------------- next part -------------- > An HTML attachment was scrubbed... > > ------------------------------ > > Message: 2 > Date: Wed, 10 Nov 2010 09:45:13 -0800 > From: Arno Puder<ar...@pu...> > Subject: Re: [xmlvm-users] How to write the path to Android SDK in > local.properties > To: xml...@li... > Message-ID:<4CD...@pu...> > Content-Type: text/plain; charset=ISO-8859-15; format=flowed > > > note that if you plan to cross-compile from Android to iOS, you will > need Xcode (meaning, you can't do this under Windows). I'm just > mentioning this because I see Windows-style path names. > > Arno > > > On 11/10/10 8:48 AM, Miggi wrote: >> Hello folks >> >> I'm obviously not able to write the path to the Android SDK in a form >> that will be understood ;) >> >> I've already tried: >> >> - C:\path\toAndroid >> - "C:\path\toAndroid" >> - C:\path\toAndroid\ >> - "C:\path\toAndroid\" >> - C:/path/toAndroid >> - "C:/path/toAndroid" >> >> and a few more versions. But I always get the message, that the path in >> local.properties is not been set. Where's my fault? Can somebody help me? >> >> Thanks, Miggi >> >> >> >> ------------------------------------------------------------------------------ >> The Next 800 Companies to Lead America's Growth: New Video Whitepaper >> David G. Thomson, author of the best-selling book "Blueprint to a >> Billion" shares his insights and actions to help propel your >> business during the next growth cycle. Listen Now! >> http://p.sf.net/sfu/SAP-dev2dev >> >> >> >> _______________________________________________ >> xmlvm-users mailing list >> xml...@li... >> https://lists.sourceforge.net/lists/listinfo/xmlvm-users > > > ------------------------------ > > Message: 3 > Date: Wed, 10 Nov 2010 19:25:29 +0100 > From: Miggi<mig...@go...> > Subject: Re: [xmlvm-users] How to write the path to Android SDK in > local.properties > To: Xmlvm Users<xml...@li...> > Message-ID:<4CD...@go...> > Content-Type: text/plain; charset="iso-8859-15" > > Hello Arno > > That could be the solution I'm searching for ;) So, if I have an android > project under Windows then I have to migrate it under Windows but to > cross-compile it under iOS? Or should I do both steps under iOS? > > Thanks a lot! > > Miggi > > Am 10.11.2010 18:45, schrieb Arno Puder: >> note that if you plan to cross-compile from Android to iOS, you will >> need Xcode (meaning, you can't do this under Windows). I'm just >> mentioning this because I see Windows-style path names. >> >> Arno >> >> >> On 11/10/10 8:48 AM, Miggi wrote: >>> Hello folks >>> >>> I'm obviously not able to write the path to the Android SDK in a form >>> that will be understood ;) >>> >>> I've already tried: >>> >>> - C:\path\toAndroid >>> - "C:\path\toAndroid" >>> - C:\path\toAndroid\ >>> - "C:\path\toAndroid\" >>> - C:/path/toAndroid >>> - "C:/path/toAndroid" >>> >>> and a few more versions. But I always get the message, that the path in >>> local.properties is not been set. Where's my fault? Can somebody help >>> me? >>> >>> Thanks, Miggi >>> >>> >>> >>> ------------------------------------------------------------------------------ >>> >>> The Next 800 Companies to Lead America's Growth: New Video Whitepaper >>> David G. Thomson, author of the best-selling book "Blueprint to a >>> Billion" shares his insights and actions to help propel your >>> business during the next growth cycle. Listen Now! >>> http://p.sf.net/sfu/SAP-dev2dev >>> >>> >>> >>> _______________________________________________ >>> xmlvm-users mailing list >>> xml...@li... >>> https://lists.sourceforge.net/lists/listinfo/xmlvm-users >> ------------------------------------------------------------------------------ >> >> The Next 800 Companies to Lead America's Growth: New Video Whitepaper >> David G. Thomson, author of the best-selling book "Blueprint to a >> Billion" shares his insights and actions to help propel your >> business during the next growth cycle. Listen Now! >> http://p.sf.net/sfu/SAP-dev2dev >> _______________________________________________ >> xmlvm-users mailing list >> xml...@li... >> https://lists.sourceforge.net/lists/listinfo/xmlvm-users > -------------- next part -------------- > An HTML attachment was scrubbed... > > ------------------------------ > > Message: 4 > Date: Wed, 10 Nov 2010 10:29:10 -0800 > From: Arno Puder<ar...@pu...> > Subject: Re: [xmlvm-users] How to write the path to Android SDK in > local.properties > To: xml...@li... > Message-ID:<4CD...@pu...> > Content-Type: text/plain; charset=ISO-8859-15; format=flowed > > > you have to run XMLVM under MacOS to create an iOS Xcode project. The > reason is that Java API such as java.io.File.separator (that XMLVM uses) > are mapped to the local platform. If you have Windows create an Xcode > project, it won't work. This problem could be solved but that is > certainly not high on the TODO list. Ultimately you will need a MacOS > platform anyways to run and deplay the iOS application. > > Arno > > > On 11/10/10 10:25 AM, Miggi wrote: >> Hello Arno >> >> That could be the solution I'm searching for ;) So, if I have an android >> project under Windows then I have to migrate it under Windows but to >> cross-compile it under iOS? Or should I do both steps under iOS? >> >> Thanks a lot! >> >> Miggi >> >> Am 10.11.2010 18:45, schrieb Arno Puder: >>> note that if you plan to cross-compile from Android to iOS, you will >>> need Xcode (meaning, you can't do this under Windows). I'm just >>> mentioning this because I see Windows-style path names. >>> >>> Arno >>> >>> >>> On 11/10/10 8:48 AM, Miggi wrote: >>>> Hello folks >>>> >>>> I'm obviously not able to write the path to the Android SDK in a form >>>> that will be understood ;) >>>> >>>> I've already tried: >>>> >>>> - C:\path\toAndroid >>>> - "C:\path\toAndroid" >>>> - C:\path\toAndroid\ >>>> - "C:\path\toAndroid\" >>>> - C:/path/toAndroid >>>> - "C:/path/toAndroid" >>>> >>>> and a few more versions. But I always get the message, that the path in >>>> local.properties is not been set. Where's my fault? Can somebody help >>>> me? >>>> >>>> Thanks, Miggi >>>> >>>> >>>> >>>> ------------------------------------------------------------------------------ >>>> >>>> The Next 800 Companies to Lead America's Growth: New Video Whitepaper >>>> David G. Thomson, author of the best-selling book "Blueprint to a >>>> Billion" shares his insights and actions to help propel your >>>> business during the next growth cycle. Listen Now! >>>> http://p.sf.net/sfu/SAP-dev2dev >>>> >>>> >>>> >>>> _______________________________________________ >>>> xmlvm-users mailing list >>>> xml...@li... >>>> https://lists.sourceforge.net/lists/listinfo/xmlvm-users >>> ------------------------------------------------------------------------------ >>> >>> The Next 800 Companies to Lead America's Growth: New Video Whitepaper >>> David G. Thomson, author of the best-selling book "Blueprint to a >>> Billion" shares his insights and actions to help propel your >>> business during the next growth cycle. Listen Now! >>> http://p.sf.net/sfu/SAP-dev2dev >>> _______________________________________________ >>> xmlvm-users mailing list >>> xml...@li... >>> https://lists.sourceforge.net/lists/listinfo/xmlvm-users >> >> >> ------------------------------------------------------------------------------ >> The Next 800 Companies to Lead America's Growth: New Video Whitepaper >> David G. Thomson, author of the best-selling book "Blueprint to a >> Billion" shares his insights and actions to help propel your >> business during the next growth cycle. Listen Now! >> http://p.sf.net/sfu/SAP-dev2dev >> >> >> >> _______________________________________________ >> xmlvm-users mailing list >> xml...@li... >> https://lists.sourceforge.net/lists/listinfo/xmlvm-users > > > ------------------------------ > > Message: 5 > Date: Wed, 10 Nov 2010 19:34:23 +0100 > From: Wolfgang Korn<wol...@xm...> > Subject: Re: [xmlvm-users] How to write the path to Android SDK in > local.properties > To: Miggi<mig...@go...> > Cc: Xmlvm Users<xml...@li...> > Message-ID:<4CD...@xm...> > Content-Type: text/plain; charset="iso-8859-15" > > Miggi, > > be careful with cross-compiling under Windows and then running the final > build step on a Mac - you might encounter encoding problems. I recently > talked to someone who did exacly that. It turned out that Xcode was not > able to read the generated project file. It was incomplete and > especially the references to the cross-compiled sources were missing. So > - if you have a Mac available I recommend running both XMLVM and Xcode > on the Mac. > > -- Wolfgang > > > > Miggi wrote: >> Hello Arno >> >> That could be the solution I'm searching for ;) So, if I have an >> android project under Windows then I have to migrate it under Windows >> but to cross-compile it under iOS? Or should I do both steps under iOS? >> >> Thanks a lot! >> >> Miggi >> >> Am 10.11.2010 18:45, schrieb Arno Puder: >>> note that if you plan to cross-compile from Android to iOS, you will >>> need Xcode (meaning, you can't do this under Windows). I'm just >>> mentioning this because I see Windows-style path names. >>> >>> Arno >>> >>> >>> On 11/10/10 8:48 AM, Miggi wrote: >>>> Hello folks >>>> >>>> I'm obviously not able to write the path to the Android SDK in a form >>>> that will be understood ;) >>>> >>>> I've already tried: >>>> >>>> - C:\path\toAndroid >>>> - "C:\path\toAndroid" >>>> - C:\path\toAndroid\ >>>> - "C:\path\toAndroid\" >>>> - C:/path/toAndroid >>>> - "C:/path/toAndroid" >>>> >>>> and a few more versions. But I always get the message, that the path in >>>> local.properties is not been set. Where's my fault? Can somebody >>>> help me? >>>> >>>> Thanks, Miggi >>>> >>>> >>>> >>>> ------------------------------------------------------------------------------ >>>> >>>> The Next 800 Companies to Lead America's Growth: New Video Whitepaper >>>> David G. Thomson, author of the best-selling book "Blueprint to a >>>> Billion" shares his insights and actions to help propel your >>>> business during the next growth cycle. Listen Now! >>>> http://p.sf.net/sfu/SAP-dev2dev >>>> >>>> >>>> >>>> _______________________________________________ >>>> xmlvm-users mailing list >>>> xml...@li... >>>> https://lists.sourceforge.net/lists/listinfo/xmlvm-users >>> ------------------------------------------------------------------------------ >>> >>> The Next 800 Companies to Lead America's Growth: New Video Whitepaper >>> David G. Thomson, author of the best-selling book "Blueprint to a >>> Billion" shares his insights and actions to help propel your >>> business during the next growth cycle. Listen Now! >>> http://p.sf.net/sfu/SAP-dev2dev >>> _______________________________________________ >>> xmlvm-users mailing list >>> xml...@li... >>> https://lists.sourceforge.net/lists/listinfo/xmlvm-users >> ------------------------------------------------------------------------ >> >> ------------------------------------------------------------------------------ >> The Next 800 Companies to Lead America's Growth: New Video Whitepaper >> David G. Thomson, author of the best-selling book "Blueprint to a >> Billion" shares his insights and actions to help propel your >> business during the next growth cycle. Listen Now! >> http://p.sf.net/sfu/SAP-dev2dev >> ------------------------------------------------------------------------ >> >> _______________________________________________ >> xmlvm-users mailing list >> xml...@li... >> https://lists.sourceforge.net/lists/listinfo/xmlvm-users >> > -------------- next part -------------- > An HTML attachment was scrubbed... > > ------------------------------ > > ------------------------------------------------------------------------------ > The Next 800 Companies to Lead America's Growth: New Video Whitepaper > David G. Thomson, author of the best-selling book "Blueprint to a > Billion" shares his insights and actions to help propel your > business during the next growth cycle. Listen Now! > http://p.sf.net/sfu/SAP-dev2dev > > ------------------------------ > > _______________________________________________ > xmlvm-users mailing list > xml...@li... > https://lists.sourceforge.net/lists/listinfo/xmlvm-users > > > End of xmlvm-users Digest, Vol 17, Issue 8 > ****************************************** |
From: Wolfgang K. <wol...@xm...> - 2010-11-10 18:57:13
|
Miggi, be careful with cross-compiling under Windows and then running the final build step on a Mac - you might encounter encoding problems. I recently talked to someone who did exacly that. It turned out that Xcode was not able to read the generated project file. It was incomplete and especially the references to the cross-compiled sources were missing. So - if you have a Mac available I recommend running both XMLVM and Xcode on the Mac. -- Wolfgang Miggi wrote: > Hello Arno > > That could be the solution I'm searching for ;) So, if I have an > android project under Windows then I have to migrate it under Windows > but to cross-compile it under iOS? Or should I do both steps under iOS? > > Thanks a lot! > > Miggi > > Am 10.11.2010 18:45, schrieb Arno Puder: >> note that if you plan to cross-compile from Android to iOS, you will >> need Xcode (meaning, you can't do this under Windows). I'm just >> mentioning this because I see Windows-style path names. >> >> Arno >> >> >> On 11/10/10 8:48 AM, Miggi wrote: >>> Hello folks >>> >>> I'm obviously not able to write the path to the Android SDK in a form >>> that will be understood ;) >>> >>> I've already tried: >>> >>> - C:\path\toAndroid >>> - "C:\path\toAndroid" >>> - C:\path\toAndroid\ >>> - "C:\path\toAndroid\" >>> - C:/path/toAndroid >>> - "C:/path/toAndroid" >>> >>> and a few more versions. But I always get the message, that the path in >>> local.properties is not been set. Where's my fault? Can somebody >>> help me? >>> >>> Thanks, Miggi >>> >>> >>> >>> ------------------------------------------------------------------------------ >>> >>> The Next 800 Companies to Lead America's Growth: New Video Whitepaper >>> David G. Thomson, author of the best-selling book "Blueprint to a >>> Billion" shares his insights and actions to help propel your >>> business during the next growth cycle. Listen Now! >>> http://p.sf.net/sfu/SAP-dev2dev >>> >>> >>> >>> _______________________________________________ >>> xmlvm-users mailing list >>> xml...@li... >>> https://lists.sourceforge.net/lists/listinfo/xmlvm-users >> ------------------------------------------------------------------------------ >> >> The Next 800 Companies to Lead America's Growth: New Video Whitepaper >> David G. Thomson, author of the best-selling book "Blueprint to a >> Billion" shares his insights and actions to help propel your >> business during the next growth cycle. Listen Now! >> http://p.sf.net/sfu/SAP-dev2dev >> _______________________________________________ >> xmlvm-users mailing list >> xml...@li... >> https://lists.sourceforge.net/lists/listinfo/xmlvm-users > > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------------ > The Next 800 Companies to Lead America's Growth: New Video Whitepaper > David G. Thomson, author of the best-selling book "Blueprint to a > Billion" shares his insights and actions to help propel your > business during the next growth cycle. Listen Now! > http://p.sf.net/sfu/SAP-dev2dev > ------------------------------------------------------------------------ > > _______________________________________________ > xmlvm-users mailing list > xml...@li... > https://lists.sourceforge.net/lists/listinfo/xmlvm-users > |
From: Arno P. <ar...@pu...> - 2010-11-10 18:29:20
|
you have to run XMLVM under MacOS to create an iOS Xcode project. The reason is that Java API such as java.io.File.separator (that XMLVM uses) are mapped to the local platform. If you have Windows create an Xcode project, it won't work. This problem could be solved but that is certainly not high on the TODO list. Ultimately you will need a MacOS platform anyways to run and deplay the iOS application. Arno On 11/10/10 10:25 AM, Miggi wrote: > Hello Arno > > That could be the solution I'm searching for ;) So, if I have an android > project under Windows then I have to migrate it under Windows but to > cross-compile it under iOS? Or should I do both steps under iOS? > > Thanks a lot! > > Miggi > > Am 10.11.2010 18:45, schrieb Arno Puder: >> note that if you plan to cross-compile from Android to iOS, you will >> need Xcode (meaning, you can't do this under Windows). I'm just >> mentioning this because I see Windows-style path names. >> >> Arno >> >> >> On 11/10/10 8:48 AM, Miggi wrote: >>> Hello folks >>> >>> I'm obviously not able to write the path to the Android SDK in a form >>> that will be understood ;) >>> >>> I've already tried: >>> >>> - C:\path\toAndroid >>> - "C:\path\toAndroid" >>> - C:\path\toAndroid\ >>> - "C:\path\toAndroid\" >>> - C:/path/toAndroid >>> - "C:/path/toAndroid" >>> >>> and a few more versions. But I always get the message, that the path in >>> local.properties is not been set. Where's my fault? Can somebody help >>> me? >>> >>> Thanks, Miggi >>> >>> >>> >>> ------------------------------------------------------------------------------ >>> >>> The Next 800 Companies to Lead America's Growth: New Video Whitepaper >>> David G. Thomson, author of the best-selling book "Blueprint to a >>> Billion" shares his insights and actions to help propel your >>> business during the next growth cycle. Listen Now! >>> http://p.sf.net/sfu/SAP-dev2dev >>> >>> >>> >>> _______________________________________________ >>> xmlvm-users mailing list >>> xml...@li... >>> https://lists.sourceforge.net/lists/listinfo/xmlvm-users >> ------------------------------------------------------------------------------ >> >> The Next 800 Companies to Lead America's Growth: New Video Whitepaper >> David G. Thomson, author of the best-selling book "Blueprint to a >> Billion" shares his insights and actions to help propel your >> business during the next growth cycle. Listen Now! >> http://p.sf.net/sfu/SAP-dev2dev >> _______________________________________________ >> xmlvm-users mailing list >> xml...@li... >> https://lists.sourceforge.net/lists/listinfo/xmlvm-users > > > > ------------------------------------------------------------------------------ > The Next 800 Companies to Lead America's Growth: New Video Whitepaper > David G. Thomson, author of the best-selling book "Blueprint to a > Billion" shares his insights and actions to help propel your > business during the next growth cycle. Listen Now! > http://p.sf.net/sfu/SAP-dev2dev > > > > _______________________________________________ > xmlvm-users mailing list > xml...@li... > https://lists.sourceforge.net/lists/listinfo/xmlvm-users |
From: Miggi <mig...@go...> - 2010-11-10 18:25:42
|
Hello Arno That could be the solution I'm searching for ;) So, if I have an android project under Windows then I have to migrate it under Windows but to cross-compile it under iOS? Or should I do both steps under iOS? Thanks a lot! Miggi Am 10.11.2010 18:45, schrieb Arno Puder: > note that if you plan to cross-compile from Android to iOS, you will > need Xcode (meaning, you can't do this under Windows). I'm just > mentioning this because I see Windows-style path names. > > Arno > > > On 11/10/10 8:48 AM, Miggi wrote: >> Hello folks >> >> I'm obviously not able to write the path to the Android SDK in a form >> that will be understood ;) >> >> I've already tried: >> >> - C:\path\toAndroid >> - "C:\path\toAndroid" >> - C:\path\toAndroid\ >> - "C:\path\toAndroid\" >> - C:/path/toAndroid >> - "C:/path/toAndroid" >> >> and a few more versions. But I always get the message, that the path in >> local.properties is not been set. Where's my fault? Can somebody help >> me? >> >> Thanks, Miggi >> >> >> >> ------------------------------------------------------------------------------ >> >> The Next 800 Companies to Lead America's Growth: New Video Whitepaper >> David G. Thomson, author of the best-selling book "Blueprint to a >> Billion" shares his insights and actions to help propel your >> business during the next growth cycle. Listen Now! >> http://p.sf.net/sfu/SAP-dev2dev >> >> >> >> _______________________________________________ >> xmlvm-users mailing list >> xml...@li... >> https://lists.sourceforge.net/lists/listinfo/xmlvm-users > ------------------------------------------------------------------------------ > > The Next 800 Companies to Lead America's Growth: New Video Whitepaper > David G. Thomson, author of the best-selling book "Blueprint to a > Billion" shares his insights and actions to help propel your > business during the next growth cycle. Listen Now! > http://p.sf.net/sfu/SAP-dev2dev > _______________________________________________ > xmlvm-users mailing list > xml...@li... > https://lists.sourceforge.net/lists/listinfo/xmlvm-users |
From: Arno P. <ar...@pu...> - 2010-11-10 18:08:49
|
note that if you plan to cross-compile from Android to iOS, you will need Xcode (meaning, you can't do this under Windows). I'm just mentioning this because I see Windows-style path names. Arno On 11/10/10 8:48 AM, Miggi wrote: > Hello folks > > I'm obviously not able to write the path to the Android SDK in a form > that will be understood ;) > > I've already tried: > > - C:\path\toAndroid > - "C:\path\toAndroid" > - C:\path\toAndroid\ > - "C:\path\toAndroid\" > - C:/path/toAndroid > - "C:/path/toAndroid" > > and a few more versions. But I always get the message, that the path in > local.properties is not been set. Where's my fault? Can somebody help me? > > Thanks, Miggi > > > > ------------------------------------------------------------------------------ > The Next 800 Companies to Lead America's Growth: New Video Whitepaper > David G. Thomson, author of the best-selling book "Blueprint to a > Billion" shares his insights and actions to help propel your > business during the next growth cycle. Listen Now! > http://p.sf.net/sfu/SAP-dev2dev > > > > _______________________________________________ > xmlvm-users mailing list > xml...@li... > https://lists.sourceforge.net/lists/listinfo/xmlvm-users |
From: Panayotis K. <pan...@pa...> - 2010-11-10 17:42:58
|
On Nov 10, 2010, at 6:48 PM, Miggi wrote: > Hello folks > > I'm obviously not able to write the path to the Android SDK in a form that will be understood ;) > > I've already tried: > > - C:\path\toAndroid > - "C:\path\toAndroid" > - C:\path\toAndroid\ > - "C:\path\toAndroid\" > - C:/path/toAndroid > - "C:/path/toAndroid" > > and a few more versions. But I always get the message, that the path in local.properties is not been set. Where's my fault? Can somebody help me? > > Thanks, Miggi You need to provide the path of the *actual* Andoird SDK. Let's say that you have installed Android SDK under C:\Development\SDKs\Android Then, this is the directory you need to provide to the local.properties file |
From: Miggi <mig...@go...> - 2010-11-10 16:49:10
|
Hello folks I'm obviously not able to write the path to the Android SDK in a form that will be understood ;) I've already tried: - C:\path\toAndroid - "C:\path\toAndroid" - C:\path\toAndroid\ - "C:\path\toAndroid\" - C:/path/toAndroid - "C:/path/toAndroid" and a few more versions. But I always get the message, that the path in local.properties is not been set. Where's my fault? Can somebody help me? Thanks, Miggi |
From: Arno P. <ar...@pu...> - 2010-11-08 19:56:21
|
please note that no one is currently working on the JavaScript backend. The only thing that ever worked was to cross-compile some plain Java code over to JavaScript. We never pushed it far enough to cross-compile a complete Android application. While possible in theory, this is a lot of work. Arno On 11/8/10 3:55 AM, John Bester wrote: > When I try to generate a web application from an Android application I > came across these problems: (I am working on an Ubuntu 10.4 installation) > > 1) The manual mentions that QOOXDOO_HOME variable needed to be set up, > but this did not work and I got another message, saying that I should > set up XMLVM_QOOXDOO_PATH. I set up this variable to point to the same > folder and this time around that problem was fixed. > > 2) Although the manual mentions that --qx-main and --qx-app arguments > must be specified, it does not specify what these parameters mean or how > to determine values to be assigned to them. When you specify no > --qx-main parameter, you get the following message: > QooxdooOutputProcess: --qx-main= must be of format:<ClassName>.(main|Main) > There are no files in an Android project that has a "public static void > main(String[] args)" method, so I assume I can pick any class name. > > 3) I tried using MyClass.Main as --qx-main and all seemed wo work fine - > but no generated code, finally I found it in a subfolder of my current > folder (/tmp/xmlvm/home/...) in stead of (/home/...). > > 4) I then copied the files in the "build" folder to the location where I > actually wanted it. When I open index.html in a web browser, I simply > get an empty screen. > > 5) I now tried to redo the xmlvm process and got this error: > ERROR: QooxdooOutputProcess: Output directory exists, but doesn't seem > to be a valid QX project as the following file could not be found: > /tmp/xmlvm/home/.../temp_cache/temp_qx_app/generate.py. The funny thing > is, I can delete the folder /tmp/xmlvm/home/... completely and I still > get the error. Eventually I found that the check was done against the > folder I actually wanted as a destination and not the subfolder of the > current folder. > > 6) I got null pointer exceptions a few times in at least 2 different > places. The one I can reproduce is when I use the application class name > as a --qx-main parameter (e.g. "softco.monitor.Monitor"). Here is the > stack trace: > Exception in thread "Thread-2" java.lang.NullPointerException > at net.sf.saxon.Controller.transformDocument(Controller.java:1776) > at net.sf.saxon.Controller.transform(Controller.java:1559) > at org.xmlvm.proc.XsltRunner.runXSLT(XsltRunner.java:95) > at org.xmlvm.proc.XsltRunner.runXSLT(XsltRunner.java:66) > at > org.xmlvm.proc.out.JavaScriptOutputProcess.generateJavaScript(JavaScriptOutputProcess.java:141) > at > org.xmlvm.proc.out.JavaScriptOutputProcess$JavaScriptTranslationThread.run(JavaScriptOutputProcess.java:61) > > If I add .Main at the end of this main ("softco.monitor.Monitor.Main"), > I do not get this exception. > > According to the manual I should have a read ready to deploy web > application when target is qooxdoo, but unfortunately I just get a blank > page. Is this statement in the manual in theory (will work if qooxdoo > target is fully developed), or am I specifying parameters incorrectly? > (I am hoping for the latter). Can someone please clarify what these two > parameters in the manual should be? > > Regards > John Bester > > ------------------------------------------------------------------------------ > The Next 800 Companies to Lead America's Growth: New Video Whitepaper > David G. Thomson, author of the best-selling book "Blueprint to a > Billion" shares his insights and actions to help propel your > business during the next growth cycle. Listen Now! > http://p.sf.net/sfu/SAP-dev2dev > _______________________________________________ > xmlvm-users mailing list > xml...@li... > https://lists.sourceforge.net/lists/listinfo/xmlvm-users |
From: Arno P. <ar...@pu...> - 2010-11-08 19:28:10
|
I'm assuming that the location-API in iOS is already using double. In that case we should also just offer doubles in the Java-API. The programmer needs to know about the consequences of using double; both in Java and in Objective-C. Arno On 11/8/10 8:38 AM, Panayotis Katsaloulis wrote: > > On Nov 8, 2010, at 6:11 PM, Paul Poley wrote: > >> Checking equality on double or float values is always fishy. Unfortunately BigDecimal hasn't yet become a priority, but that would be a much safer implementation. It doesn't lose precision, making it a good candidate for sensitive numbers, such as currency calculations. >> >> If you do go down that route though, make sure to use "compareTo" and not "equals". E.g. "5.40" does not "equals" "5.4", but "compareTo" will return 0. Forgive me if I am stating anything you already know. >> >> Paul Poley > > > The problem unfortunately is under Obj-C code and not Java. > :) > > I agree with you, but right now, after doing some tests, I have the feeling that actually these values are used by iOS SDK more as a reference (and is checked for being larger/smaller than the specified value) and not really for equality. > Thus I believe that it will be safe to use double values, for now. > ------------------------------------------------------------------------------ > The Next 800 Companies to Lead America's Growth: New Video Whitepaper > David G. Thomson, author of the best-selling book "Blueprint to a > Billion" shares his insights and actions to help propel your > business during the next growth cycle. Listen Now! > http://p.sf.net/sfu/SAP-dev2dev > _______________________________________________ > xmlvm-users mailing list > xml...@li... > https://lists.sourceforge.net/lists/listinfo/xmlvm-users |
From: Panayotis K. <pan...@pa...> - 2010-11-08 16:38:20
|
On Nov 8, 2010, at 6:11 PM, Paul Poley wrote: > Checking equality on double or float values is always fishy. Unfortunately BigDecimal hasn't yet become a priority, but that would be a much safer implementation. It doesn't lose precision, making it a good candidate for sensitive numbers, such as currency calculations. > > If you do go down that route though, make sure to use "compareTo" and not "equals". E.g. "5.40" does not "equals" "5.4", but "compareTo" will return 0. Forgive me if I am stating anything you already know. > > Paul Poley The problem unfortunately is under Obj-C code and not Java. :) I agree with you, but right now, after doing some tests, I have the feeling that actually these values are used by iOS SDK more as a reference (and is checked for being larger/smaller than the specified value) and not really for equality. Thus I believe that it will be safe to use double values, for now. |
From: Paul P. <bay...@gm...> - 2010-11-08 16:12:06
|
Checking equality on double or float values is always fishy. Unfortunately BigDecimal hasn't yet become a priority, but that would be a much safer implementation. It doesn't lose precision, making it a good candidate for sensitive numbers, such as currency calculations. If you do go down that route though, make sure to use "compareTo" and not "equals". E.g. "5.40" does not "equals" "5.4", but "compareTo" will return 0. Forgive me if I am stating anything you already know. Paul Poley On Mon, Nov 8, 2010 at 4:13 AM, Panayotis Katsaloulis < pan...@pa...> wrote: > Hello all! > > I am implementing CoreLocation library (actually it is ready and working) > but I'd like your opinion about one thing. > > Here > > http://developer.apple.com/library/ios/documentation/CoreLocation/Reference/CLLocation_Class/CLLocation/CLLocation.html#//apple_ref/doc/uid/TP40007126-CH3-SW27 > > is a list of constant double values. These values define the accuracy of > the location, and I found that they have meaningful values (i.e > kCLLocationAccuracyNearestTenMeters is 10, kCLLocationAccuracyKilometer is > 1000 etc). > > I have created a class containing these static values, but since these are > double values and not integers, it is always possible that equality might > not work as expected. > > I tried to check every one of them with something like > java_value == kCLLocationAccuracy_value > and they all seem OK. > > > > > On the other hand, it might be possible to create a wrapper method that > returns this value, i.e. something like > > public static double Kilometer () { .. } > > in java and > > + (double) Kilometer__ { return kCLLocationAccuracyKilometer; } > > in obj-c, and use the static methods instead. > This might be safer but it is slower. > > Since the "constant variable" solution works fine, I'd rather prefer that > solution. > What do you think? > > > > ------------------------------------------------------------------------------ > The Next 800 Companies to Lead America's Growth: New Video Whitepaper > David G. Thomson, author of the best-selling book "Blueprint to a > Billion" shares his insights and actions to help propel your > business during the next growth cycle. Listen Now! > http://p.sf.net/sfu/SAP-dev2dev > _______________________________________________ > xmlvm-users mailing list > xml...@li... > https://lists.sourceforge.net/lists/listinfo/xmlvm-users > |
From: Panayotis K. <pan...@pa...> - 2010-11-08 12:51:53
|
On Nov 8, 2010, at 1:43 PM, Wolfgang Korn wrote: > Panayotis, > > TableView - or do you mean TableLayout? TableLayout is already > available. To support TableLayout we integrated the Android sources into > XMLVM as we already did with the other LayoutManagers. I added attribute > parsing to TableLayout last week. > > -- Wolfgang oops, sorry, I was referring to ListActivity/ListView (btw, I didn't know of TableLayout :) |
From: John B. <joh...@so...> - 2010-11-08 11:56:12
|
When I try to generate a web application from an Android application I came across these problems: (I am working on an Ubuntu 10.4 installation) 1) The manual mentions that QOOXDOO_HOME variable needed to be set up, but this did not work and I got another message, saying that I should set up XMLVM_QOOXDOO_PATH. I set up this variable to point to the same folder and this time around that problem was fixed. 2) Although the manual mentions that --qx-main and --qx-app arguments must be specified, it does not specify what these parameters mean or how to determine values to be assigned to them. When you specify no --qx-main parameter, you get the following message: QooxdooOutputProcess: --qx-main= must be of format: <ClassName>.(main|Main) There are no files in an Android project that has a "public static void main(String[] args)" method, so I assume I can pick any class name. 3) I tried using MyClass.Main as --qx-main and all seemed wo work fine - but no generated code, finally I found it in a subfolder of my current folder (/tmp/xmlvm/home/...) in stead of (/home/...). 4) I then copied the files in the "build" folder to the location where I actually wanted it. When I open index.html in a web browser, I simply get an empty screen. 5) I now tried to redo the xmlvm process and got this error: ERROR: QooxdooOutputProcess: Output directory exists, but doesn't seem to be a valid QX project as the following file could not be found: /tmp/xmlvm/home/.../temp_cache/temp_qx_app/generate.py. The funny thing is, I can delete the folder /tmp/xmlvm/home/... completely and I still get the error. Eventually I found that the check was done against the folder I actually wanted as a destination and not the subfolder of the current folder. 6) I got null pointer exceptions a few times in at least 2 different places. The one I can reproduce is when I use the application class name as a --qx-main parameter (e.g. "softco.monitor.Monitor"). Here is the stack trace: Exception in thread "Thread-2" java.lang.NullPointerException at net.sf.saxon.Controller.transformDocument(Controller.java:1776) at net.sf.saxon.Controller.transform(Controller.java:1559) at org.xmlvm.proc.XsltRunner.runXSLT(XsltRunner.java:95) at org.xmlvm.proc.XsltRunner.runXSLT(XsltRunner.java:66) at org.xmlvm.proc.out.JavaScriptOutputProcess.generateJavaScript(JavaScriptOutputProcess.java:141) at org.xmlvm.proc.out.JavaScriptOutputProcess$JavaScriptTranslationThread.run(JavaScriptOutputProcess.java:61) If I add .Main at the end of this main ("softco.monitor.Monitor.Main"), I do not get this exception. According to the manual I should have a read ready to deploy web application when target is qooxdoo, but unfortunately I just get a blank page. Is this statement in the manual in theory (will work if qooxdoo target is fully developed), or am I specifying parameters incorrectly? (I am hoping for the latter). Can someone please clarify what these two parameters in the manual should be? Regards John Bester |