Skip to content

Commit

Permalink
Release v1.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
amirisback committed Mar 16, 2024
1 parent 6387c1b commit 8ab1545
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 12 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@
## Version Release
This Is Latest Release

$version_release = 1.1.6
$version_release = 1.1.7

What's New??

* Avaiable in dark mode *
* Enhance Performance *
* Easy Change Background Keyboard *
* Refactoring Color *
* Setup Theme *

## How To Use As Library (Coming Soon)

Expand Down Expand Up @@ -65,14 +65,14 @@ allprojects {

dependencies {
// library frogo-keyboard
implementation 'com.github.amirisback:keyboard:1.1.6'
implementation 'com.github.amirisback:keyboard:1.1.7'
}

#### <Option 2> Kotlin DSL Gradle

dependencies {
// library frogo-keyboard
implementation("com.github.amirisback:keyboard:1.1.6")
implementation("com.github.amirisback:keyboard:1.1.7")
}

### Step 3. Create Layout Keyboard IME
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,8 @@ class MovieKeyboard(
private fun setupData() {
val consumeMovieApi = ConsumeMovieApi(MovieUrl.API_KEY) // Your API_KEY
consumeMovieApi.getTrendingMovieDay(object : FrogoDataResponse<Trending<TrendingMovie>> {
override fun onFailed(statusCode: Int, errorMessage: String) {

}

override fun onFinish() {

}
override fun onFailed(statusCode: Int, errorMessage: String) {}
override fun onFinish() {}

override fun onHideProgress() {
binding?.progressBar?.gone()
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 @@ -23,7 +23,7 @@ object ProjectSetting {

const val VERSION_MAJOR = 1
const val VERSION_MINOR = 1
const val VERSION_PATCH = 6
const val VERSION_PATCH = 7

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

Expand Down

0 comments on commit 8ab1545

Please sign in to comment.