See: Description
Package | Description |
---|---|
net.gini.android.vision |
The Gini Vision Library for Android provides Activities and Fragments for capturing,
reviewing and analyzing photos, images and pdfs of invoices and remittance slips.
|
net.gini.android.vision.analysis |
Contains the Activity and Fragments used for the Analysis Screen.
|
net.gini.android.vision.camera |
Contains the Activity and Fragments used for the Camera Screen.
|
net.gini.android.vision.document |
Contains
Document implementations for the supported document types. |
net.gini.android.vision.help |
Contains Activities used to display information to the user on how to best use the Gini Vision Library.
|
net.gini.android.vision.internal.camera.api | |
net.gini.android.vision.network |
Contains interfaces and classes for adding networking calls to the Gini Vision Library in order
to communicate with the Gini API.
|
net.gini.android.vision.network.model |
Contains value classes for extractions from the Gini API.
|
net.gini.android.vision.noresults |
Contains the Activity and Fragments used for the No Results Screen.
|
net.gini.android.vision.onboarding |
Contains the Activity and Fragments used for the Onboarding Screen.
|
net.gini.android.vision.requirements |
Contains classes to check if the device meets all the requirements for using the Gini Vision Library.
|
net.gini.android.vision.review |
Contains the Activity and Fragments used for the Review Screen.
|
net.gini.android.vision.review.multipage |
Contains the Activity and Fragment used for the Multi-Page Review Screen.
|
net.gini.android.vision.tracking |
Contains the interface, enums and classes used for tracking various events which occur during the usage of the Gini Vision Library.
|
net.gini.android.vision.util |
The Gini Vision Library for Android provides Activities and Fragments for capturing, reviewing and analyzing photos, images and pdfs of invoices and remittance slips.
By integrating this library in your application you can allow your users to easily take a picture of a document, review it and - by implementing the necessary callbacks - upload the document to the Gini API for analysis .
Communication with the Gini API is not part of the Gini Vision Library to allow clients the freedom of using a networking implementation of their chossing. The quickest way to add networking is to use the Gini Vision Network Library. You may also use the Gini API SDK for Android or implement communication with the Gini API yourself.
The Gini Vision Library for Android can be integrated in two ways, either by using the Screen API or the Component API. The Screen API provides Activities for easy integration that can be customized in a limited way. The screen and configuration design is based on our long-lasting experience with integration in customer apps. In the Component API we provide Fragments for advanced integration with more freedom for customization. We strongly recommend keeping in mind our UI/UX guidelines, however.
Customization of the Views is provided mostly via overriding of app resources: dimensions, strings, colors, texts, etc. Onboarding can also be customized to show your own pages, each consisting of an image and a short text.
Due to in-memory image handling applications using the Gini Vision Library must enable large heap.
Screen API: Android 4.4+ (API Level 19+)
Component API: Android 4.4+ (API Level 19+)
Phone Hardware:
Tablet Hardware:
The Screen API provides a main Activity with which to start the Gini Vision Library and two abstract Activities which you need to override to react to events coming from the Gini Vision Library.
In order to support the widest variety of Android versions while keeping the look and feel consistent, we use the Android Support Library and provide only Activities subclassing the AppCompatActivity.
A sequence diagram of the Screen API flow can be found here.
The Component API provides four Fragments which you can include in your own layouts. This allows you more freedom to customize the Gini Vision Library, without being restricted to AppCompatActivities and the Gini Vision Library Theme.
To allow usage even if you aren't using the Android Support Library, we provide a Standard and a Compat version of each Fragment.
A sequence diagram of the Component API flow can be found here.