Gradle Setup

It is recommended to place the “liblite-release.aar” file in a folder called “libs” in your project root.
You can then define a custom repository in your gradle build file pointing to this directory as follows:

Repositories { flatDir {
dirs 'libs'
}
}

Once the custom repository is defined, you can then specify the dependencies for your project as follows:

compile(name: 'liblite-release', ext: 'aar')

implementation 'com.googlecode.libphonenumber:libphonenumber:8.10.2'
implementation 'com.google.android.gms:play-services-auth:16.0.1' 
implementation 'com.google.android.gms:play-services-auth-api-phone:16.0.0'