diff options
| author | Albin <albin@mullvad.net> | 2021-09-16 16:00:35 +0200 |
|---|---|---|
| committer | Albin <albin@mullvad.net> | 2021-10-04 13:21:22 +0200 |
| commit | d735b36a819cde2f7e3dd8b60281b641bbf531dc (patch) | |
| tree | c50da0e32b0c2cd374a6a30bc87d964f32b6df9e /android/src | |
| parent | 8ff5fb4524cb436253f83c7b14ff61cbc2c0a946 (diff) | |
| download | mullvadvpn-d735b36a819cde2f7e3dd8b60281b641bbf531dc.tar.xz mullvadvpn-d735b36a819cde2f7e3dd8b60281b641bbf531dc.zip | |
Migrate from JCenter to mavenCentral
JCenter has been sunset and should no longer be relied on as per:
https://jfrog.com/blog/into-the-sunset-bintray-jcenter-gocenter-and-chartcenter/
The migration also required the following changes:
* Updated Koin maven group id as per the official documentation at:
https://insert-koin.io/docs/setup/v2/
* Bump MockK version due to old versions of one of its dependencies'
(dexmaker) not being available at mavenCentral.
* Fix mockK instrumentation lib issue.
Diffstat (limited to 'android/src')
| -rw-r--r-- | android/src/androidTest/AndroidManifest.xml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/android/src/androidTest/AndroidManifest.xml b/android/src/androidTest/AndroidManifest.xml new file mode 100644 index 0000000000..41b8daf8c8 --- /dev/null +++ b/android/src/androidTest/AndroidManifest.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="utf-8"?> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="net.mullvad.mullvadvpn.test"> + + <!-- Required on certain Android versions and/or ABIs + https://github.com/mockk/mockk/issues/297#issuecomment-641361770 --> + <application android:extractNativeLibs="true" /> +</manifest> |
