Skip to content

Latest commit

 

History

History
46 lines (38 loc) · 999 Bytes

README.md

File metadata and controls

46 lines (38 loc) · 999 Bytes

Previewer

Android SDK/Library for generating a preview for PDF/MP4 files present locally in the device or from YouTube URLs.

To use this library in your project

Using Gradle

Step 1. Add the JitPack repository to your build file

Add it in your root settings.gradle at the end of repositories:

repositories {
  ...
  maven { url 'https://jitpack.io' }
}

Step 2. Add the dependency

dependencies {
  ...
  implementation 'com.github.COPS-IITBHU:Previewer:1.0.0'
}

Using Maven

Step 1. Add the JitPack repository to your build file

<repositories>
    <repository>
      <id>jitpack.io</id>
      <url>https://jitpack.io</url>
    </repository>
</repositories>

Step 2. Add the dependency

<dependency>
    <groupId>com.github.COPS-IITBHU</groupId>
    <artifactId>Previewer</artifactId>
    <version>1.0.0</version>
</dependency>