안녕하세요 안드로이드펍 가족 님들.
현재 구글플러스 공유하기 기능일 이용하려고하는데요..
딥링크를 이용해서 공유한 게시물을 클릭시 해당앱이 실행되게하려고하는데요.Intent shareIntent = new PlusShare.Builder(this)
.setText(url)
.setType("text/plain")
.setContentDeepLinkId( Client ID, /** Deep-link identifier */
"PetzView", /** Snippet title */
"A tasty recipe for making lemon cheesecake.", /** Snippet description */
Uri.parse(thumb))
.getIntent();
startActivityForResult(shareIntent, 0);
매니퍼스트
<action android:name="com.google.android.apps.plus.VIEW_DEEP_LINK" />
<data android:scheme="vnd.google.deeplink" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
위소스 처럼했는데 게시는 잘되는데요... 게시물을 클릭하여도 아무런 반응이 없습니다.
https://developers.google.com/+/mobile/android/share/deep-link 여기보고 하였습니다.