ディープリンクを開くには次の書式でコマンドを実行する。 adb shell am start -W -a android.intent.action.VIEW -d <ディープリンクのURI> <アプリのパッケージ名> 実際に入力するときは次の様な感じ。 adb shell am start -W -a android.intent.action.VIEW -d "testapp://home_route" com.example.testapplication アプリのパッケージ名は、build.gradleのandroid.defaultConfig.applicationIdで確認するこ…