Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 076af79

Browse filesBrowse files
committed
Updated kotlin plugin to 1.3.30
1 parent 99b87b7 commit 076af79
Copy full SHA for 076af79

File tree

5 files changed

+11
-9
lines changed
Filter options

5 files changed

+11
-9
lines changed

‎app/build.gradle.kts

Copy file name to clipboardExpand all lines: app/build.gradle.kts
+6-6Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
*/
1616

1717
import com.nimroddayan.buildsrc.Libs
18-
import org.jetbrains.kotlin.gradle.internal.AndroidExtensionsExtension
1918

2019
plugins {
2120
id("com.android.application")
@@ -54,14 +53,15 @@ android {
5453

5554
kapt {
5655
useBuildCache = true
56+
arguments {
57+
arg("dagger.formatGeneratedSource", "disabled")
58+
arg("dagger.fastInit", "enabled")
59+
arg("dagger.gradle.incremental")
60+
}
5761
}
5862

5963
androidExtensions {
60-
// Workaround to get experimental features in Kotlin DSL
61-
// https://youtrack.jetbrains.com/issue/KT-22213
62-
configure(delegateClosureOf<AndroidExtensionsExtension> {
63-
isExperimental = true
64-
})
64+
isExperimental = true
6565
}
6666

6767
dependencies {

‎app/src/main/java/org/codepond/commitbrowser/di/ViewModelKey.kt

Copy file name to clipboardExpand all lines: app/src/main/java/org/codepond/commitbrowser/di/ViewModelKey.kt
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
```/*
1+
/*
22
* Copyright 2019 Nimrod Dayan nimroddayan.com
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");

‎build.gradle.kts

Copy file name to clipboardExpand all lines: build.gradle.kts
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ buildscript {
2121
}
2222
dependencies {
2323
classpath("com.android.tools.build:gradle:3.4.0-rc03")
24-
classpath(kotlin("gradle-plugin", version = "1.3.21"))
24+
classpath(kotlin("gradle-plugin", version = "1.3.30"))
2525
classpath("androidx.navigation:navigation-safe-args-gradle-plugin:2.0.0")
2626
}
2727
}

‎buildSrc/src/main/java/com/nimroddayan/buildsrc/dependencies.kt

Copy file name to clipboardExpand all lines: buildSrc/src/main/java/com/nimroddayan/buildsrc/dependencies.kt
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ package com.nimroddayan.buildsrc
1919
object Versions {
2020
val ktlint = "0.29.0"
2121
const val agp = "3.4.0-rc03"
22-
const val kotlin = "1.3.21"
22+
const val kotlin = "1.3.30"
2323
}
2424

2525
object Libs {

‎gradle.properties

Copy file name to clipboardExpand all lines: gradle.properties
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,5 @@ android.enableSeparateAnnotationProcessing=true
3030
android.enableSeparateRClassCompilation=true
3131
# TODO: R8 will be the default in AGP 3.4
3232
android.enableR8=true
33+
kapt.incremental.apt=true
34+
kapt.include.compile.classpath=false

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.