Zum Inhalt

Getting Started

To use the intent builders the library aar must be added to your project. This can be achieved with Android Studio or Gradle.

Android Studio

  • Click -> File
  • Click -> New
  • Click -> New Module
  • Click -> Import .jar/.aar
  • Choose the lnintents.aar

Gradle method 1

  • Create a folder named libs in src/main/ of your Android project
  • Insert the lnintents.aar
  • Add implementation(name:’lnintents’, ext:’aar’) to the Gradle's dependency block of your app

Gradle method 2

  • Create a folder namen "lnintents" in your Android project
  • Insert the lnintents.aar in the new folder
  • Create a build.gradle in the folder
  • Type following two lines in the new Gradle: configurations.maybeCreate("default") artifacts.add("default", file('lnintents.aar'))
  • Add implementation project(':lnintents') to the Gradle's dependency block of your app