[React-native] Scheme

HongDuHyeon·2023년 2월 15일
1
post-thumbnail
post-custom-banner
이거 예전에 막 부를 때 슈치미라고 부름 ㅋㅋ

Scheme

  • 외부에서 우리 앱을 호출하거나, 우리 앱이 외부앱을 호출 하는 수단

Android Scheme 정의하기

  • intent- filter를 통해서 정의
<intent-filter>
  <action android:name="android.intent.action.VIEW" />
  <category android:name="android.intent.category.DEFAULT" />
  <category android:name="android.intent.category.BRWSABLE"/ >
  <data android:scheme="scheme" />
</intent-filter>

IOS Scheme 정의하기

  • Info.plist > URL Types에 저장

uri-scheme 테스트

uri-scheme package 통해 테스트

npx uri-scheme open "scheme://path" --ios
npx uri-scheme open "scheme://path" --android
profile
마음이 시키는 프론트엔드.. RN과 IOS를 곁들인..
post-custom-banner

0개의 댓글