rheyansh / RPdfGenerator

A sample project to generate PDF file from data using itextpdf/itext7 library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

RPdfGenerator

A sample project to generate PDF file from data using itextpdf/itext7 library

Important Notes

  • Add WRITE_EXTERNAL_STORAGE permission in AndroidManifest.xml

  • Add File Provider in AndroidManifest.xml

    <provider
        android:name="androidx.core.content.FileProvider"
        android:authorities="com.rheyansh.rpdfgenerator.fileprovider"
        android:exported="false"
        android:grantUriPermissions="true">
        <meta-data
            android:name="android.support.FILE_PROVIDER_PATHS"
            android:resource="@xml/provider_paths" />
    </provider>
  • Add XML resource folder (see provider_paths.xml in example folder)

Alt text Alt text

Author

Communication

  • If you found a bug, open an issue.
  • If you want to contribute, submit a pull request.

Other Libraries

  • RBiometric:- Elegant and Easy-to-Use library for iOS Biometric (TouchId and FaceId) authentication.
  • RBeacon:- Sample project for turning android device into a Beacon device. App can work as both broadcaster and receiver.
  • RPicker:- Elegant and Easy-to-Use Date and Options Picker.
  • RFirebaseMessaging:- Project provides basic idea and approach for building small social media application using firebase and implementing chat using Firebase.

About

A sample project to generate PDF file from data using itextpdf/itext7 library

License:MIT License


Languages

Language:Kotlin 100.0%