Skip to content
This repository has been archived by the owner on Feb 7, 2023. It is now read-only.

Commit

Permalink
Release v2.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
amirisback committed Sep 25, 2021
1 parent 69ff655 commit beebb2b
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 15 deletions.
53 changes: 39 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ SDK for anything your problem to make easier developing android apps
## Version Release
This Is Latest Release

$version_release = 2.0.4
$version_release = 2.0.5

What's New??

Expand All @@ -18,29 +18,54 @@ What's New??
* All Frogo Core Android Development *
* Please Re Import Class and Function *
* Renaming Package frogosdk to sdk *
* Update Android Gradle Plugin 7.0.1 *
* Update Android Gradle Plugin 7.0.2 *
* Delete Unused Import and Resources *
* Frogo Music *
* Migrate groovy to Kotlin DSL *

## Download this project

### Step 1. Add the JitPack repository to your build file (build.gradle : Project)

Add it in your root build.gradle at the end of repositories:

allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
#### <Option 1> Groovy Gradle

// Add it in your root build.gradle at the end of repositories:

allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}

#### <Option 2> Kotlin DSL Gradle

```kotlin
// Add it in your root build.gradle.kts at the end of repositories:

allprojects {
repositories {
...
maven { url = uri("https://jitpack.io") }
}
}
```
### Step 2. Add the dependency (build.gradle : Module)

dependencies {

#### <Option 1> Groovy Gradle

dependencies {
// library frogo-sdk
implementation 'com.github.frogobox:frogo-android-sdk:2.0.4'
}
implementation 'com.github.frogobox:frogo-android-sdk:2.0.5'
}

#### <Option 2> Kotlin DSL Gradle

dependencies {
// library frogo-sdk
implementation("com.github.frogobox:frogo-android-sdk:2.0.5")
}

### Step 3. Function from this SDK

Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/ProjectSetting.kt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ object ProjectSetting {

const val VERSION_MAJOR = 2
const val VERSION_MINOR = 0
const val VERSION_PATCH = 4
const val VERSION_PATCH = 5

const val PROJECT_COMPILE_SDK = 31
const val PROJECT_MIN_SDK = 21
Expand Down

0 comments on commit beebb2b

Please sign in to comment.