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

Commit

Permalink
Release v1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
amirisback committed May 16, 2020
1 parent bf2aa21 commit 0bed516
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright [yyyy] [name of copyright owner]
Copyright 2020 Muhammad Faisal Amir

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,26 @@
# consumable-code-pixabay-api By AmirIsBack
- v1.0.1 - Development
- v1.0.2 - Development
- Stable Version

# About This Project
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

# Screen Shoot Apps
<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>

# Documentation Pixabay Api
https://pixabay.com/api/docs/

# Version Release
This Is Latest Release

$version_release = 1.0.1
$version_release = 1.0.2

What's New??

* add handing progress view and fully parameter *
* Refactoring code and adding sample code*

# How To Use This Project
<h3>Step 1. Add the JitPack repository to your build file</h3>
Expand All @@ -34,7 +39,7 @@ Add it in your root build.gradle at the end of repositories:

dependencies {
// library consumable code pixabay api
implementation 'com.github.amirisback:consumable-code-pixabay-api:$version_release'
implementation 'com.github.amirisback:consumable-code-pixabay-api:1.0.2'
}

<h3>Step 3. Declaration ConsumePixabayApi</h3>
Expand Down Expand Up @@ -83,11 +88,6 @@ Add it in your root build.gradle at the end of repositories:
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

# Screen Shoot Apps
<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>

# Function Main From This Project
// Switch For Using Chuck Interceptor
fun usingChuckInterceptor(context: Context)
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ android {

def versionMajor = 1
def versionMinor = 0
def versionPatch = 1
def versionPatch = 2

def projectVersionCode = (versionMajor*100) + (versionMinor*10) + (versionPatch*1)
def projectVersionName = "$versionMajor.$versionMinor.$versionPatch"
Expand Down
2 changes: 1 addition & 1 deletion frogopixabayapi/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ android {

def versionMajor = 1
def versionMinor = 0
def versionPatch = 1
def versionPatch = 2

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

0 comments on commit 0bed516

Please sign in to comment.