일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- 스튜디오
- GIT
- Kotlin
- coroutine
- Android
- ADB
- dart
- RecyclerView
- build
- 안드로이드스튜디오
- 유튜브
- MVVM
- Gradle
- 웹뷰
- viewpager
- 안스
- error
- 깃헙
- 레트로핏
- 의존성주입
- Github
- image
- WebView
- 코틀린
- studio
- 안드로이드 스튜디오
- 코루틴
- 안드로이드
- Retrofit
- 에러
- Today
- Total
목록스키마 (2)
코딩하는 일용직 노동자
아주 간편안 딥링크 테스트 방법입니다. 테스트할 기기의 브라우저로 아래의 url을 들어가서 딥링크를 입력해주면 됩니다. https://halgatewood.com/deeplink/ Deep Link Testing Tool - Mobile App Development Tools A deep link is a URL that links to content "deep" in your site structure. You may have a product you are trying to sell, or a video series you are trying to promote. With a deep link you can have another app link directly to that piece of cont..
외부에서 스키마(Scheme)을 전달받아 특정 액티비티로 바로 연결해주는 작업을 하는 경우가 많습니다. 보통 아래처럼 scheme 과 host를 셋팅합니다. 추가로 pathPrefix 를 설정할 수 있지만 안하는 경우도 많습니다. 이경우 "testapp://event/list" 이런 형태로 전달받게 되면 해당 액티비티로 연결해주게 됩니다. 이걸 테스트할때 adb 명령어를 이용해서 테스트 할 수 있습니다. 아래처럼 터미널창에서 입력하면 됩니다. adb shell am start -W -a android.intent.action.VIEW -d "scheme://host?param1=value1" 앱패키지명 ex) adb shell am start -W -a android.intent.action.VIEW -..