Skip to content

Commit f65a3f7

Browse files
committed
Release v1.0.9
1 parent 9f009bd commit f65a3f7

File tree

3 files changed

+21
-13
lines changed

3 files changed

+21
-13
lines changed

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Repository for testing build from jitpack.io
1919
## Version Release
2020
This Is Latest Release
2121

22-
$version_release = 1.0.8
22+
$version_release = 1.0.9
2323

2424
What's New??
2525

@@ -40,6 +40,7 @@ const val notificationVersion = "1.1.1" // https://github.com/amirisback/frogo-n
4040
const val sdkVersion = "0.0.1-beta09" // https://github.com/frogobox/frogo-sdk
4141
const val uiVersion = "0.0.1-beta05" // https://github.com/frogobox/frogo-ui
4242
const val consumeApiVersion = "2.0.2" // https://github.com/frogobox/frogo-consume-api
43+
const val animationVersion = "0.0.1-beta05" // https://github.com/frogobox/frogo-animation
4344
```
4445

4546
## Download this project
@@ -58,7 +59,7 @@ repositories {
5859
```kotlin
5960
dependencies {
6061
// library frogo-build-src
61-
implementation("com.github.frogobox:frogo-build-src:1.0.8")
62+
implementation("com.github.frogobox:frogo-build-src:1.0.9")
6263
}
6364
```
6465

@@ -76,6 +77,7 @@ dependencies {
7677
implementation(Frogo.admob)
7778
implementation(Frogo.log)
7879
implementation(Frogo.notification)
80+
implementation(Frogo.animation)
7981
}
8082
```
8183

@@ -90,6 +92,7 @@ dependencies {
9092
implementation(Frogo.admob(""))
9193
implementation(Frogo.log(""))
9294
implementation(Frogo.notification(""))
95+
implementation(Frogo.animation(""))
9396
}
9497
```
9598

buildSrc/src/main/kotlin/ProjectSetting.kt

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

2626
const val VERSION_MAJOR = 1
2727
const val VERSION_MINOR = 0
28-
const val VERSION_PATCH = 7
28+
const val VERSION_PATCH = 9
2929

3030
// -----------------------------------------------------------------------------------------------------------------
3131

src/main/kotlin/Frogo.kt

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,61 +21,66 @@ object Frogo {
2121
const val sdkVersion = "0.0.1-beta09" // https://github.com/frogobox/frogo-sdk
2222
const val uiVersion = "0.0.1-beta05" // https://github.com/frogobox/frogo-ui
2323
const val consumeApiVersion = "2.0.2" // https://github.com/frogobox/frogo-consume-api
24+
const val animationVersion = "0.0.1-beta05" // https://github.com/frogobox/frogo-animation
2425

2526
// -----------------------------------------------------------------------------------------------------------------
2627

2728
const val recyclerView = "com.github.amirisback:frogo-recycler-view:$recyclerViewVersion"
28-
fun recyclerView(version: String) : String {
29+
fun recyclerView(version: String): String {
2930
return "com.github.amirisback:frogo-recycler-view:$version"
3031
}
3132

3233
const val admob = "com.github.amirisback:frogo-admob:$admobVersion"
33-
fun admob(version: String) : String {
34+
fun admob(version: String): String {
3435
return "com.github.amirisback:frogo-admob:$version"
3536
}
3637

3738
const val log = "com.github.amirisback:frogo-log:$logVersion"
38-
fun log(version: String) : String {
39+
fun log(version: String): String {
3940
return "com.github.amirisback:frogo-log:$version"
4041
}
4142

4243
const val notification = "com.github.amirisback:frogo-notification:$notificationVersion"
43-
fun notification(version: String) : String {
44+
fun notification(version: String): String {
4445
return "com.github.amirisback:frogo-notification:$version"
4546
}
4647

4748
// -----------------------------------------------------------------------------------------------------------------
4849

4950
const val sdk = "com.github.frogobox:frogo-sdk:$sdkVersion"
50-
fun sdk(version: String) : String {
51+
fun sdk(version: String): String {
5152
return "com.github.frogobox:frogo-sdk:$version"
5253
}
5354

5455
const val sdkCore = "com.github.frogobox.frogo-sdk:frogocoresdk:$sdkVersion"
55-
fun sdkCore(version: String) : String {
56+
fun sdkCore(version: String): String {
5657
return "com.github.frogobox.frogo-sdk:frogocoresdk:$version"
5758
}
5859

5960
const val ui = "com.github.frogobox:frogo-ui:$uiVersion"
60-
fun ui(version: String) : String {
61+
fun ui(version: String): String {
6162
return "com.github.frogobox:frogo-ui:$version"
6263
}
6364

6465
const val uiCore = "com.github.frogobox.frogo-ui:frogocoreui:$uiVersion"
65-
fun uiCore(version: String) : String {
66+
fun uiCore(version: String): String {
6667
return "com.github.frogobox.frogo-ui:frogocoreui:$version"
6768
}
6869

6970
const val consumeApi = "com.github.frogobox:frogo-consume-api:$consumeApiVersion"
70-
fun consumeApi(version: String) : String {
71+
fun consumeApi(version: String): String {
7172
return "com.github.frogobox:frogo-consume-api:$version"
7273
}
7374

7475
const val consumeApiCore = "com.github.frogobox.frogo-consume-api:frogocoreconsumeapi:$consumeApiVersion"
75-
fun consumeApiCore(version: String) : String {
76+
fun consumeApiCore(version: String): String {
7677
return "com.github.frogobox.frogo-consume-api:frogocoreconsumeapi:$version"
7778
}
7879

80+
const val animation = "com.github.frogobox:frogo-animation:$animationVersion"
81+
fun animation(version: String): String {
82+
return "com.github.frogobox:frogo-animation:$version"
83+
}
7984
// -----------------------------------------------------------------------------------------------------------------
8085

8186
}

0 commit comments

Comments
 (0)