मुझे एंड्रॉइड -21 पर कस्टम हस्ताक्षर की अनुमति के साथ एक ही समस्या थी और इसे पूरी तरह से अनइंस्टॉल कर रहा था यह सुनिश्चित करके इसे हल किया।
यह एक किनारा मामला है जो तब होता है जब:
- एक आवेदन हस्ताक्षर स्तर की सुरक्षा का उपयोग करते हुए एक कस्टम अनुमति को परिभाषित करता है
- आप एक अलग कुंजी के साथ हस्ताक्षरित संस्करण के साथ इंस्टॉल किए गए ऐप को अपडेट करने का प्रयास करते हैं
- परीक्षण डिवाइस कई उपयोगकर्ताओं के समर्थन के साथ एंड्रॉइड 21 या नया चला रहा है
कमांड लाइन उदाहरण
यहां एक कमांड-लाइन प्रतिलेख है जो समस्या को प्रदर्शित करता है और इसे कैसे हल किया जाए। इस बिंदु पर एक डिबग संस्करण स्थापित किया गया है और मैं रिलीज़ कुंजी के साथ हस्ताक्षरित उत्पादन संस्करण को स्थापित करने का प्रयास कर रहा हूं:
# This fails because the debug version defines the custom permission signed with a different key:
[root@localhost svn-android-apps]# . androidbuildscripts/my-adb-install Example release
920 KB/s (2211982 bytes in 2.347s)
pkg: /data/local/tmp/Example-release.apk
Failure [INSTALL_FAILED_DUPLICATE_PERMISSION perm=com.example.android.example.PERMISSION_EXAMPLE_PLUGIN pkg=com.example.android.example]
# I use uninstall -k because apparently that is similar to uninstalling as a user
# by dragging the app out of the app tray:
[root@localhost svn-android-apps]# /android-sdk-linux/platform-tools/adb uninstall -k com.example.android.example
The -k option uninstalls the application while retaining the data/cache.
At the moment, there is no way to remove the remaining data.
You will have to reinstall the application with the same signature, and fully uninstall it.
If you truly wish to continue, execute 'adb shell pm uninstall -k com.example.android.example'
# Let's go ahead and do that:
[root@localhost svn-android-apps]# /android-sdk-linux/platform-tools/adb shell pm uninstall -k com.example.android.example
Success
# This fails again because the custom permission apparently is part of the data/cache
# that was not uninstalled:
[root@localhost svn-android-apps]# . androidbuildscripts/my-adb-install Example release
912 KB/s (2211982 bytes in 2.367s)
pkg: /data/local/tmp/Example-release.apk
Failure [INSTALL_FAILED_DUPLICATE_PERMISSION perm=com.example.android.example.PERMISSION_EXAMPLE_PLUGIN pkg=com.example.android.example]
# In spite of the warning above, simply doing a full uninstall at this point turned out to
# work (for me):
[root@localhost svn-android-apps]# /android-sdk-linux/platform-tools/adb uninstall com.example.android.example
Success
# Release version now successfully installs:
[root@localhost svn-android-apps]# . androidbuildscripts/my-adb-install Example release
898 KB/s (2211982 bytes in 2.405s)
pkg: /data/local/tmp/Example-release.apk
Success
[root@localhost svn-android-apps]#
ग्रहण का उदाहरण
विपरीत दिशा में जा रहे हैं (जब रिलीज बिल्ड पहले से ही स्थापित है, तो ग्रहण से डिबग बिल्ड स्थापित करने की कोशिश कर रहा है), मुझे निम्नलिखित डायलॉग मिलते हैं:
यदि आप इस बिंदु पर हां का जवाब देते हैं तो इंस्टॉल सफल हो जाएगा।
डिवाइस का उदाहरण
जैसा कि एक अन्य उत्तर में बताया गया है, आप इस डिवाइस की सेटिंग में एक ऐप इंफो पेज पर भी जा सकते हैं, ओवरफ्लो मेनू पर क्लिक करें और इस त्रुटि को रोकने के लिए "सभी उपयोगकर्ताओं के लिए स्थापना रद्द करें" का चयन करें।