Hey, If you are building android appliation using cocos2d, you can't use android resource directly.
If you want to change Push Notification icon you can try following code snippet in App42GCMService.java file of Android project.
int resourceID = getResources().getIdentifier("icon", "drawable", "Application package name");
notification.setSmallIcon(
resourceID)
Thankx
Vishnu