Skip to content

Commit

Permalink
Add implementation of ProviderInstallerImpl
Browse files Browse the repository at this point in the history
  • Loading branch information
voidstarstar authored and mar-v-in committed Mar 12, 2019
1 parent a787b52 commit 7259265
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions play-services-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ dependencies {
implementation project(':vtm-extras')
implementation project(':vtm-jts')
implementation project(':vtm-microg-theme')

compile 'org.conscrypt:conscrypt-android:2.0.0'
}

def execResult(...args) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,11 @@

import android.content.Context;
import android.util.Log;
import org.conscrypt.OpenSSLProvider;
import java.security.Security;

public class ProviderInstallerImpl {
public static void insertProvider(Context context) {
Log.d("ProviderInstallerImpl", "yep, i should do something with Security here...");
Security.insertProviderAt(new OpenSSLProvider(), 1);
}
}

0 comments on commit 7259265

Please sign in to comment.