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

Commit

Permalink
Release v1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
amirisback committed Jun 27, 2021
1 parent f873f0d commit 927aa1b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
7 changes: 2 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,12 @@ https://www.themealdb.com/api.php
## Version Release
This Is Latest Release

$version_release = 1.1.0
$version_release = 1.1.1

What's New??

* Fixing CLEARTEXT security policy issue *
* Update build.gradle *
* Fixing Bug *
* Enhance Performance *
* Remove Kotlin Android Extension *

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

dependencies {
// library consumable code the meal db api
implementation 'com.github.amirisback:consumable-code-the-meal-db-api:1.1.0'
implementation 'com.github.amirisback:consumable-code-the-meal-db-api:1.1.1'
}

<h3>Step 3. Declaration ConsumeTheMealDbApi</h3>
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ android {

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

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

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

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

0 comments on commit 927aa1b

Please sign in to comment.