Skip to content

Commit 114f19c

Browse files
committed
Release v1.1.9
1 parent 9bb6ffe commit 114f19c

File tree

5 files changed

+33
-26
lines changed

5 files changed

+33
-26
lines changed

README.md

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

22-
$version_release = 1.1.8-beta02
22+
$version_release = 1.1.9
2323

2424
What's New??
2525

2626
[![FrogoRecyclerView](https://jitpack.io/v/amirisback/frogo-recycler-view.svg?style=flat-square)](https://jitpack.io/#amirisback/frogo-recycler-view)
2727
[![FrogoAdmob](https://jitpack.io/v/amirisback/frogo-admob.svg?style=flat-square)](https://jitpack.io/#amirisback/frogo-admob)
28-
[![FrogoLog](https://jitpack.io/v/amirisback/frogo-log.svg?style=flat-square)](https://jitpack.io/#amirisback/frogo-log)
29-
[![FrogoNotification](https://jitpack.io/v/amirisback/frogo-notification.svg?style=flat-square)](https://jitpack.io/#amirisback/frogo-notification)
3028
[![FrogoSDK](https://jitpack.io/v/frogobox/frogo-sdk.svg?style=flat-square)](https://jitpack.io/#frogobox/frogo-sdk)
3129
[![FrogoUI](https://jitpack.io/v/frogobox/frogo-ui.svg?style=flat-square)](https://jitpack.io/#frogobox/frogo-ui)
3230
[![FrogoConsumeApi](https://jitpack.io/v/frogobox/frogo-consume-api.svg?style=flat-square)](https://jitpack.io/#frogobox/frogo-consume-api)
3331

3432
```kotlin
35-
const val recyclerViewVersion = "4.0.5" // https://github.com/amirisback/frogo-recycler-view
36-
const val admobVersion = "4.2.9" // https://github.com/amirisback/frogo-admob
37-
const val logVersion = "2.0.9" // https://github.com/amirisback/frogo-log
38-
const val notificationVersion = "1.1.1" // https://github.com/amirisback/frogo-notification
39-
40-
const val uiVersion = "0.0.1-beta07" // https://github.com/frogobox/frogo-ui
41-
const val sdkVersion = "0.0.2-beta01" // https://github.com/frogobox/frogo-sdk
42-
const val animationVersion = "0.0.1-beta05" // https://github.com/frogobox/frogo-animation
43-
const val consumeApiVersion = "2.0.4" // https://github.com/frogobox/frogo-consume-api
44-
const val loadingIndicatorViewVersion = "0.0.1-beta01" // https://github.com/frogobox/frogo-loading-indicator-view
33+
const val recyclerViewVersion = "4.0.7" // https://github.com/amirisback/frogo-recycler-view
34+
const val admobVersion = "4.3.1" // https://github.com/amirisback/frogo-admob
35+
const val uiVersion = "0.0.1" // https://github.com/frogobox/frogo-ui
36+
const val sdkVersion = "0.0.2" // https://github.com/frogobox/frogo-sdk
37+
const val consumeApiVersion = "2.0.5" // https://github.com/frogobox/frogo-consume-api
38+
39+
const val logVersion = "2.0.9" // https://github.com/amirisback/frogo-log [DEPRECATED]
40+
const val notificationVersion = "1.1.1" // https://github.com/amirisback/frogo-notification [DEPRECATED]
41+
const val animationVersion = "0.0.1-beta05" // https://github.com/frogobox/frogo-animation [DEPRECATED]
42+
const val loadingIndicatorViewVersion = "0.0.1-beta01" // https://github.com/frogobox/frogo-loading-indicator-view [DEPRECATED]
4543
```
4644

4745
## Download this project
@@ -60,7 +58,7 @@ repositories {
6058
```kotlin
6159
dependencies {
6260
// library frogo-build-src
63-
implementation("com.github.frogobox:frogo-build-src:1.1.8-beta02")
61+
implementation("com.github.frogobox:frogo-build-src:1.1.9")
6462
}
6563
```
6664

build.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ java {
2121
}
2222

2323
tasks.withType<KotlinCompile> {
24-
kotlinOptions.jvmTarget = JavaVersion.VERSION_11.toString()
24+
kotlinOptions {
25+
jvmTarget = JavaVersion.VERSION_11.toString()
26+
}
2527
}
2628

2729
publishing {

buildSrc/build.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,7 @@ java {
1515
}
1616

1717
tasks.withType<KotlinCompile> {
18-
kotlinOptions.jvmTarget = JavaVersion.VERSION_11.toString()
18+
kotlinOptions {
19+
jvmTarget = JavaVersion.VERSION_11.toString()
20+
}
1921
}

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 = 1
28-
const val VERSION_PATCH = 8
28+
const val VERSION_PATCH = 9
2929

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

src/main/kotlin/Frogo.kt

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@
1313

1414
object Frogo {
1515

16-
const val recyclerViewVersion = "4.0.5" // https://github.com/amirisback/frogo-recycler-view
17-
const val admobVersion = "4.2.9" // https://github.com/amirisback/frogo-admob
18-
const val logVersion = "2.0.9" // https://github.com/amirisback/frogo-log
19-
const val notificationVersion = "1.1.1" // https://github.com/amirisback/frogo-notification
16+
const val recyclerViewVersion = "4.0.7" // https://github.com/amirisback/frogo-recycler-view
17+
const val admobVersion = "4.3.1" // https://github.com/amirisback/frogo-admob
18+
const val uiVersion = "0.0.1" // https://github.com/frogobox/frogo-ui
19+
const val sdkVersion = "0.0.2" // https://github.com/frogobox/frogo-sdk
20+
const val consumeApiVersion = "2.0.5" // https://github.com/frogobox/frogo-consume-api
2021

21-
const val uiVersion = "0.0.1-beta07" // https://github.com/frogobox/frogo-ui
22-
const val sdkVersion = "0.0.2-beta01" // https://github.com/frogobox/frogo-sdk
23-
const val animationVersion = "0.0.1-beta05" // https://github.com/frogobox/frogo-animation
24-
const val consumeApiVersion = "2.0.4" // https://github.com/frogobox/frogo-consume-api
25-
const val loadingIndicatorViewVersion = "0.0.1-beta01" // https://github.com/frogobox/frogo-loading-indicator-view
22+
const val logVersion = "2.0.9" // https://github.com/amirisback/frogo-log [DEPRECATED]
23+
const val notificationVersion = "1.1.1" // https://github.com/amirisback/frogo-notification [DEPRECATED]
24+
const val animationVersion = "0.0.1-beta05" // https://github.com/frogobox/frogo-animation [DEPRECATED]
25+
const val loadingIndicatorViewVersion = "0.0.1-beta01" // https://github.com/frogobox/frogo-loading-indicator-view [DEPRECATED]
2626

2727
// -----------------------------------------------------------------------------------------------------------------
2828

@@ -58,6 +58,11 @@ object Frogo {
5858
return "com.github.frogobox.frogo-sdk:frogocoresdk:$version"
5959
}
6060

61+
const val sdkLog = "com.github.frogobox.frogo-sdk:frogolog:$sdkVersion"
62+
fun sdkLog(version: String): String {
63+
return "com.github.frogobox.frogo-sdk:frogolog:$version"
64+
}
65+
6166
const val ui = "com.github.frogobox:frogo-ui:$uiVersion"
6267
fun ui(version: String): String {
6368
return "com.github.frogobox:frogo-ui:$version"

0 commit comments

Comments
 (0)