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

Commit 8559041

Browse files
committed
Release v1.1.0
1 parent e48b22c commit 8559041

File tree

3 files changed

+28
-40
lines changed

3 files changed

+28
-40
lines changed

README.md

Lines changed: 24 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,29 @@
1-
# consumable-code-the-meal-db-api By AmirIsBack
2-
- v1.0.2 - Development
3-
- Stable Version
4-
5-
# About This Project
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
7-
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-
# Android Library Version (build.gradle)
14-
- ext.kotlin_version = '1.3.72'
15-
- classpath 'com.android.tools.build:gradle:3.6.3'
16-
- compileSdkVersion 29
17-
- buildToolsVersion "29.0.3"
18-
- minSdkVersion 21
19-
20-
# Version Release
1+
## consumable-code-the-meal-db-api
2+
[![](https://jitpack.io/v/amirisback/consumable-code-the-meal-db-api.svg?style=flat-square)](https://jitpack.io/#amirisback/consumable-code-the-meal-db-api) <br>
3+
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 <br>
4+
5+
## Documentation The News API
6+
https://www.themealdb.com/api.php
7+
8+
## Screen Shoot Apps
9+
| The Meals 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
2114
This Is Latest Release
2215

23-
$version_release = 1.0.2
16+
$version_release = 1.1.0
2417

2518
What's New??
2619

27-
* Handling Progress view *
20+
* Fixing CLEARTEXT security policy issue *
21+
* Update build.gradle *
22+
* Fixing Bug *
23+
* Enhance Performance *
24+
* Remove Kotlin Android Extension *
2825

29-
# How To Use This Project
26+
## How To Use This Project
3027
<h3>Step 1. Add the JitPack repository to your build file</h3>
3128

3229
Add it in your root build.gradle at the end of repositories:
@@ -43,7 +40,7 @@ Add it in your root build.gradle at the end of repositories:
4340

4441
dependencies {
4542
// library consumable code the meal db api
46-
implementation 'com.github.amirisback:consumable-code-the-meal-db-api:1.0.2'
43+
implementation 'com.github.amirisback:consumable-code-the-meal-db-api:1.1.0'
4744
}
4845

4946
<h3>Step 3. Declaration ConsumeTheMealDbApi</h3>
@@ -72,7 +69,7 @@ Add it in your root build.gradle at the end of repositories:
7269
})
7370

7471

75-
# Function Main From This Project
72+
## Function Main From This Project
7673

7774
// Switch For Using Chuck Interceptor
7875
fun usingChuckInterceptor(context: Context)
@@ -109,17 +106,8 @@ Add it in your root build.gradle at the end of repositories:
109106

110107
// Filter by Area
111108
fun filterByArea(area: String, callback: MealResultCallback<MealResponse<MealFilter>>)
112-
113-
# Fecthing Data Library
114-
- Retrofit
115-
- RxJava
116-
- OkHttp
117-
- Chuck Interceptor
118-
119-
# Documentation The Meal Db Api
120-
https://www.themealdb.com/api.php
121109

122-
# Colaborator
110+
## Colaborator
123111
Very open to anyone, I'll write your name under this, please contribute by sending an email to me
124112

125113
@@ -133,7 +121,7 @@ Name Of Contribute
133121

134122
Waiting for your contribute
135123

136-
# Attention !!!
124+
## Attention !!!
137125
Please enjoy and don't forget fork and give a star
138126
- Don't Forget Follow My Github Account
139127
- 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"

frogothemealdbapi/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)