PhoneGap / Cordova webview에서 카카오링크 작동이 안되네요…
if (url.startsWith("kakaolink:")) {
try {
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse(url));
cordova.getActivity().startActivity(intent);
} catch (android.content.ActivityNotFoundException e) {
LOG.e(LOG_TAG, "Error with " + url + ": " + e.toString());
}
}
이렇게 사용하려고 하는데 안 되네요…
좀 도와 주세요