@@ -8,7 +8,7 @@ SDK for anything your problem to make easier developing android apps
8
8
## Version Release
9
9
This Is Latest Release
10
10
11
- $version_release = 2.0.4
11
+ $version_release = 2.0.5
12
12
13
13
What's New??
14
14
@@ -18,29 +18,54 @@ What's New??
18
18
* All Frogo Core Android Development *
19
19
* Please Re Import Class and Function *
20
20
* Renaming Package frogosdk to sdk *
21
- * Update Android Gradle Plugin 7.0.1 *
21
+ * Update Android Gradle Plugin 7.0.2 *
22
22
* Delete Unused Import and Resources *
23
23
* Frogo Music *
24
+ * Migrate groovy to Kotlin DSL *
24
25
25
26
## Download this project
26
27
27
28
### Step 1. Add the JitPack repository to your build file (build.gradle : Project)
28
29
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
+ ```
37
53
38
54
### Step 2. Add the dependency (build.gradle : Module)
39
-
40
- dependencies {
55
+
56
+ #### <Option 1> Groovy Gradle
57
+
58
+ dependencies {
41
59
// 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
+ }
44
69
45
70
### Step 3. Function from this SDK
46
71
0 commit comments