Skip to content

Commit 5d95a40

Browse files
author
Lucem-Anb
committed
jitpack reliability update
1 parent 7122aeb commit 5d95a40

33 files changed

+19
-483
lines changed

.idea/caches/build_file_checksums.ser

-588 Bytes
Binary file not shown.

.idea/codeStyles/Project.xml

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

.idea/gradle.xml

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

.idea/misc.xml

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

.idea/runConfigurations.xml

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

.idea/vcs.xml

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

README.md

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,29 @@ This library extends `View` and adopts all methods used by the `FrameLayout`
66
![Card Slide Preview](https://anbinsane.files.wordpress.com/2018/07/gif-first.gif)
77

88
### Implementation
9-
add this dependancy line in your build.gradle **app level**
9+
Add jitpack to repositories in the root build.gradle file
10+
```
11+
allprojects {
12+
repositories {
13+
...
14+
maven { url 'https://jitpack.io' }
15+
}
16+
}
17+
```
18+
19+
Add this dependency line in your build.gradle **app level**
1020

11-
` //to add//`
21+
```
22+
dependencies {
23+
implementation 'com.github.Lucem-Anb:CardSlide:1.0.1'
24+
}
25+
```
1226

1327
### Usage
1428
Wrap your view with the class `SliderAnimate`
1529

1630
```
17-
<com.lucem.anb.cardslide.SliderAnimate
31+
<com.lucem.anb.cardslide.SliderAnimate
1832
android:layout_width="wrap_content"
1933
android:layout_gravity="center"
2034
app:start="top_left"
@@ -28,7 +42,7 @@ Wrap your view with the class `SliderAnimate`
2842
android:src="@drawable/ic_launcher"
2943
android:layout_height="160dp" />
3044
31-
</com.lucem.anb.cardslide.SliderAnimate>
45+
</com.lucem.anb.cardslide.SliderAnimate>
3246
```
3347

3448
Initialize the animation in your java class

app/.gitignore

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

app/build.gradle

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

app/proguard-rules.pro

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

0 commit comments

Comments
 (0)