Skip to content

Latest commit

 

History

History
79 lines (60 loc) · 4.02 KB

README.md

File metadata and controls

79 lines (60 loc) · 4.02 KB

PDFReporter

The library is a fork of the popular open source Jasper Reports and supports the common features provided by Jasper Reports, but offline and for mobile apps. The PDFReporter library supports iOS, Java and Android library. For your document and report design you use the Jaspersoft® Studio or PDFReporter Studio(experimental) where you can visualize your data.

Licensing

Generally you can use the library as long as your app is open source and published on one of the common repositories on the web. The library is a multi project and supports the following licenses, Apache License V2.0, GNU General Public License version 3.0 (GPLv3), GNU Library or Lesser General Public License version 3.0 (LGPLv3)

If you want to use it commercially please contact [email protected] for further informations.

Webpages & Informations

Repositories

You find the core library, android ios sample app at sourceforge. The iOS framework of the library and the static c libraries for iOS (libHaru, libPng) are hosted on github.

Latest updates

Download the PDFReporter

Using PDFReporter on Windows Applications (experimental)

There are a few ways of using the library in windows apps. We recommand you to bridge the java library with on of the most common C# solutions - also recommended on the web.

Bridge your C# class against the API Class

Using in Maven

Android

<dependency>
    <groupId>com.pdfreporting</groupId>
    <artifactId>pdfreporter-android-bundle</artifactId>
    <version>1.X.X</version>
</dependency>

Java (Desktop)

<dependency>
    <groupId>com.pdfreporting</groupId>
    <artifactId>pdfreporter-java-desktop-bundle</artifactId>
    <version>1.X.X</version>
</dependency>

add our Repository to your pom.xml

<repository>
        <id>OpenSoftwareSolutionsMvn</id>
        <name>JSHuntingYard Repo</name>
        <url>"https://github.com/OpenSoftwareSolutions/mvn-repo/raw/master/repository/"</url>
        <snapshots>
            <enabled>true</enabled>
            <updatePolicy>always</updatePolicy>
        </snapshots>
        <releases>
            <enabled>true</enabled>
            <updatePolicy>daily</updatePolicy>
        </releases>
</repository>