aar android apache api application arm assets build build-system bundle client clojure cloud config cran data database eclipse example extension framework github gradle groovy ios javascript kotlin library logg
pluginManagement { repositories { google() gradlePluginPortal() mavenCentral() maven("https://maven.pkg.jetbrains.space/public/p/compose/dev") maven("https://repo.repsy.io/mvn/mallumo/public") } plugins { kotlin("multiplatform") version extra["version.kotlin"]asStringkotlin("jvm") version ...
allprojects { repositories { maven { url'https://jitpack.io'} } } Add dependency in your appbuild.gradle: implementation'com.github.mvarnagiris.compose-navigation:navigation:{latest_version}' How to use Define your navigation routes. Best way to do that is to use asealed class. Each route...
Compose 中的导航仍处于早期阶段,随着官方的改进,也许我们会不需要封装,但是目前来说我对自己实现的这种方法很满意。 我已经把这个仓库发布到Maven Central了,大家可以直接依赖使用: implementation 'io.github.yuexunshi:Nav:1.0.1' 附上源码
aar android apache api application arm assets build build-system bundle client clojure cloud config cran data database eclipse example extension framework github gradle groovy ios javascript kotlin library logging maven mobile module npm osgi persistence plugin resources rlang sdk server service spring sql...
Maven Gradle Gradle (Short) Gradle (Kotlin) SBT Ivy Grape Leiningen Buildr <!-- https://mvnrepository.com/artifact/androidx.navigation/navigation-compose --> <dependency> <groupId>androidx.navigation</groupId> <artifactId>navigation-compose</artifactId> <version>2.6.0</version> <scope>runtime...
//In module's build.gradle.ktsdependencies {//The latest version of the lib is available in the badget at the top from Maven Central, replace X.X.X with that versionimplementation("io.github.sebaslogen:resaca:X.X.X") } Groovy
allprojects { repositories { [...] mavenCentral() } } implementation("io.github.hoc081098:solivagant-navigation:0.5.0") Snapshot Snapshots of the development version are available in Sonatype's snapshots repository. allprojects { repositories {... maven(url="https://s01.oss.sonatype.org/content...
Maven Gradle Gradle (Short) Gradle (Kotlin) SBT Ivy Grape Leiningen Buildr <!-- https://mvnrepository.com/artifact/androidx.navigation/navigation-compose --> <dependency> <groupId>androidx.navigation</groupId> <artifactId>navigation-compose</artifactId> <version>2.8.0-beta04</version> <scope...
//使用 plugins DSL:plugins { id"io.github.ssseasonnn.butterfly"version"1.0.1"}//Or use the legacy plugin application:buildscript { repositories { maven { url"https://plugins.gradle.org/m2/"} } dependencies { classpath"io.github.ssseasonnn:plugin:1.0.1"} }//Add pluginapplyplugin:"io....