Skip to content
This repository was archived by the owner on Aug 18, 2021. It is now read-only.

Commit 79e72d3

Browse files
committed
Release v1.1.0
1 parent 3e0e14e commit 79e72d3

3 files changed

Lines changed: 25 additions & 42 deletions

File tree

README.md

Lines changed: 21 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,30 @@
1-
# consumable-code-pixabay-api By AmirIsBack
2-
- v1.0.2 - Development
3-
- Stable Version
4-
5-
# About This Project
1+
## consumable-code-pixabay-api
2+
[![](https://jitpack.io/v/amirisback/consumable-code-pixabay-api.svg?style=flat-square)](https://jitpack.io/#amirisback/consumable-code-pixabay-api) <br>
63
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
74

8-
# Screen Shoot Apps
9-
<span align="center"><img width="200px" height="360px" src="docs/image/ss_main.png"></span>
10-
<span align="center"><img width="200px" height="360px" src="docs/image/ss_chuck_1.png"></span>
11-
<span align="center"><img width="200px" height="360px" src="docs/image/ss_chuck_2.png"></span>
12-
13-
# Documentation Pixabay Api
5+
## Documentation Pixabay Api
146
https://pixabay.com/api/docs/
157

16-
# Version Release
8+
## Screen Shoot Apps
9+
| Pixabay API | Chuck Data 1 | Chuck Data 2 |
10+
|:------------------:|:----------------------------:|:---------------------:|
11+
| <span align="center"><img width="200px" height="360px" src="docs/image/ss_main.png"></span> | <span align="center"><img width="200px" height="360px" src="docs/image/ss_chuck_1.png"></span> | <span align="center"><img width="200px" height="360px" src="docs/image/ss_chuck_2.png"></span> |
12+
13+
## Version Release
1714
This Is Latest Release
1815

19-
$version_release = 1.0.2
16+
$version_release = 1.1.0
2017

2118
What's New??
2219

23-
* Refactoring code and adding sample code*
20+
* Refactoring code and adding sample code *
21+
* Fixing CLEARTEXT security policy issue *
22+
* Update build.gradle *
23+
* Fixing Bug *
24+
* Enhance Performance *
25+
* Remove Kotlin Android Extension *
2426

25-
# How To Use This Project
27+
## How To Use This Project
2628
<h3>Step 1. Add the JitPack repository to your build file</h3>
2729

2830
Add it in your root build.gradle at the end of repositories:
@@ -39,7 +41,7 @@ Add it in your root build.gradle at the end of repositories:
3941

4042
dependencies {
4143
// library consumable code pixabay api
42-
implementation 'com.github.amirisback:consumable-code-pixabay-api:1.0.2'
44+
implementation 'com.github.amirisback:consumable-code-pixabay-api:1.1.0'
4345
}
4446

4547
<h3>Step 3. Declaration ConsumePixabayApi</h3>
@@ -81,14 +83,8 @@ Add it in your root build.gradle at the end of repositories:
8183
// hide your progress view
8284
}
8385
})
84-
85-
86-
# Automatically Using This Permission
87-
88-
<uses-permission android:name="android.permission.INTERNET"/>
89-
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
9086

91-
# Function Main From This Project
87+
## Function Main From This Project
9288
// Switch For Using Chuck Interceptor
9389
fun usingChuckInterceptor(context: Context)
9490

@@ -128,20 +124,7 @@ Add it in your root build.gradle at the end of repositories:
128124
callback: PixabayResultCallback<Response<PixabayVideo>>
129125
)
130126

131-
# Android Library Version (build.gradle)
132-
- ext.kotlin_version = '1.3.70'
133-
- classpath 'com.android.tools.build:gradle:3.6.1'
134-
- compileSdkVersion 29
135-
- buildToolsVersion "29.0.3"
136-
- minSdkVersion 21
137-
138-
# Fecthing Data Library
139-
- Retrofit
140-
- RxJava
141-
- OkHttp
142-
- Chuck Interceptor
143-
144-
# Colaborator
127+
## Colaborator
145128
Very open to anyone, I'll write your name under this, please contribute by sending an email to me
146129

147130
- Mail To faisalamircs@gmail.com
@@ -155,7 +138,7 @@ Name Of Contribute
155138

156139
Waiting for your contribute
157140

158-
# Attention !!!
141+
## Attention !!!
159142
Please enjoy and don't forget fork and give a star
160143
- Don't Forget Follow My Github Account
161144
- If you like this library, please help me / you can donate to buy patreon services

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ apply plugin: 'kotlin-kapt'
55
android {
66

77
def versionMajor = 1
8-
def versionMinor = 0
9-
def versionPatch = 2
8+
def versionMinor = 1
9+
def versionPatch = 0
1010

1111
def projectVersionCode = (versionMajor*100) + (versionMinor*10) + (versionPatch*1)
1212
def projectVersionName = "$versionMajor.$versionMinor.$versionPatch"

frogopixabayapi/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ apply plugin: 'kotlin-kapt'
55
android {
66

77
def versionMajor = 1
8-
def versionMinor = 0
9-
def versionPatch = 2
8+
def versionMinor = 1
9+
def versionPatch = 0
1010

1111
def projectVersionCode = (versionMajor*100) + (versionMinor*10) + (versionPatch*1)
1212
def projectVersionName = "$versionMajor.$versionMinor.$versionPatch"

0 commit comments

Comments
 (0)