Remove busted System.loadLibrary calls (#190)

Followup from #178
This commit is contained in:
Thom 2018-08-20 10:43:38 -07:00 коммит произвёл GitHub
Родитель ef47e0565c
Коммит cb256d7a9d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 0 добавлений и 3 удалений

Просмотреть файл

@ -20,9 +20,6 @@ internal interface PasswordSyncAdapter : Library {
internal var INSTANCE: PasswordSyncAdapter
init {
System.loadLibrary("crypto")
System.loadLibrary("ssl")
System.loadLibrary("sqlcipher")
INSTANCE = Native.loadLibrary(JNA_LIBRARY_NAME, PasswordSyncAdapter::class.java) as PasswordSyncAdapter
}
}