Skip to content

intellicar/lafm_android_sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Installation

- Step 1- Add jitpack in your project build.gradle

allprojects {
    repositories {
        ...
        maven { url "https://jitpack.io" }
    }
}

As of the 7.X.X gradle build tools - allprojects is deprecated In that case follow Step 3 ->

- Step 2- Add the dependency in your app build.gradle

dependencies {
    ...
    implementation 'com.github.intellicar:lafm_android_sdk:0.0.112'
}

Please replace x, y and z with the latest version numbers:

- Step 3- Optional

As of the 7.X.X gradle build tools Android projects will no longer generate with allprojects blocks in their project build.gradle files. It will instead generate a dependencyResolutionManagement block in settings.gradle.

dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        ...
        maven {
            url 'https://jitpack.io'
        }
    }
}

Documentation

Please visit Documentation

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •