TP-00000 | Master → Development (Release 4.0.7) (#7801)

This commit is contained in:
Shivam Goyal
2023-09-07 16:13:10 +05:30
committed by GitHub
parent 312e6502fb
commit 636330546a
2 changed files with 5 additions and 4 deletions

View File

@@ -13,8 +13,8 @@ kapt {
correctErrorTypes true
}
def VERSION_CODE = 343
def VERSION_NAME = "4.0.6"
def VERSION_CODE = 344
def VERSION_NAME = "4.0.7"
android {
namespace 'com.naviapp'

View File

@@ -21,6 +21,7 @@ import okhttp3.Protocol
import okhttp3.Response
import okhttp3.ResponseBody
import okio.Buffer
import java.lang.Error
/**
* Interceptor to add encryption hash to the request.
@@ -34,10 +35,10 @@ class EncryptionHashInterceptor(private val context: Context) : Interceptor {
try {
System.loadLibrary(naviNativeLibraryName)
} catch (_: Exception) {
} catch (_: Error) {
try {
SplitInstallHelper.loadLibrary(context, naviNativeLibraryName)
} catch (_: Exception) {
} catch (_: Error) {
// Ignore
}
}