diff options
| author | Janito Vaqueiro Ferreira Filho <janito@mullvad.net> | 2020-11-20 20:35:10 +0000 |
|---|---|---|
| committer | Janito Vaqueiro Ferreira Filho <janito@mullvad.net> | 2020-11-23 12:28:45 +0000 |
| commit | 12427189c31cb4ae66f4cebf3e2b4f548c0c4530 (patch) | |
| tree | ac89f4d989c464138f75f8dee9365a025822947a /android | |
| parent | 6b95ceead2b6712d05a836e50395b754cc8605ad (diff) | |
| download | mullvadvpn-12427189c31cb4ae66f4cebf3e2b4f548c0c4530.tar.xz mullvadvpn-12427189c31cb4ae66f4cebf3e2b4f548c0c4530.zip | |
Ignore warnings related to channel coroutines API
Diffstat (limited to 'android')
| -rw-r--r-- | android/build.gradle | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/android/build.gradle b/android/build.gradle index 9bfb4d23c3..1838901ab4 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -70,6 +70,14 @@ android { } } +tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all { + kotlinOptions { + kotlinOptions.freeCompilerArgs += [ + "-Xuse-experimental=kotlinx.coroutines.ObsoleteCoroutinesApi", + ] + } +} + play { serviceAccountCredentials = file("play-api-key.json") } |
