搜索Gradle插件

io.github.rf19l.ktxml

所有者: Ryan Foster

Gradle插件,可将Android XML资源转换为Kotlin对象,使用Jetpack Compose。处理尺寸、颜色和样式。

https://github.com/rf19l/ktxmlconverter

来源: https://github.com/rf19l/ktxmlconverter.git

版本 1.0.0 (最新)

1.0.0

创建于2023年7月25日。

Gradle插件,可将Android XML资源转换为Kotlin对象,使用Jetpack Compose。处理尺寸、颜色和样式。

使用插件DSL

plugins {
  id("io.github.rf19l.ktxml") version "1.0.0"
}

使用传统插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.rf19l.ktxml:KtXMLConverter:1.0.0")
  }
}

apply(plugin = "io.github.rf19l.ktxml")

使用插件DSL

plugins {
  id "io.github.rf19l.ktxml" version "1.0.0"
}

使用传统插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.rf19l.ktxml:KtXMLConverter:1.0.0"
  }
}

apply plugin: "io.github.rf19l.ktxml"

了解如何将插件应用于子项目