http://www.this-so-does-not-exist.com/somethingなどのリンク (いくつかのパラメーターを含む) を使用してメールからアプリを起動する必要があります 。
インテントフィルターでフォローを使用して簡単なメールをクリックした後、アプリを起動できます。
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data
android:host="www.this-so-does-not-exist.com/something"
android:scheme="http"/>
</intent-filter>
今、私はhttp://www.this-so-does-not-exist.com/something?id=4545のような電子メールリンクとともにいくつかの情報を渡したいです
Androidアプリからこれを読む方法。
どんな助けでも大歓迎です。前もって感謝します。