Application Base for MVVM
This library are used in MVVM coding structure for application base module.
To get a Git project into your build:
Step 1.1 Add the JitPack repository to your build file Add it in your root build.gradle at the end of repositories:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}Step 1.2 Add the JitPack repository to your build file Add it in your settings.gradle.kts at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
...
maven { url = uri("https://jitpack.io") }
}
}Step 2.1 Add the dependency for JAVA.
dependencies {
implementation 'com.github.ashish99799:app_base_mvvm:1.0.2'
}Step 2.2 Add the dependency for KOTLIN.
dependencies {
implementation("com.github.ashish99799:app_base_mvvm:1.0.2")
}