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

Commit beebb2b

Browse files
committed
Release v2.0.5
1 parent 69ff655 commit beebb2b

File tree

2 files changed

+40
-15
lines changed

2 files changed

+40
-15
lines changed

README.md

Lines changed: 39 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ SDK for anything your problem to make easier developing android apps
88
## Version Release
99
This Is Latest Release
1010

11-
$version_release = 2.0.4
11+
$version_release = 2.0.5
1212

1313
What's New??
1414

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

2526
## Download this project
2627

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

29-
Add it in your root build.gradle at the end of repositories:
30-
31-
allprojects {
32-
repositories {
33-
...
34-
maven { url 'https://jitpack.io' }
35-
}
36-
}
30+
#### <Option 1> Groovy Gradle
31+
32+
// Add it in your root build.gradle at the end of repositories:
33+
34+
allprojects {
35+
repositories {
36+
...
37+
maven { url 'https://jitpack.io' }
38+
}
39+
}
40+
41+
#### <Option 2> Kotlin DSL Gradle
42+
43+
```kotlin
44+
// Add it in your root build.gradle.kts at the end of repositories:
45+
46+
allprojects {
47+
repositories {
48+
...
49+
maven { url = uri("https://jitpack.io") }
50+
}
51+
}
52+
```
3753
3854
### Step 2. Add the dependency (build.gradle : Module)
39-
40-
dependencies {
55+
56+
#### <Option 1> Groovy Gradle
57+
58+
dependencies {
4159
// library frogo-sdk
42-
implementation 'com.github.frogobox:frogo-android-sdk:2.0.4'
43-
}
60+
implementation 'com.github.frogobox:frogo-android-sdk:2.0.5'
61+
}
62+
63+
#### <Option 2> Kotlin DSL Gradle
64+
65+
dependencies {
66+
// library frogo-sdk
67+
implementation("com.github.frogobox:frogo-android-sdk:2.0.5")
68+
}
4469

4570
### Step 3. Function from this SDK
4671

buildSrc/src/main/kotlin/ProjectSetting.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ object ProjectSetting {
2727

2828
const val VERSION_MAJOR = 2
2929
const val VERSION_MINOR = 0
30-
const val VERSION_PATCH = 4
30+
const val VERSION_PATCH = 5
3131

3232
const val PROJECT_COMPILE_SDK = 31
3333
const val PROJECT_MIN_SDK = 21

0 commit comments

Comments
 (0)