1plugins { 2 id 'kotlin' 3 id 'com.google.devtools.ksp' 4} 5 6kotlin { 7 jvmToolchain(11) 8} 9 10dependencies { 11 implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" 12 implementation "com.google.dagger:hilt-core:LOCAL-SNAPSHOT" 13 ksp "com.google.dagger:hilt-compiler:LOCAL-SNAPSHOT" 14}