Skip to content

Commit abb6df6

Browse files
authored
Merge pull request #41 from SimformSolutionsPvtLtd/develop
Develop to Main
2 parents 812fa2b + a956522 commit abb6df6

File tree

79 files changed

+562
-469
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+562
-469
lines changed

.gitignore

Lines changed: 198 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Created by https://www.toptal.com/developers/gitignore/api/android,androidstudio,kotlin,java,gradle,git
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=android,androidstudio,kotlin,java,gradle,git
3+
4+
### Android ###
15
# Built application files
26
*.apk
37
*.aar
@@ -37,8 +41,19 @@ proguard/
3741
captures/
3842

3943
# IntelliJ
44+
.idea
4045
*.iml
41-
.idea/
46+
.idea/workspace.xml
47+
.idea/tasks.xml
48+
.idea/gradle.xml
49+
.idea/assetWizardSettings.xml
50+
.idea/dictionaries
51+
.idea/libraries
52+
# Android Studio 3 in .gitignore file.
53+
.idea/caches
54+
.idea/modules.xml
55+
# Comment next line if keeping position of elements in Navigation Editor is relevant for you
56+
.idea/navEditor.xml
4257

4358
# Keystore files
4459
# Uncomment the following lines if you do not want to check your keystore files in.
@@ -74,5 +89,185 @@ lint/outputs/
7489
lint/tmp/
7590
# lint/reports/
7691

77-
# Android Profiling
78-
*.hprof
92+
### Android Patch ###
93+
gen-external-apklibs
94+
output.json
95+
96+
# Replacement of .externalNativeBuild directories introduced
97+
# with Android Studio 3.5.
98+
99+
### Git ###
100+
# Created by git for backups. To disable backups in Git:
101+
# $ git config --global mergetool.keepBackup false
102+
*.orig
103+
104+
# Created by git when using merge tools for conflicts
105+
*.BACKUP.*
106+
*.BASE.*
107+
*.LOCAL.*
108+
*.REMOTE.*
109+
*_BACKUP_*.txt
110+
*_BASE_*.txt
111+
*_LOCAL_*.txt
112+
*_REMOTE_*.txt
113+
114+
### Java ###
115+
# Compiled class file
116+
117+
# Log file
118+
119+
# BlueJ files
120+
*.ctxt
121+
122+
# Mobile Tools for Java (J2ME)
123+
.mtj.tmp/
124+
125+
# Package Files #
126+
*.jar
127+
*.war
128+
*.nar
129+
*.ear
130+
*.zip
131+
*.tar.gz
132+
*.rar
133+
134+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
135+
hs_err_pid*
136+
137+
### Kotlin ###
138+
# Compiled class file
139+
140+
# Log file
141+
142+
# BlueJ files
143+
144+
# Mobile Tools for Java (J2ME)
145+
146+
# Package Files #
147+
148+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
149+
150+
### Gradle ###
151+
.gradle
152+
153+
# Ignore Gradle GUI config
154+
gradle-app.setting
155+
156+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
157+
!gradle-wrapper.jar
158+
159+
# Cache of project
160+
.gradletasknamecache
161+
162+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
163+
# gradle/wrapper/gradle-wrapper.properties
164+
165+
### Gradle Patch ###
166+
**/build/
167+
168+
### AndroidStudio ###
169+
# Covers files to be ignored for android development using Android Studio.
170+
171+
# Built application files
172+
173+
# Files for the ART/Dalvik VM
174+
175+
# Java class files
176+
177+
# Generated files
178+
179+
# Gradle files
180+
181+
# Signing files
182+
.signing/
183+
184+
# Local configuration file (sdk path, etc)
185+
186+
# Proguard folder generated by Eclipse
187+
188+
# Log Files
189+
190+
# Android Studio
191+
/*/build/
192+
/*/local.properties
193+
/*/out
194+
/*/*/build
195+
/*/*/production
196+
*.ipr
197+
*~
198+
*.swp
199+
200+
# Android Patch
201+
202+
# External native build folder generated in Android Studio 2.2 and later
203+
204+
# NDK
205+
obj/
206+
207+
# IntelliJ IDEA
208+
*.iws
209+
/out/
210+
211+
# User-specific configurations
212+
.idea/caches/
213+
.idea/libraries/
214+
.idea/shelf/
215+
.idea/.name
216+
.idea/compiler.xml
217+
.idea/copyright/profiles_settings.xml
218+
.idea/encodings.xml
219+
.idea/misc.xml
220+
.idea/scopes/scope_settings.xml
221+
.idea/vcs.xml
222+
.idea/jsLibraryMappings.xml
223+
.idea/datasources.xml
224+
.idea/dataSources.ids
225+
.idea/sqlDataSources.xml
226+
.idea/dynamic.xml
227+
.idea/uiDesigner.xml
228+
229+
# OS-specific files
230+
.DS_Store
231+
.DS_Store?
232+
._*
233+
.Spotlight-V100
234+
.Trashes
235+
ehthumbs.db
236+
Thumbs.db
237+
238+
# Legacy Eclipse project files
239+
.classpath
240+
.project
241+
.cproject
242+
.settings/
243+
244+
# Mobile Tools for Java (J2ME)
245+
246+
# Package Files #
247+
248+
# virtual machine crash logs (Reference: http://www.java.com/en/download/help/error_hotspot.xml)
249+
250+
## Plugin-specific files:
251+
252+
# mpeltonen/sbt-idea plugin
253+
.idea_modules/
254+
255+
# JIRA plugin
256+
atlassian-ide-plugin.xml
257+
258+
# Mongo Explorer plugin
259+
.idea/mongoSettings.xml
260+
261+
# Crashlytics plugin (for Android Studio and IntelliJ)
262+
com_crashlytics_export_strings.xml
263+
crashlytics.properties
264+
crashlytics-build.properties
265+
fabric.properties
266+
267+
### AndroidStudio Patch ###
268+
269+
!/gradle/wrapper/gradle-wrapper.jar
270+
271+
!/app/src/production
272+
273+
# End of https://www.toptal.com/developers/gitignore/api/android,androidstudio,kotlin,java,gradle,git

