Skip to content

Commit

Permalink
Release v4.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
amirisback committed Jan 16, 2023
1 parent 2592b19 commit 409ea4c
Show file tree
Hide file tree
Showing 14 changed files with 263 additions and 592 deletions.
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@
- Using Kotlin DSL build.gradle.kts
- Elegant call using injector()
- Shimmer Effect, Empty View Effect, Nested Recycler View, Progress Recycler View
- Jetpack Compose UI (Beta Experimental) - FrogoRecyclerCompose [Click Here](https://github.com/amirisback/frogo-recycler-view/blob/master/docs/tutorial/FrogoRecyclerCompose.md)


<a href="https://play.google.com/store/apps/details?id=com.frogobox.apprecycler">
<img width="200px" height="75px" src="https://amirisback.github.io/amirisback/docs/image/google-play-badge.png">
Expand Down Expand Up @@ -47,7 +45,7 @@
## Version Release
This Is Latest Release

$version_release = 4.3.2
$version_release = 4.3.3

What's New??

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

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

#### <Option 2> Kotlin DSL Gradle

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

### Step 3. Create xml view
Expand Down
13 changes: 0 additions & 13 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,6 @@ android {

buildFeatures {
viewBinding = true
compose = true
}

composeOptions {
kotlinCompilerExtensionVersion = DependencyGradle.COMPOSE_VERSION
}

compileOptions {
Expand All @@ -87,11 +82,6 @@ dependencies {
implementation(Androidx.Work.runtimeKtx)
implementation(Androidx.Lifecycle.runtimeKtx)

implementation(Androidx.Compose.activity)
implementation(Androidx.Compose.material("1.3.1"))
implementation(Androidx.Compose.ui)
implementation(Androidx.Compose.uiToolingPreview)

implementation(Google.material)

implementation(GitHub.glide)
Expand All @@ -102,7 +92,4 @@ dependencies {

kapt(GitHub.glideCompiler)

debugImplementation(Androidx.Compose.uiTooling)
debugImplementation(Androidx.Compose.uiTestManifest)

}
5 changes: 0 additions & 5 deletions app/src/main/java/com/frogobox/apprecycler/MainActivity.kt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import com.frogobox.apprecycler.sample.java.noadapter.multiview.JavaNoAdapterMul
import com.frogobox.apprecycler.sample.java.noadapter.simple.JavaNoAdapterActivity
import com.frogobox.apprecycler.sample.java.usingadapter.JavaSampleActivity
import com.frogobox.apprecycler.sample.kotlin.FrogoRvExtActivity
import com.frogobox.apprecycler.sample.kotlin.compose.RecyclerComposeActivity
import com.frogobox.apprecycler.sample.kotlin.noadapter.multiview.KotlinNoAdapterMultiVewActivity
import com.frogobox.apprecycler.sample.kotlin.noadapter.progress.KotlinProgressActivity
import com.frogobox.apprecycler.sample.kotlin.noadapter.shimmer.KotlinShimmerActivity
Expand Down Expand Up @@ -77,10 +76,6 @@ class MainActivity : BaseActivity<ActivityMainBinding>() {
startActivity(Intent(this@MainActivity, KotlinNestedActivity::class.java))
}

btnJetpackCompose.setOnClickListener {
startActivity(Intent(this@MainActivity, RecyclerComposeActivity::class.java))
}

btnAnswerIssue1.setOnClickListener {
startActivity(Intent(this@MainActivity, AnswerIssueActivity::class.java))
}
Expand Down

This file was deleted.

24 changes: 1 addition & 23 deletions app/src/main/res/layout/activity_main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -194,28 +194,6 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/btn_nested_simple" />

<TextView
android:id="@+id/tv_title_6"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="24dp"
android:text="Jetpack Compose (Experimental)"
android:textColor="@color/frogoColorBlack"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/btn_nested" />

<Button
android:id="@+id/btn_jetpack_compose"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/frogo_dimen_8dp"
android:background="@drawable/frogo_bg_cyan_32dp"
android:text="Frogo Recycler Compose"
android:textColor="@color/frogoColorWhite"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/tv_title_6" />

<TextView
android:id="@+id/tv_title_7"
android:layout_width="wrap_content"
Expand All @@ -224,7 +202,7 @@
android:text="Solving Issue"
android:textColor="@color/frogoColorBlack"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/btn_jetpack_compose" />
app:layout_constraintTop_toBottomOf="@+id/btn_nested" />

<Button
android:id="@+id/btn_answer_issue_1"
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id("com.android.application") version "7.3.1" apply false
id("com.android.library") version "7.3.1" apply false
id("com.android.application") version "7.4.0" apply false
id("com.android.library") version "7.4.0" apply false
id("org.jetbrains.kotlin.android") version DependencyGradle.KOTLIN_VERSION apply false
}

Expand Down
2 changes: 1 addition & 1 deletion buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ repositories {
dependencies{

// library frogo-build-src
implementation("com.github.frogobox:open-build-src:2.0.7")
implementation("com.github.frogobox:open-build-src:2.0.9")

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

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

const val PROJECT_MIN_SDK = Version.Gradle.minSdk
const val PROJECT_COMPILE_SDK = Version.Gradle.compileSdk
Expand Down
14 changes: 0 additions & 14 deletions frogorecyclerview/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,6 @@ android {

buildFeatures {
viewBinding = true
compose = true
}

composeOptions {
kotlinCompilerExtensionVersion = DependencyGradle.COMPOSE_VERSION
}

compileOptions {
Expand All @@ -58,16 +53,7 @@ android {
}

dependencies {

api(Androidx.Compose.uiToolingPreview)
api(Androidx.Compose.activity)
api(Androidx.Compose.ui)
api(Androidx.Compose.material("1.3.1"))
api(Google.material)

debugImplementation(Androidx.Compose.uiTooling)
debugImplementation(Androidx.Compose.uiTestManifest)

}

afterEvaluate {
Expand Down

This file was deleted.

Loading

0 comments on commit 409ea4c

Please sign in to comment.