Skip to content

Views, Helpers, Functions, Utilities, Data Managements and etc... for Android Apps

License

Notifications You must be signed in to change notification settings

riazati75/andromeda

Repository files navigation

Andromeda Android Kotlin Upwork

A library for using pre-built codes

Library Size: ~500kb

Installation:

1. Add Jitpack Maven:

in settings.gradle:
dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
        repositories {
        google()
        mavenCentral()
------> maven { url 'https://jitpack.io' }
    }
}
in settings.gradle.kts:
@Suppress("UnstableApiUsage")
dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        mavenLocal()
        mavenCentral()
        google()
------> maven(url = "https://jitpack.io")
    }
}

2. Copy the following line in section dependencies in file build.gradle of module app and replace it with LATEST_VERSION according to the latest version in the repository:

in build.gradle:
dependencies {
    implementation 'com.github.riazati75:andromeda:LATEST_VERSION'
}
in build.gradle.kts:
dependencies {
    implementation("com.github.riazati75:andromeda:LATEST_VERSION")
}

Ask Me Anything !

Change List

v1.0.0 :

  • Added:
    • ExceptionUi
    • Dispatchers
    • Memory
    • Preference

About

Views, Helpers, Functions, Utilities, Data Managements and etc... for Android Apps

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages