Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 991 Bytes

getting-started.md

File metadata and controls

42 lines (33 loc) · 991 Bytes

1. Depend on our library

View Binding for Android is available through Google's Maven Repository. To use it:

  1. Open the build.gradle file for your application.

  2. Make sure that the repositories section includes Google's Maven Repository google(). For example:

      allprojects {
        repositories {
          google()
          jcenter()
        }
      }
  3. Add the library to the dependencies section:

      dependencies {
        // ...
        implementation 'com.zeoflow:view-binding:<version>'
        // ...
      }

Visit MVN Repository to find the latest version of the library.

Contributors

View Binding for Android welcomes contributions from the community. Check out our contributing guidelines before getting started.