다음맵 socket close 문제

안녕하세요. 다음맵을 이용할려는 이용자입니다.

맵을 추가하는데 있어서 아래와 같은 오류가 발생하는데 문제점을 알수있을까요?

현재는 맵만 띄우려는 기초적인 부분입니다. (사용버전 : 1.3.1.0)

    MapView mapView = new MapView(this);

    ViewGroup mapViewContainer = findViewById(R.id.map_view);
    mapViewContainer.addView(mapView);

gradle 부분입니다.

apply plugin: ‘com.android.application’

android {
compileSdkVersion 26
buildToolsVersion “26.0.1”
defaultConfig {
applicationId “kr.co.meet”
minSdkVersion 19
targetSdkVersion 26
versionCode 1
versionName “1.0”
testInstrumentationRunner “android.support.test.runner.AndroidJUnitRunner”
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile(‘proguard-android.txt’), ‘proguard-rules.pro’
}
}
}

dependencies {
compile fileTree(dir: ‘libs’, include: [’*.jar’])
androidTestCompile(‘com.android.support.test.espresso:espresso-core:2.2.2’, {
exclude group: ‘com.android.support’, module: ‘support-annotations’
})

compile 'com.android.support:appcompat-v7:26.0.0+'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.loopj.android:android-async-http:1.4.9'
compile files('libs/libDaumMapAndroid.jar')

testCompile 'junit:junit:4.12'

}

오류 부분입니다.

08-18 16:37:48.772 23039-23039/kr.co.test E/MapViewLocationManager: init failed
08-18 15:34:40.753 26591-28014/kr.co.meet E/NativeBaseNetConnection: null
java.net.SocketException: Socket closed
at java.net.SocketInputStream.socketRead0(Native Method)
at java.net.SocketInputStream.read(SocketInputStream.java:151)
at java.net.SocketInputStream.read(SocketInputStream.java:120)
at org.apache.http.impl.io.AbstractSessionInputBuffer.fillBuffer(AbstractSessionInputBuffer.java:108)
at org.apache.http.impl.io.AbstractSessionInputBuffer.read(AbstractSessionInputBuffer.java:139)
at org.apache.http.impl.io.ContentLengthInputStream.read(ContentLengthInputStream.java:179)
at org.apache.http.conn.EofSensorInputStream.read(EofSensorInputStream.java:164)
at java.nio.channels.Channels$ReadableByteChannelImpl.read(Channels.java:237)
at net.daum.mf.map.n.api.NativeBaseNetConnection.fastChannelCopy(NativeBaseNetConnection.java:317)
at net.daum.mf.map.n.api.NativeBaseNetConnection.readFromInputStream(NativeBaseNetConnection.java:298)
at net.daum.mf.map.n.api.NativeBaseNetConnection.notifyFinishConnection(NativeBaseNetConnection.java:261)
at net.daum.mf.map.n.api.NativeBaseNetConnection.access$000(NativeBaseNetConnection.java:35)
at net.daum.mf.map.n.api.NativeBaseNetConnection$1.run(NativeBaseNetConnection.java:120)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1133)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:607)
at java.lang.Thread.run(Thread.java:762)
08-18 15:34:40.753 26591-28020/kr.co.meet E/NativeBaseNetConnection: null
java.net.SocketException: Socket closed
at java.net.SocketInputStream.socketRead0(Native Method)
at java.net.SocketInputStream.read(SocketInputStream.java:151)
at java.net.SocketInputStream.read(SocketInputStream.java:120)
at org.apache.http.impl.io.AbstractSessionInputBuffer.fillBuffer(AbstractSessionInputBuffer.java:108)
at org.apache.http.impl.io.AbstractSessionInputBuffer.read(AbstractSessionInputBuffer.java:139)
at org.apache.http.impl.io.ContentLengthInputStream.read(ContentLengthInputStream.java:179)
at org.apache.http.conn.EofSensorInputStream.read(EofSensorInputStream.java:164)
at java.nio.channels.Channels$ReadableByteChannelImpl.read(Channels.java:237)
at net.daum.mf.map.n.api.NativeBaseNetConnection.fastChannelCopy(NativeBaseNetConnection.java:317)
at net.daum.mf.map.n.api.NativeBaseNetConnection.readFromInputStream(NativeBaseNetConnection.java:298)
at net.daum.mf.map.n.api.NativeBaseNetConnection.notifyFinishConnection(NativeBaseNetConnection.java:261)
at net.daum.mf.map.n.api.NativeBaseNetConnection.access$000(NativeBaseNetConnection.java:35)
at net.daum.mf.map.n.api.NativeBaseNetConnection$1.run(NativeBaseNetConnection.java:120)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1133)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:607)
at java.lang.Thread.run(Thread.java:762)
08-18 15:34:40.753 26591-28015/kr.co.meet E/NativeBaseNetConnection: null
java.net.SocketException: Socket closed
at java.net.SocketInputStream.socketRead0(Native Method)
at java.net.SocketInputStream.read(SocketInputStream.java:151)
at java.net.SocketInputStream.read(SocketInputStream.java:120)
at org.apache.http.impl.io.AbstractSessionInputBuffer.fillBuffer(AbstractSessionInputBuffer.java:108)
at org.apache.http.impl.io.AbstractSessionInputBuffer.read(AbstractSessionInputBuffer.java:139)
at org.apache.http.impl.io.ContentLengthInputStream.read(ContentLengthInputStream.java:179)
at org.apache.http.conn.EofSensorInputStream.read(EofSensorInputStream.java:164)
at java.nio.channels.Channels$ReadableByteChannelImpl.read(Channels.java:237)
at net.daum.mf.map.n.api.NativeBaseNetConnection.fastChannelCopy(NativeBaseNetConnection.java:317)
at net.daum.mf.map.n.api.NativeBaseNetConnection.readFromInputStream(NativeBaseNetConnection.java:298)
at net.daum.mf.map.n.api.NativeBaseNetConnection.notifyFinishConnection(NativeBaseNetConnection.java:261)
at net.daum.mf.map.n.api.NativeBaseNetConnection.access$000(NativeBaseNetConnection.java:35)
at net.daum.mf.map.n.api.NativeBaseNetConnection$1.run(NativeBaseNetConnection.java:120)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1133)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:607)
at java.lang.Thread.run(Thread.java:762)
08-18 15:34:40.753 26591-28020/kr.co.meet E/NativeBaseNetConnection: url=http://ot2.maps.daum-img.net/tile/hd/I/L4/1000/446.jpg
08-18 15:34:40.753 26591-28015/kr.co.meet E/NativeBaseNetConnection: url=http://ot0.maps.daum-img.net/tile/hd/I/L4/1000/444.jpg
08-18 15:34:40.753 26591-28014/kr.co.meet E/NativeBaseNetConnection: url=http://ot1.maps.daum-img.net/tile/hd/I/L4/999/445.jpg

==============================================================================

추가 질문입니다. 기존에 올라와있는 샘플프로젝트에 카카오 앱 key와 패키지만 변경하여서

돌렸더니 위와 같이 똑같은 에러가 발생하는군요.

앱 key 를 받는 방법이 https://developers.kakao.com/ ← 이주소에서 로그인하여 앱을 만든후 android 플랫폼 생성후

네이티브 앱 키를 사용하면 되는게 맞는지요…?

developers.kakao.com 사이트에서 얻으신 App Key와 등록된 앱 ID가 매칭 되는지 확인 부탁 드립니다.