Skip to content

Commit 3f3819d

Browse files
committed
Release v1.0.4
1 parent fcd2b88 commit 3f3819d

File tree

3 files changed

+40
-11
lines changed

3 files changed

+40
-11
lines changed

README.md

Lines changed: 31 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
- Library for contant data buildSrc
77
- Library for calling contant variable for build.gradle.kts
88
- Develop using IntelliJ IDEA
9+
- The requirement must already be using buildSrc
910
- License [Click Here](https://raw.githubusercontent.com/frogobox/frogo-build-src/master/LICENSE)
1011
- Privacy Policy [Click Here](https://raw.githubusercontent.com/frogobox/frogo-build-src/master/PRIVACY-POLICY.md)
1112

@@ -16,7 +17,7 @@ Repository for testing build from jitpack.io
1617
## Version Release
1718
This Is Latest Release
1819

19-
$version_release = 1.0.3
20+
$version_release = 1.0.4
2021

2122
What's New??
2223

@@ -38,12 +39,14 @@ repositories {
3839
```kotlin
3940
dependencies {
4041
// library frogo-build-src
41-
implementation("com.github.frogobox:frogo-build-src:1.0.3")
42+
implementation("com.github.frogobox:frogo-build-src:1.0.4")
4243
}
4344
```
4445

4546
### Step 3. Usage (Add on your dependencies build.gradle.kts)
4647

48+
#### Version planted
49+
4750
```kotlin
4851
dependencies {
4952
// List All Frogo Library
@@ -57,12 +60,38 @@ dependencies {
5760
}
5861
```
5962

63+
#### Custom Version
64+
```kotlin
65+
dependencies {
66+
// List All Frogo Library
67+
implementation(Frogo.sdk(""))
68+
implementation(Frogo.ui(""))
69+
implementation(Frogo.consumeApi(""))
70+
implementation(Frogo.recyclerView(""))
71+
implementation(Frogo.admob(""))
72+
implementation(Frogo.log(""))
73+
implementation(Frogo.notification(""))
74+
}
75+
```
76+
6077
### Screen Shoot (Step 2. build.gradle.kts buildSrc)
6178
![](docs/image/ss_step_2.png?raw=true)
6279

6380
### Screen Shoot (Step 3. build.gradle.kts app)
6481
![](docs/image/ss_step_3.png?raw=true)
6582

83+
### Detail Version
84+
```kotlin
85+
const val recyclerViewVersion = "4.0.5" // https://github.com/amirisback/frogo-recycler-view
86+
const val admobVersion = "4.1.9" // https://github.com/amirisback/frogo-admob
87+
const val logVersion = "2.0.9" // https://github.com/amirisback/frogo-log
88+
const val notificationVersion = "1.1.1" // https://github.com/amirisback/frogo-notification
89+
90+
const val sdkVersion = "0.0.1-beta08" // https://github.com/frogobox/frogo-sdk
91+
const val uiVersion = "0.0.1-beta04" // https://github.com/frogobox/frogo-ui
92+
const val consumeApiVersion = "2.0.1" // https://github.com/frogobox/frogo-consume-api
93+
```
94+
6695
## Colaborator
6796
Very open to anyone, I'll write your name under this, please contribute by sending an email to me
6897

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 = 3
28+
const val VERSION_PATCH = 4
2929

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

src/main/kotlin/Frogo.kt

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

1414
object Frogo {
1515

16-
const val recyclerViewVersion = "4.0.5"
17-
const val admobVersion = "4.1.9"
18-
const val logVersion = "2.0.9"
19-
const val notificationVersion = "1.1.1"
20-
21-
const val sdkVersion = "0.0.1-beta08"
22-
const val uiVersion = "0.0.1-beta04"
23-
const val consumeApiVersion = "2.0.1"
16+
const val recyclerViewVersion = "4.0.5" // https://github.com/amirisback/frogo-recycler-view
17+
const val admobVersion = "4.1.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
20+
21+
const val sdkVersion = "0.0.1-beta08" // https://github.com/frogobox/frogo-sdk
22+
const val uiVersion = "0.0.1-beta04" // https://github.com/frogobox/frogo-ui
23+
const val consumeApiVersion = "2.0.1" // https://github.com/frogobox/frogo-consume-api
2424

2525
// -----------------------------------------------------------------------------------------------------------------
2626

0 commit comments

Comments
 (0)