Error:error: Found Item String/photopickernotfoundtext More Than One Time
I'm trying to import this project in Android Studio 1.0.1 https://github.com/android/platform_packages_apps_contacts When I build the app it shows these two errors: * Error:Execu
Solution 1:
There is a bug filed here (https://code.google.com/p/android/issues/detail?id=57020) with someone from Google providing a pretty good answer.
The package you've linked to is one of the package contained in the Android Open Source Project (AOSP), and is usually built by the AOSP build system (and not Android Studio or Eclipse). As such, it's liable to contain things that Android Studio can't handle (such as duplicate strings, and references to hidden APIs).
Basically, the duplicate string is something that the Android build system (AOSP) handles internally through post processing, and isn't generally allowed in normal application projects.
You probably can get around this, but it may require some small modifications to the sources.
Post a Comment for "Error:error: Found Item String/photopickernotfoundtext More Than One Time"