mirror of
https://github.com/YTVanced/VancedMicroG
synced 2024-11-01 08:52:39 +00:00
25 lines
406 B
Groovy
25 lines
406 B
Groovy
/*
|
|
* SPDX-FileCopyrightText: 2020, microG Project Team
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
apply plugin: 'com.squareup.wire'
|
|
apply plugin: 'kotlin'
|
|
|
|
dependencies {
|
|
implementation "com.squareup.wire:wire-runtime:$wireVersion"
|
|
}
|
|
|
|
wire {
|
|
kotlin {
|
|
javaInterop = true
|
|
}
|
|
}
|
|
|
|
compileKotlin {
|
|
kotlinOptions.jvmTarget = 1.8
|
|
}
|
|
|
|
compileTestKotlin {
|
|
kotlinOptions.jvmTarget = 1.8
|
|
}
|