Hi everybody,
I'm getting an error when trying to upload my application apk to Google play.
Failed to run aapt dump badging:
W/ResourceType(16292): No known package when getting value for resource number 0x0106000d
ERROR getting 'android:icon' attribute: attribute is not a string value
I've tried to change the icon name and tried to upload the apk without image without success.
When I write on the console the instruction:
./aapt dump badging /path/to/apk
I get the same error than I get uploading the apk to google play.
And trying to discover the resource that is failing I've written the following line in console:
./aapt dump resources /path/to/apk
However, the output doesn't contain any resource with number 0x0106000d. Resources go from 0x7f010000 to 0x7f0d0009
Package Groups (1)
Package Group 0 id=127 packageCount=1 name=my.app
Package 0 id=127 name=my.app typeCount=13
type 0 configCount=1 entryCount=52
spec resource 0x7f010000 my.app:attr/vpiCirclePageIndicatorStyle: flags=0x00000000
spec resource 0x7f010001 my.app:attr/vpiIconPageIndicatorStyle: flags=0x00000000
spec resource 0x7f010002 my.app:attr/vpiLinePageIndicatorStyle: flags=0x00000000
.....
.....
resource 0x7f0d0007 my.app:menu/popup_menu: t=0x03 d=0x00000024 (s=0x0008 r=0x00)
resource 0x7f0d0008 my.app:menu/popup_menu_imatge_nova_recepta: t=0x03 d=0x0000003d (s=0x0008 r=0x00)
resource 0x7f0d0009 my.app:menu/refresh: t=0x03 d=0x0000000e (s=0x0008 r=0x00)
How could I solve this issue to get the app on google play?
Thank you in advance.