Skip to content

Commit

Permalink
Release v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
amirisback committed Dec 28, 2020
1 parent 4388500 commit acfbf29
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ frogo-notification is under huge large development
# Version Release
This Is Latest Release

$version_release = 1.0.0
$version_release = 1.0.1

What's New??

Expand All @@ -32,7 +32,7 @@ What's New??

dependencies {
// library frogo-notification
implementation 'com.github.amirisback:frogo-notification:1.0.0'
implementation 'com.github.amirisback:frogo-notification:1.0.1'
}

### Step 3. Implement frogo-notification
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 = 0
def versionPatch = 1

def appDomain = "com"
def appDevConsole = "frogobox"
Expand Down
5 changes: 4 additions & 1 deletion frogonotification/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,14 @@ android {

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

def versionCodeLibrary = (versionMajor * 100) + (versionMinor * 10) + (versionPatch)
def versionNameLibrary = "$versionMajor.$versionMinor.$versionPatch"

compileSdkVersion 30
buildToolsVersion "30.0.2"

defaultConfig {
minSdkVersion 21
targetSdkVersion 30
Expand Down

0 comments on commit acfbf29

Please sign in to comment.