The planet textures being replaced are the high-altitude textures, which are also used in the map mode and in the tracking station. When getting closer to the surface those textures are slowly interpolated into the high-resolution ones that cannot be replaced by this plugin.Known...
HTTP client generator / KSP plugin for Kotlin Multiplatform (Android, iOS, Js, Jvm, Native, WasmJs)) using KSP and Ktor clients inspired by Retrofit https://foso.github.io/Ktorfit - Foso/Ktorfit
注册Processor 实现了process后还需要把process注册一下,否则ksp plugin无法找到这个processor。在processor module与代码同级文件夹下新建文件『resources/META-INF/services/com.google.devtools.ksp.processing.SymbolProcessorProvider』,然后把刚才实现的provider的完整类名,写在文件里,如果是使用IDE一般都会有提示的。 //...
5.Kobweb Core Plugin4usages com.varabyte.kobweb.gradle»coreApache Provides common support for Kobweb library and application plugins. Last Release on Mar 6, 2025 6.Google DevTools KSP Gradle Plugin4usages com.google.devtools.ksp»com.google.devtools.ksp.gradle.pluginApache ...
import org.jetbrains.kotlin.gradle.plugin.getKotlinPluginVersion plugins { // 这其实就是个java 的plugin kotlin("jvm") // 因为我们要用ksp生成一个META-INF 所以也需要ksp插件 id("com.google.devtools.ksp") version "1.4.30-1.0.0-alpha04" ...
这个会帮助我们去获取ksp plugin的依赖。同时由于ksp的依赖于kotlin plugin 1.4.30版本,所以我们要对kt插件版本也进行一次升级。 build.gradle.kts下添加如下代码即可。 代码语言:javascript 代码运行次数:0 运行 AI代码解释 buildscript{repositories{jcenter()google()}dependencies{classpath(kotlin("gradle-plugin",vers...
KSP是由谷歌开发的一套工具,包括两部分一个是Kotlin plugin,另一个是依赖库。所以需要在项目的根build.gradle里面,先把plugin添加到项目里: // The root build.gradle of your project plugins { id 'org.jetbrains.kotlin.jvm' version '1.9.23' apply false ...
KSP是由谷歌开发的一套工具,包括两部分一个是Kotlin plugin,另一个是依赖库。所以需要在项目的根build.gradle里面,先把plugin添加到项目里: AI检测代码解析 // The root build.gradle of your project plugins { id 'org.jetbrains.kotlin.jvm' version '1.9.23' apply false ...
KSP-AVC Plugin - 1.4.1.9 KSPCommunityFixes - 1.36.1 Luna Multiplayer - 0.29 MarkIVSystem - 3.2.1 MechJebForAll - 1.3.0.7 ModularFlightIntegrator - 1.2.10 Docking Port Alignment Indicator - 6.10 NearFutureAeronautics - 2.1.2 NearFutureConstruction - 1.3.3 ...
KSP 正是在这个背景下诞生的,它基于Kotlin Compiler Plugin(简称KCP) 实现,不需要生成额外的 stub,编译速度是 KAPT 的 2 倍以上 KSP 与 KCP Kotlin Compiler Plugin在 kotlinc 过程中提供 hook 时机,可以再次期间解析 AST、修改字节码产物等,Kotlin 的不少语法糖都是 KCP 实现的,例如data class、@Parcelize、ko...