Skip to content

farsroidx utilities and functions for android apps [app-module]

License

Notifications You must be signed in to change notification settings

riazati75/android-core

Repository files navigation

Android Core

farsroidx utilities and functions for android apps

Gradle

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") <--------
    }
}

Step 2: Add the dependency:

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! 😉