지도 api를 사용하는데 지도가 뜨질않습니다

회색 화면에 하단에 kakao 로고만 떠있습니다.

network_security_config도 설정했고
native appKey도 meda 데이터에 넣었습니다.
혹시나 해서 위치도 여러번 바꿔가면서 테스트 해봤구요 …
usesCleartextTraffic="true"로 설정했구요…
키해시도 몇 번 확인했으나 같았습니다.

fold3로 테스트 했을 때는 따로 나오는게 없었는데,
갤럭시 10+ 에서는
W/libEGL: EGLNativeWindowType 0x775db0fae0 disconnect failed 로그만 계속 반복해서 나옵니다.
코드도 가이드 대로 작성한 것 같은데 도저히 뜨질 않네요…

val mapView = MapView(context)
val map = binding.locationMapView
map.addView(mapView)
mapView.setMapCenterPoint(MapPoint.mapPointWithGeoCoord(12~-,3~),true)
mapView.setZoomLevel(7,true)
mapView.zoomIn(true)
mapView.zoomOut(true)

        val marker = MapPOIItem()
        marker.tag = 0
        marker.mapPoint = MapPoint.mapPointWithGeoCoord(12~-,3~)
        marker.markerType = MapPOIItem.MarkerType.RedPin
        mapView.addPOIItem(marker)

어떤게 문제인걸까요???

latitude longitude 자리가 바뀐 거 아닌가용