You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 6, 2021. It is now read-only.

4
+
2
5
This library helps to reduce the boilerplate code in initializing activities and fragments using ViewBinding. With this library you can initialize fragments, activities with a single line of code and can use the reference anywhere in the file.
3
6
4
7
## Installation
5
8
6
9
- Add the Jitpack.io dependency in project level gradle file
7
10
8
11
```gradle
9
-
allprojects {
10
-
repositories {
11
-
...
12
-
maven { url 'https://jitpack.io' }
13
-
}
12
+
allprojects {
13
+
repositories {
14
+
...
15
+
maven { url 'https://jitpack.io' }
14
16
}
17
+
}
15
18
```
16
19
17
20
- Add `ViewBinding_Library` dependency in app level gradle file (Replace `Tag` with latest release)
0 commit comments