diff options
| author | Albin <albin@mullvad.net> | 2023-08-04 15:19:40 +0200 |
|---|---|---|
| committer | Albin <albin@mullvad.net> | 2023-08-04 15:24:57 +0200 |
| commit | e809c20c9e203e32c22e28bd79f338bd6ec61897 (patch) | |
| tree | d1df98bf1576b93c9481cafa4975d23cfb8aa046 /android | |
| parent | 08a391351494f07950aedd4f427f49a8f39b1acf (diff) | |
| download | mullvadvpn-e809c20c9e203e32c22e28bd79f338bd6ec61897.tar.xz mullvadvpn-e809c20c9e203e32c22e28bd79f338bd6ec61897.zip | |
Force emoji2 dependency version
Hold back emoji2 since newer versions require api level 34 which
is not yet stable.
Diffstat (limited to 'android')
| -rw-r--r-- | android/app/build.gradle.kts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts index f257d862d7..d67a07a191 100644 --- a/android/app/build.gradle.kts +++ b/android/app/build.gradle.kts @@ -213,6 +213,13 @@ play { serviceAccountCredentials.set(file("play-api-key.json")) } +configurations.all { + resolutionStrategy { + // Hold back emoji2 since newer versions require api level 34 which is not yet stable. + force("androidx.emoji2:emoji2:1.3.0") + } +} + dependencies { implementation(project(Dependencies.Mullvad.vpnService)) implementation(project(Dependencies.Mullvad.tileService)) |