.idea/.gitignore

Lines changed: 0 additions & 3 deletions
This file was deleted.

.idea/.name

Lines changed: 0 additions & 1 deletion
This file was deleted.

.idea/compiler.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.idea/misc.xml

Lines changed: 0 additions & 9 deletions
This file was deleted.

.idea/runConfigurations.xml

Lines changed: 0 additions & 10 deletions
This file was deleted.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ dependencyResolutionManagement {
5555

5656
```groovy
5757
dependencies {
58-
implementation 'com.github.SimformSolutionsPvtLtd:SSPullToRefresh:1.5.1'
58+
implementation 'com.github.SimformSolutionsPvtLtd:SSPullToRefresh:1.5.2'
5959
}
6060
```
6161
2. Wrap your refreshing view (RecyclerView, listView etc..) with SSPullToRefreshLayout
@@ -199,5 +199,5 @@ SOFTWARE.
199199
[RecyclerRefreshLayout]: <https://github.com/dinuscxj/RecyclerRefreshLayout?utm_source=android-arsenal.com&utm_medium=referral&utm_campaign=3383>
200200
[gif-lib-repo]: <https://github.com/koral--/android-gif-drawable.git>
201201
[SSCustomPullToRefresh]: <https://github.com/SimformSolutionsPvtLtd/SSCustomPullToRefresh.git>
202-
[WaveAnimationFile]: app/src/main/java/com/simform/demo/WaveAnimation.kt
202+
[WaveAnimationFile]: app/src/main/java/com/simform/pulltorefresh/WaveAnimation.kt
203203
[RefreshCallbacksFile]: sspulltorefresh/src/main/java/com/simform/refresh/RefreshCallbacks.kt

app/.gitignore

Lines changed: 1 addition & 89 deletions
Original file line numberDiff line numberDiff line change
@@ -1,89 +1 @@
1-
# Built application files
2-
*.apk
3-
*.aar
4-
*.ap_
5-
*.aab
6-
7-
# Files for the ART/Dalvik VM
8-
*.dex
9-
10-
# Java class files
11-
*.class
12-
13-
# Generated files
14-
bin/
15-
gen/
16-
out/
17-
# Uncomment the following line in case you need and you don't have the release build type files in your app
18-
# release/
19-
20-
# Gradle files
21-
.gradle/
22-
build/
23-
24-
# Local configuration file (sdk path, etc)
25-
local.properties
26-
27-
# Proguard folder generated by Eclipse
28-
proguard/
29-
30-
# Log Files
31-
*.log
32-
33-
# Android Studio Navigation editor temp files
34-
.navigation/
35-
36-
# Android Studio captures folder
37-
captures/
38-
39-
# IntelliJ
40-
*.iml
41-
.idea/workspace.xml
42-
.idea/tasks.xml
43-
.idea/gradle.xml
44-
.idea/assetWizardSettings.xml
45-
.idea/dictionaries
46-
.idea/libraries
47-
.idea/jarRepositories.xml
48-
# Android Studio 3 in .gitignore file.
49-
.idea/caches
50-
.idea/modules.xml
51-
# Comment next line if keeping position of elements in Navigation Editor is relevant for you
52-
.idea/navEditor.xml
53-
54-
# Keystore files
55-
# Uncomment the following lines if you do not want to check your keystore files in.
56-
#*.jks
57-
#*.keystore
58-
59-
# External native build folder generated in Android Studio 2.2 and later
60-
.externalNativeBuild
61-
.cxx/
62-
63-
# Google Services (e.g. APIs or Firebase)
64-
# google-services.json
65-
66-
# Freeline
67-
freeline.py
68-
freeline/
69-
freeline_project_description.json
70-
71-
# fastlane
72-
fastlane/report.xml
73-
fastlane/Preview.html
74-
fastlane/screenshots
75-
fastlane/test_output
76-
fastlane/readme.md
77-
78-
# Version control
79-
vcs.xml
80-
81-
# lint
82-
lint/intermediates/
83-
lint/generated/
84-
lint/outputs/
85-
lint/tmp/
86-
# lint/reports/
87-
88-
# Android Profiling
89-
*.hprof
1+
/build

0 commit comments

Comments
 (0)