@@ -6,9 +6,8 @@ Insta Utils is a Insta post downloader for Android applications written in **Jav
66[ ![ Download] ( https://api.bintray.com/packages/sanjaydevtech/instautils/com.sanjaydevtech.instautils/images/download.svg ) ] ( https://bintray.com/sanjaydevtech/instautils/com.sanjaydevtech.instautils/_latestVersion )
77
88# New Features!
9+ Check [ CHANGELOG] ( https://github.com/SanjayDevTech/instautils/blob/master/CHANGELOG.md ) for new features and updates
910
10- - Download the Insta public post
11- - Set the image directly to ImageView
1211
1312### Credits
1413
@@ -17,11 +16,12 @@ Insta Utils uses a number of open source libraries to work properly:
1716* JSoup - To parse HTML
1817* [ Glide] ( https://github.com/bumptech/glide ) - Url to ImageView
1918
20- ### Implemetation
21-
19+ ### Implementation
2220``` gradle
23- implementation 'com.sanjaydevtech.instautils:instautils:1.0.2 '
21+ implementation 'com.sanjaydevtech.instautils:instautils:<latest_version> '
2422```
23+ Check [ Releases] ( https://github.com/SanjayDevTech/instautils/releases ) for Latest version
24+
2525
2626### Instagram DP
2727
@@ -43,9 +43,10 @@ InstaScraper.getDP(this, instaProfile, new InstaResponse() {
4343```
4444
4545#### Displaying
46+
4647After retrieving the InstaPost object you can set the image to an ImageView
4748``` java
48- InstaDownloader downloader = new InstaDowloader (this );
49+ InstaDownloader downloader = new InstaDownloader (this );
4950ImageView img = findViewById(R . id. imageView);
5051downloader. setImage(post, img);
5152```
@@ -66,7 +67,7 @@ downloader.getBitmap(post, new InstaImage() {
6667#### Initialisation
6768
6869``` java
69- InstaDownloader downloader = new InstaDowloader (this );
70+ InstaDownloader downloader = new InstaDownloader (this );
7071downloader. setResponse(new InstaResponse () {
7172 @Override
7273 public void onResponse (InstaPost post ) {
@@ -122,10 +123,6 @@ git push
122123### Any Issues?
123124* Create a new issue on github
124125
125- ### Todos
126-
127- - Find hidden bugs
128-
129126License
130127----
131128MIT
0 commit comments