File tree 1 file changed +8
-6
lines changed
1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change 1
- import Dependencies.Plugin.ksp
2
1
import com.android.build.gradle.internal.cxx.configure.gradleLocalProperties
2
+ import com.android.build.gradle.internal.lint.LintModelWriterTask
3
3
import com.android.build.gradle.internal.tasks.factory.dependsOn
4
+ import com.android.build.gradle.tasks.MergeSourceSetFolders
4
5
import java.io.FileInputStream
5
- import java.util.*
6
+ import java.util.Properties
6
7
import org.gradle.configurationcache.extensions.capitalized
7
8
8
9
plugins {
@@ -142,9 +143,9 @@ android {
142
143
)
143
144
}
144
145
145
- tasks.withType< com.android.build.gradle.tasks. MergeSourceSetFolders > {
146
- dependsOn(getTasksByName( " copyExtraAssets " , true ))
147
- }
146
+ tasks.withType<MergeSourceSetFolders > { dependsOn(getTasksByName( " copyExtraAssets " , true )) }
147
+
148
+ tasks.withType< LintModelWriterTask > { dependsOn(getTasksByName( " copyExtraAssets " , true )) }
148
149
149
150
// Suppressing since we don't seem have much of an option than using this api. The impact should
150
151
// also be limited to tests.
@@ -184,7 +185,8 @@ android {
184
185
185
186
val enableInAppVersionNotifications =
186
187
gradleLocalProperties(rootProject.projectDir)
187
- .getProperty(" ENABLE_IN_APP_VERSION_NOTIFICATIONS" ) ? : " true"
188
+ .getProperty(" ENABLE_IN_APP_VERSION_NOTIFICATIONS" )
189
+ ? : " true"
188
190
189
191
buildConfigField(
190
192
" boolean" ,
You can’t perform that action at this time.
0 commit comments