-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3a1b55e
commit d7b7be6
Showing
1 changed file
with
22 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,32 @@ | ||
# UrlPreviewer | ||
URL Previewer Library For Android built in Kotlin | ||
URL Previewer Library For Android built in Kotlin. | ||
[![](https://jitpack.io/v/SoufianeKreX/UrlPreviewer.svg)](https://jitpack.io/#SoufianeKreX/UrlPreviewer) | ||
|
||
|
||
#### Import using Gradle | ||
## Gradle Dependency | ||
|
||
for android studio 3.x | ||
|
||
add this to app level build gradle file | ||
|
||
~~~gradle | ||
compile 'com.soufianekre:urlpreviewer:1.0.0' | ||
allprojects { | ||
repositories { | ||
... | ||
maven { url 'https://jitpack.io' } | ||
} | ||
} | ||
~~~ | ||
|
||
for android studio 3.x | ||
|
||
add this to your module build gradle file | ||
|
||
~~~gradle | ||
implementation 'com.soufianekre:urlpreviewer:1.0.0' | ||
dependencies { | ||
implementation 'com.github.SoufianeKreX:UrlPreviewer:version' | ||
} | ||
~~~ | ||
|
||
## The basics | ||
|
||
First, Add this file to your xml layout folder : |