developer.android.com/reference/android/content/Intent#ACTION_MY_PACKAGE_REPLACED
android.content.Intent
public static final String ACTION_MY_PACKAGE_REPLACED
๋ธ๋ก๋์บ์คํธ ์ก์ : ๊ธฐ์กด ์ ํ๋ฆฌ์ผ์ด์ ์์ ์ ๋ฒ์ ์ ์ ํ๋ฆฌ์ผ์ด์ ์ด ์ค์น๋์์ ๋, ๊ต์ฒด๋ ์ ํ๋ฆฌ์ผ์ด์ ์๊ฒ ๋ณด๋ด์ง๋ค. ์ถ๊ฐ๋๋ ๋ฐ์ดํฐ๋ ์๋ค. ์ธํ ํธ ํํฐ๋ฅผ ์ฌ์ฉํด ์์ ํ๋ค.
protected ์ธํ ํธ๋ก ์์คํ ์์๋ง ๋ฐ์ก๋๋ค.
์์ ๊ฐ: android.intent.action.MY_PACKAGE_REPLACED
<receiver android:name=".MyAppUpdateReceiver"
android:enabled="true"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MY_PACKAGE_REPLACED" />
</intent-filter>
</receiver>
- enabled ์์ฑ : true > ์์คํ ์ด ์์์ MyAppUpdateReceiver๋ฅผ ์คํํ๋๋ก ํด์ผ ํ๊ธฐ ๋๋ฌธ์ true.
- exported ์์ฑ : true > ์์คํ ์ผ๋ก๋ถํฐ ์ธํ ํธ๋ฅผ ๋ฐ์์ผ ํ๊ธฐ ๋๋ฌธ์ true.
'๋น ๊ตฌ๋ฉ ์ฑ์ฐ๊ธฐ' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[Kotlin Coroutines] ObsoleteCoroutinesApi (0) | 2021.02.24 |
---|---|
[Android] AndroidManifest <receiver> (0) | 2021.02.23 |
[SonarQube] Android Project์ SonarSanner ์คํํ๊ธฐ (0) | 2021.02.22 |
[Programming] ๋๋ค์ ๋๋คํจ์ (0) | 2021.02.19 |
[Programming] Closure (0) | 2021.02.19 |