Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 11 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ In your project level build.gradle
In your app level build.gradle

```groovy
compile 'com.github.Yalantis:pull-to-make-soup:1.0.2'
implementation 'com.github.Yalantis:pull-to-make-soup:1.0.3'
```

## Usage
Expand All @@ -50,7 +50,7 @@ Second include PullToRefreshView to your layout, with the app:type="soup"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.v7.widget.RecyclerView
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
Expand Down Expand Up @@ -86,14 +86,20 @@ If you need to change progress state:

* Android JELLY BEAN 4.1+

### Version: 1.0

* Initial Build

### Version: 1.0.3

* Updated dependencies
* Migrated to AndroidX

### Version: 1.0.1

* Fixed disapearing animation (Flames,cover and water now disapearing properly).

### Version: 1.0

* Initial Build

#### Let us know!

We’d be really happy if you sent us links to your projects where you use our component. Just send an email to github@yalantis.com And do let us know if you have any questions or suggestion regarding the animation.
Expand Down
4 changes: 3 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@

buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.0'
classpath 'com.android.tools.build:gradle:7.3.0'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand All @@ -16,6 +17,7 @@ allprojects {
version = VERSION_NAME
group = GROUP
repositories {
google()
mavenCentral()
}
}
Expand Down
8 changes: 6 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
VERSION_NAME=1.0
VERSION_CODE=1
android.useAndroidX=true
# Kotlin code style for this project: "official" or "obsolete":
kotlin.code.style=official

VERSION_NAME=1.0.3
VERSION_CODE=2
GROUP=com.yalantis

POM_DESCRIPTION=Pull to refresh library,that implements soup making animation.
Expand Down
Binary file added gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
5 changes: 5 additions & 0 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
234 changes: 234 additions & 0 deletions gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading