Reputation: 131
I am Working on Google Map. But When i run my code so it saying..
Couldn't handle android.intent.action.PACKAGE_CHANGED intent due to initialization failure.
I can't understand this problem, what should I do?
Upvotes: 1
Views: 156
Reputation: 131
i have solved this issue by copied my .apk into platform-tools and install .apk via command prompt.
Upvotes: 1
Reputation: 938
Due to a broadcast behavior change since Android 3.1, your app must be started before it can receive the app installation/removal intents. See kabuko's answer in this thread.
Also check this thread: Intent PACKAGE_ADDED not registering
Upvotes: 0