Skip to content

Commit

Permalink
Release v1.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
amirisback committed Mar 16, 2022
1 parent 9f009bd commit f65a3f7
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 13 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Repository for testing build from jitpack.io
## Version Release
This Is Latest Release

$version_release = 1.0.8
$version_release = 1.0.9

What's New??

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

## Download this project
Expand All @@ -58,7 +59,7 @@ repositories {
```kotlin
dependencies {
// library frogo-build-src
implementation("com.github.frogobox:frogo-build-src:1.0.8")
implementation("com.github.frogobox:frogo-build-src:1.0.9")
}
```

Expand All @@ -76,6 +77,7 @@ dependencies {
implementation(Frogo.admob)
implementation(Frogo.log)
implementation(Frogo.notification)
implementation(Frogo.animation)
}
```

Expand All @@ -90,6 +92,7 @@ dependencies {
implementation(Frogo.admob(""))
implementation(Frogo.log(""))
implementation(Frogo.notification(""))
implementation(Frogo.animation(""))
}
```

Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/ProjectSetting.kt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ object ProjectSetting {

const val VERSION_MAJOR = 1
const val VERSION_MINOR = 0
const val VERSION_PATCH = 7
const val VERSION_PATCH = 9

// -----------------------------------------------------------------------------------------------------------------

Expand Down
25 changes: 15 additions & 10 deletions src/main/kotlin/Frogo.kt
Original file line number Diff line number Diff line change
Expand Up @@ -21,61 +21,66 @@ object Frogo {
const val sdkVersion = "0.0.1-beta09" // https://github.com/frogobox/frogo-sdk
const val uiVersion = "0.0.1-beta05" // https://github.com/frogobox/frogo-ui
const val consumeApiVersion = "2.0.2" // https://github.com/frogobox/frogo-consume-api
const val animationVersion = "0.0.1-beta05" // https://github.com/frogobox/frogo-animation

// -----------------------------------------------------------------------------------------------------------------

const val recyclerView = "com.github.amirisback:frogo-recycler-view:$recyclerViewVersion"
fun recyclerView(version: String) : String {
fun recyclerView(version: String): String {
return "com.github.amirisback:frogo-recycler-view:$version"
}

const val admob = "com.github.amirisback:frogo-admob:$admobVersion"
fun admob(version: String) : String {
fun admob(version: String): String {
return "com.github.amirisback:frogo-admob:$version"
}

const val log = "com.github.amirisback:frogo-log:$logVersion"
fun log(version: String) : String {
fun log(version: String): String {
return "com.github.amirisback:frogo-log:$version"
}

const val notification = "com.github.amirisback:frogo-notification:$notificationVersion"
fun notification(version: String) : String {
fun notification(version: String): String {
return "com.github.amirisback:frogo-notification:$version"
}

// -----------------------------------------------------------------------------------------------------------------

const val sdk = "com.github.frogobox:frogo-sdk:$sdkVersion"
fun sdk(version: String) : String {
fun sdk(version: String): String {
return "com.github.frogobox:frogo-sdk:$version"
}

const val sdkCore = "com.github.frogobox.frogo-sdk:frogocoresdk:$sdkVersion"
fun sdkCore(version: String) : String {
fun sdkCore(version: String): String {
return "com.github.frogobox.frogo-sdk:frogocoresdk:$version"
}

const val ui = "com.github.frogobox:frogo-ui:$uiVersion"
fun ui(version: String) : String {
fun ui(version: String): String {
return "com.github.frogobox:frogo-ui:$version"
}

const val uiCore = "com.github.frogobox.frogo-ui:frogocoreui:$uiVersion"
fun uiCore(version: String) : String {
fun uiCore(version: String): String {
return "com.github.frogobox.frogo-ui:frogocoreui:$version"
}

const val consumeApi = "com.github.frogobox:frogo-consume-api:$consumeApiVersion"
fun consumeApi(version: String) : String {
fun consumeApi(version: String): String {
return "com.github.frogobox:frogo-consume-api:$version"
}

const val consumeApiCore = "com.github.frogobox.frogo-consume-api:frogocoreconsumeapi:$consumeApiVersion"
fun consumeApiCore(version: String) : String {
fun consumeApiCore(version: String): String {
return "com.github.frogobox.frogo-consume-api:frogocoreconsumeapi:$version"
}

const val animation = "com.github.frogobox:frogo-animation:$animationVersion"
fun animation(version: String): String {
return "com.github.frogobox:frogo-animation:$version"
}
// -----------------------------------------------------------------------------------------------------------------

}

0 comments on commit f65a3f7

Please sign in to comment.