You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 18, 2021. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+47-4Lines changed: 47 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# consumable-code-pixabay-api By AmirIsBack
2
2
- v1.0.0 - Development
3
-
-Release Soon
3
+
-Stable Version
4
4
5
5
# About This Project
6
6
Eliminates the method of retrieving json data using retrofit repeatedly. so this project has a set of functions to retrieve data without the need for fetching data using the retrofit of the API
@@ -18,6 +18,14 @@ Simple code and reusable data
18
18
https://pixabay.com/api/docs/
19
19
20
20
# Function Main From This Project
21
+
// Switch For Using Chuck Interceptor
22
+
fun usingChuckInterceptor(context: Context)
23
+
24
+
// Search for Image
25
+
fun searchImage(query: String, callback: PixabayResultCallback<ResponseImage>)
26
+
27
+
// Search for Video
28
+
fun searchVideo(query: String, callback: PixabayResultCallback<ResponseVideo>)
21
29
22
30
# Android Library Version (build.gradle)
23
31
- ext.kotlin_version = '1.3.70'
@@ -29,14 +37,49 @@ https://pixabay.com/api/docs/
29
37
# Version Release
30
38
This Is Latest Release
31
39
32
-
$version_release = Still on development
40
+
$version_release = 1.0.0
33
41
34
42
What's New??
35
43
36
-
* Development *
44
+
* New Release searchImage() and searchVideo() *
37
45
38
46
# How To Use This Project
39
-
- Release soon
47
+
<h3>Step 1. Add the JitPack repository to your build file</h3>
48
+
49
+
Add it in your root build.gradle at the end of repositories:
0 commit comments