mirror of
https://gitlab.com/ultrasonic/ultrasonic.git
synced 2025-04-14 00:17:15 +03:00
Apply suggested Kotlin Gradle updates
This commit is contained in:
parent
a7ee33c7c0
commit
ddd9c29d7a
@ -2,6 +2,7 @@ apply from: bootstrap.androidModule
|
|||||||
apply plugin: 'kotlin-kapt'
|
apply plugin: 'kotlin-kapt'
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
implementation libs.core
|
||||||
implementation libs.roomRuntime
|
implementation libs.roomRuntime
|
||||||
implementation libs.roomKtx
|
implementation libs.roomKtx
|
||||||
kapt libs.room
|
kapt libs.room
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
* This module provides a base for for submodules which depend on the Android runtime
|
* This module provides a base for for submodules which depend on the Android runtime
|
||||||
*/
|
*/
|
||||||
apply plugin: 'com.android.library'
|
apply plugin: 'com.android.library'
|
||||||
apply plugin: 'kotlin-android'
|
apply plugin: 'org.jetbrains.kotlin.android'
|
||||||
apply from: "${project.rootDir}/gradle_scripts/code_quality.gradle"
|
apply from: "${project.rootDir}/gradle_scripts/code_quality.gradle"
|
||||||
apply plugin: 'kotlin-kapt'
|
apply plugin: 'org.jetbrains.kotlin.kapt'
|
||||||
|
|
||||||
android {
|
android {
|
||||||
compileSdkVersion versions.compileSdk
|
compileSdkVersion versions.compileSdk
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* This module provides a base for for pure kotlin modules
|
* This module provides a base for for pure kotlin modules
|
||||||
*/
|
*/
|
||||||
apply plugin: 'kotlin'
|
apply plugin: 'kotlin'
|
||||||
apply plugin: 'kotlin-kapt'
|
apply plugin: 'org.jetbrains.kotlin.kapt'
|
||||||
apply from: "${project.rootDir}/gradle_scripts/code_quality.gradle"
|
apply from: "${project.rootDir}/gradle_scripts/code_quality.gradle"
|
||||||
|
|
||||||
sourceSets {
|
sourceSets {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
apply plugin: 'com.android.application'
|
apply plugin: 'com.android.application'
|
||||||
apply plugin: 'kotlin-android'
|
apply plugin: 'org.jetbrains.kotlin.android'
|
||||||
apply plugin: 'kotlin-kapt'
|
apply plugin: 'org.jetbrains.kotlin.kapt'
|
||||||
apply plugin: "androidx.navigation.safeargs.kotlin"
|
apply plugin: "androidx.navigation.safeargs.kotlin"
|
||||||
apply from: "../gradle_scripts/code_quality.gradle"
|
apply from: "../gradle_scripts/code_quality.gradle"
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user