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

Check out the latest version of the Compose library on Maven Central Repository

  • XML View System

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

Check out the latest version of the XML library on Maven Central Repository

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

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

Check out the latest version of the Core library on Maven Central Repository

Last updated