Skip to content

Commit

Permalink
Release v4.3.5
Browse files Browse the repository at this point in the history
Co-authored-by: frogoboxbot <[email protected]>
  • Loading branch information
amirisback and frogoboxbot committed Apr 19, 2023
1 parent d8f6024 commit 90e06f0
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 18 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
## Version Release
This Is Latest Release

$version_release = 4.3.4
$version_release = 4.3.5

What's New??

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

dependencies {
// library frogo-recycler-view
implementation 'com.github.amirisback:frogo-recycler-view:4.3.4'
implementation 'com.github.amirisback:frogo-recycler-view:4.3.5'
}

#### <Option 2> Kotlin DSL Gradle

dependencies {
// library frogo-recycler-view
implementation("com.github.amirisback:frogo-recycler-view:4.3.4")
implementation("com.github.amirisback:frogo-recycler-view:4.3.5")
}

### Step 3. Create xml view
Expand Down
1 change: 0 additions & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ dependencies {
implementation(GitHub.glide)

implementation(DependencyGradle.FROGO_UI)
implementation(DependencyGradle.FROGO_SDK_LOG)
implementation(DependencyGradle.FROGO_CONSUME_API)

kapt(GitHub.glideCompiler)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import com.frogobox.coreapi.news.NewsConstant
import com.frogobox.coreapi.news.NewsUrl
import com.frogobox.coreapi.news.model.Article
import com.frogobox.coreapi.news.response.ArticleResponse
import com.frogobox.recycler.util.FLog
import com.frogobox.apprecycler.util.FLog
import com.frogobox.recycler.core.FrogoRecyclerNotifyListener
import com.frogobox.recycler.core.IFrogoViewAdapter
import com.frogobox.recycler.ext.injector
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import com.frogobox.recycler.core.*
import com.frogobox.apprecycler.databinding.ActivityBaseBinding
import com.frogobox.apprecycler.model.ExampleModel
import com.frogobox.apprecycler.util.Constant
import com.frogobox.recycler.util.FLog
import com.frogobox.apprecycler.util.FLog

class KotlinNoAdapterActivity : BaseActivity<ActivityBaseBinding>() {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package com.frogobox.recycler.util
package com.frogobox.apprecycler.util

import android.content.Context
import android.util.Log
import android.widget.Toast
import com.frogobox.recycler.util.LogConstant.SIMPLE_MESSSAGE
import com.frogobox.apprecycler.util.LogConstant.SIMPLE_MESSSAGE

/**
* Created by Faisal Amir on 14/02/2021
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package com.frogobox.recycler.util
package com.frogobox.apprecycler.util

import android.content.Context
import android.util.Log
import android.widget.Toast
import com.frogobox.recycler.util.LogConstant.SIMPLE_MESSSAGE
import com.frogobox.apprecycler.util.LogConstant.SIMPLE_MESSSAGE

/**
* Created by Faisal Amir on 14/01/2021
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.frogobox.recycler.util
package com.frogobox.apprecycler.util

import android.content.Context

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.frogobox.recycler.util
package com.frogobox.apprecycler.util


/**
Expand Down
6 changes: 2 additions & 4 deletions buildSrc/src/main/kotlin/DependencyGradle.kt
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,10 @@ object DependencyGradle {

const val FROGO_PATH_RECYCLER_VIEW = ":frogorecyclerview"

const val FROGO_UI_VERSION = "1.1.3"
const val FROGO_SDK_VERSION = "2.1.5"
const val FROGO_CONSUME_API_VERSION = "2.4.4"
const val FROGO_UI_VERSION = "1.1.5"
const val FROGO_CONSUME_API_VERSION = "2.4.5"

const val FROGO_UI = "com.github.frogobox:frogo-ui:$FROGO_UI_VERSION"
const val FROGO_SDK_LOG = "com.github.frogobox.frogo-sdk:frogolog:$FROGO_SDK_VERSION"
const val FROGO_CONSUME_API = "com.github.frogobox:frogo-consume-api:$FROGO_CONSUME_API_VERSION"

}
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/ProjectSetting.kt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
object ProjectSetting {
// project settings
const val NAME_APP = "Frogo Recycler View"
val NAME_APK = NAME_APP.toLowerCase().replace(" ", "-")
val NAME_APK = NAME_APP.lowercase().replace(" ", "-")

const val APP_DOMAIN = "com"
const val APP_PLAY_CONSOLE = "frogobox"
Expand All @@ -23,7 +23,7 @@ object ProjectSetting {

const val VERSION_MAJOR = 4
const val VERSION_MINOR = 3
const val VERSION_PATCH = 4
const val VERSION_PATCH = 5

const val PROJECT_MIN_SDK = 21
const val PROJECT_COMPILE_SDK = 33
Expand Down

0 comments on commit 90e06f0

Please sign in to comment.