Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 78ac0a29 authored by Robert Wiebe's avatar Robert Wiebe
Browse files

Use api for GSON instead of implementation

parent 44fd097a
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -129,13 +129,13 @@ detekt {
}
}


dependencies {
dependencies {
    implementation 'com.google.code.gson:gson:2.8.5'

    implementation "androidx.appcompat:appcompat:1.0.2"
    implementation "androidx.appcompat:appcompat:1.0.2"
    implementation 'androidx.annotation:annotation:1.1.0'
    implementation 'androidx.annotation:annotation:1.1.0'
    implementation 'androidx.core:core:1.0.2'
    implementation 'androidx.core:core:1.0.2'
    implementation 'androidx.fragment:fragment:1.0.0'
    implementation 'androidx.fragment:fragment:1.0.0'


    implementation 'com.google.code.gson:gson:2.8.5'
    api 'com.google.code.gson:gson:2.8.5'


    implementation 'io.reactivex.rxjava2:rxjava:2.2.10'
    implementation 'io.reactivex.rxjava2:rxjava:2.2.10'


+1 −2
Original line number Original line Diff line number Diff line
package com.nextcloud.android.sso.helper;
package com.nextcloud.android.sso.helper;


import androidx.annotation.Nullable;

import java.io.IOException;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStream;
import java.nio.ByteBuffer;
import java.nio.ByteBuffer;
import java.nio.charset.Charset;
import java.nio.charset.Charset;


import androidx.annotation.Nullable;
import okio.Buffer;
import okio.Buffer;
import okio.BufferedSource;
import okio.BufferedSource;
import okio.ByteString;
import okio.ByteString;