카카오 맵과 카카오 음성 라이브러리 호환 문제

안녕하세요

카카오 맵을 구현한 상태에서 카카오 음성인식 뉴톤을 넣었더니 오류가 발생합니다 ㅠ

dependencies {
implementation fileTree(dir: ‘libs’, include: [’*.jar’])
implementation 'com.android.support:appcompat-v7:28.0.0’
implementation 'com.android.support.constraint:constraint-layout:1.1.3’
testImplementation 'junit:junit:4.12’
androidTestImplementation 'com.android.support.test:runner:1.0.2’
androidTestImplementation ‘com.android.support.test.espresso:espresso-core:3.0.2’

implementation files('src/main/jniLibs/libDaumMapAndroid.jar')

}

해당 상태에서

compile 'com.kakao.sdk:newtone:6.0.1’을 추가시

Process: com.thewell_dev.sample1, PID: 6644
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.thewell_dev.sample1/com.thewell_dev.sample1.MainActivity}: android.view.InflateException: Binary XML file line #9: Binary XML file line #9: Error inflating class net.daum.mf.map.api.MapView
    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:3108)
    at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:3251)
    at android.app.servertransaction.LaunchActivityItem.execute(LaunchActivityItem.java:78)
    at android.app.servertransaction.TransactionExecutor.executeCallbacks(TransactionExecutor.java:108)
    at android.app.servertransaction.TransactionExecutor.execute(TransactionExecutor.java:68)
    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1948)
    at android.os.Handler.dispatchMessage(Handler.java:106)
    at android.os.Looper.loop(Looper.java:214)

라고 오류가 발생합니다

저 한줄 추가하기 이전에는 정상적으로 지도가 불러와지며 해당 xml 구성요소가 포함되어있는 상태입니다.

<net.daum.mf.map.api.MapView
android:id="@+id/map_view"
android:layout_width="0dp"
android:layout_height=“0dp"
app:layout_constraintBottom_toTopOf=”@+id/guideline2"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf=“parent” />

혹시 이에 관해 아시는 부분이 있으시면 알려주시기 바랍니다 ㅠ

혹시 64비트 이슈가 아닌지 확인 해 보셨나요?