1. 다른 앱 공유하기 코드입력.
Intent intent = getPackageManager().getLaunchIntentForPackage("패키지명");
startActivity(intent);
2. 매니페스트 추가
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="내앱패키지명">
<queries>
<package android:name="상대패키지명" />
</queries>
여기서 중요한 점은 매니페스트에 queries 라는 항목을 추가해주는 것이다.
※파트너스 활동을 통해 일정액의 수수료를 제공받을 수 있음※
'IT개발일지 > Android' 카테고리의 다른 글
[Android]Volley Multipart 파일 전송하기 (0) | 2022.07.14 |
---|---|
[Android] Targeting S+ (version 31 and above) requires that one of FLAG_IMMUTABLE or FLAG_MUTABLE be specified when creating a PendingIntent (0) | 2022.04.14 |
[Android]View 투명도 설정하기 (Xml Alpha 값 주기) (0) | 2021.07.14 |
[Android] 카카오 로그인 연동하기 V2 - JAVA (0) | 2021.04.01 |
[Android] WebView 버튼 클릭 이벤트 javascript 연동 (0) | 2021.03.26 |