πŸ€–Android

Add in your settings.gradle mavenCetral

dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        //Stuff
        mavenCentral()
    }

}

There are three versions for Android:

  • Compose

implementation("io.github.codandotv:craftd-compose:${last_version}")
circle-info

Check out the latest version of the Compose library on Maven Central Repositoryarrow-up-right

  • XML View System

implementation("io.github.codandotv:craftd-xml:${last_version}")
circle-info

Check out the latest version of the XML library on Maven Central Repositoryarrow-up-right

  • Core - Is meant to be used for you to customize even the craftD mechanism

implementation("io.github.codandotv:craftd-core:${last_version}")
circle-info

Check out the latest version of the Core library on Maven Central Repositoryarrow-up-right

Last updated