DaumMapEngineAPI.so 파일을 읽을 수 없다고 나옵니다

안녕하세요.

전에 만들었던 App 을 실행을 하려고하는데

E/net.daum.mf.map.n.api.NativeMapLibraryLoader: Can`t load DaumMapEngineApi.so file

이러한 오류가 발생하여 실행이 되지 않네요.

개발 오류 확인 부탁드립니다.

.java

private void setMapView(View view) {
mapView = new MapView(getContext());
zoomLevel = 4;
ViewGroup mapViewContainer = view.findViewById(R.id.address_list_map_view);
mapViewContainer.addView(mapView);
mapView.setMapCenterPoint(MapPoint.mapPointWithGeoCoord(Double.valueOf(mAddressInfoList.get(0).getCoordinate_Y()), Double.valueOf(mAddressInfoList.get(0).getCoordinate_X())), true);
mapView.setZoomLevel(zoomLevel, true);

.gradle

apply plugin: 'com.android.application’
apply plugin: ‘realm-android’

android {
compileSdkVersion 28
buildToolsVersion '28.0.2’
defaultConfig {

    minSdkVersion 19
    targetSdkVersion 28
    versionCode 5
    versionName "1.0"
}

buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
realm {
    syncEnabled = true
}
compileOptions {
    sourceCompatibility JavaVersion.VERSION_1_8
    targetCompatibility JavaVersion.VERSION_1_8
}

}

dependencies {
implementation fileTree(include: [’*.jar’], dir: ‘libs’)
testImplementation 'junit:junit:4.12’
implementation 'com.android.support.constraint:constraint-layout:1.1.3’
implementation 'com.android.support:appcompat-v7:28.0.0-rc02’
implementation 'com.android.support:design:28.0.0-rc02’
implementation ‘com.android.support:support-v4:28.0.0-rc02’
// implementation group: ‘com.android.support’, name: ‘appcompat-v7’, version: ‘28.0.0-rc2’
// implementation group: ‘com.android.support’, name: ‘design’, version: ‘28.0.0-rc2’
// implementation group: ‘com.android.support’, name: ‘support-v4’, version: ‘28.0.0-rc2’
/butter knife/
implementation 'com.jakewharton:butterknife:8.8.1’
annotationProcessor ‘com.jakewharton:butterknife-compiler:8.8.1’
/retrofit/
implementation 'com.squareup.retrofit2:retrofit:2.3.0’
implementation ‘com.squareup.retrofit2:converter-gson:2.3.0’
/okhttp/
implementation ‘com.squareup.okhttp3:okhttp:3.9.0’
implementation ‘com.squareup.okhttp3:logging-interceptor:3.8.0’
/google api/
implementation ‘com.google.android.gms:play-services-location:15.0.1’
implementation ‘com.google.android.gms:play-services-maps:15.0.1’
// implementation group: ‘com.google.android.gms’, name: ‘play-services-location’, version: ‘15.0.1’
// implementation group: ‘com.google.android.gms’, name: ‘play-services-maps’, version: ‘15.0.1’
/tedPermission/
implementation ‘gun0912.ted:tedpermission:2.2.0’
/date picker/
implementation ‘io.reactivex.rxjava2:rxjava:2.2.0’
implementation ‘joda-time:joda-time:2.9.9’
implementation project(’:fab’)
implementation project(’:calendar’)
implementation 'com.google.code.gson:gson:2.8.5’
implementation files(‘libs/libDaumMapAndroid.jar’)
}