I'm considering http://pdfjet.com/ to generate PDF's in Android (and other platforms I guess).
AFAIK, the commercial version just ships the .jar file. Is this all CN1 needs to build with ?
--
You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group.
To unsubscribe from this group and stop receiving emails from it, send an email to codenameone-discussions+unsub...@googlegroups.com.
Visit this group at https://groups.google.com/group/codenameone-discussions.
To view this discussion on the web visit https://groups.google.com/d/msgid/codenameone-discussions/45c00118-bb7b-4357-87c1-eadfecac6dbd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Not sure I understand why it needs native code of server-side stuff.
It's just a library producing a text file, it's all Java. When I create a CN1 app, doesn't just the byte code of my app get sent to the build server ?
In any case, I just checked the PDFJet Open Source code, and it's (unsurprisingly) source code, so I could include that with my code for my CN1 app, so CN1 can build as per usual (for all platforms), and check with the PDFJet guys that doing this but purchasing a commercial licence was an OK option.
On Thursday, December 22, 2016 at 10:59:53 AM UTC+10, Steve Hannah wrote:You'll need to either do the PDF stuff server-side, or you'll have to do it with native interfaces. I've never used this lib, but they say that it is compatible with Android and WinPhone. It isn't clear whether their .Net version works on UWP. In either case, you'll need to do those using native interfaces. You'd need to find a different lib for iOS.The easiest solution would be to do it server-side.Steve
--
You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group.
To unsubscribe from this group and stop receiving emails from it, send an email to codenameone-discussions+unsub...@googlegroups.com.
Visit this group at https://groups.google.com/group/codenameone-discussions.
To view this discussion on the web visit https://groups.google.com/d/msgid/codenameone-discussions/c9ee060b-fb3b-45fc-9763-b765ef6f787d%40googlegroups.com.
You can give that a try. Usually I start a new Codename One project, and copy the java source files into it. Then start fixing errors as they come up. With something like PDF, you're likely to get in deep pretty fast. Which is why I suggested that doing it server-side is the easiest way.