farsroidx utilities and functions for android apps
Step 1: Add jitpack maven in your root build.gradle
or settings.gradle.kts
:
in build.gradle
:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' } <--------
}
}
OR settings.gradle.kts
:
pluginManagement {
repositories {
...
}
}
@Suppress("UnstableApiUsage")
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
...
maven(url = "https://jitpack.io") <--------
}
}
in build.gradle
:
dependencies {
implementation 'com.github.riazati75:android-core:🔝<LAST_RELEASE_VERSION>🔝'
}
OR build.gradle.kts
:
dependencies {
implementation("com.github.riazati75:android-core:🔝<LAST_RELEASE_VERSION>🔝")
}
Good Luck and Enjoy! 😉