Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 772 Bytes

File metadata and controls

19 lines (13 loc) · 772 Bytes

documents License MIT

iOS Android

AIR Native Extension for working with documents.

Dependencies

This ANE requires android.support.v4 on Android, one of your another extensions should have it (for example you could use com.distriqt.androidsupport.V4 from Distriqt).

Open documents

if (Documents.isSupported) {
    Documents.shared.previewDocumentWithPath("data/test.pdf");
}

Opens specified document for preview using Intent.ACTION_VIEW on Android and UIDocumentInteractionController on iOS.