You can try this way:
App Store>Updates>Purchased
- View the apps you deleted
- Find the app which about the same size with NULL app or version that match to the "Null" version
- Download the app again
- Remove it again and delete the cache
Hope it works for you.
Answer from Mark on Stack ExchangeI have had a similar crash in my application logs, NPE crash on MyApplication.get() method. After long search, I discovered that this crash was caused by the app restoration from the cloud.
If you have android:allowBackup="true" if the application tag of your manifest file, it could be your case too.
When the app data is restored, the app is killed in an unusual way, and when the user starts the app again, MyApplication.onCreate method is never called.
Easy steps to reproduce this crash are :
1) enable the app data saving on cloud in the device settings.
2) force a cloud saving for the app from the command line by launching : adb shell bmgr backupnow my.package.name
3) launch the app
4) trigger cloud backup from the command line : adb shell bmgr restore my.package.name => the app will stop
5) launch the app again by clicking on its icon => the app crashes with a NPE
You can trigger the crash again by repeating steps 4 and 5.
There are differents ways to solve this crash :
disable backup :
android:allowBackup="false"get an app instance from the activity getApplication method (caution : I am not sure it will be a MyApplication object)
force killing and restarting the app when application instance is null
use a custom BackupAgent to avoid the issue
Do you have multidex enabled in your gradle file like this
android {
defaultConfig {
...
minSdkVersion 15
targetSdkVersion 28
multiDexEnabled true
}
}