mirror of
https://github.com/YTVanced/VancedMicroG
synced 2024-11-14 23:15:06 +00:00
26 lines
406 B
Groovy
26 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
|
||
|
}
|