Skip to content

Latest commit

 

History

History
62 lines (50 loc) · 1.7 KB

README.md

File metadata and controls

62 lines (50 loc) · 1.7 KB

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