Well, I think Android does not support .AAC format.
3GPP (.3gp) and MPEG-4 (.mp4, .m4a). No support for raw AAC (.aac)
but you can change the playerdriver.cpp file in Android OpenCORE with the following line:
mDataSource->SetDataSourceFormatType(PVMF_FORMAT_UNKNOWN);
to
mDataSource->SetDataSourceFormatType(PVMF_AACFF);
then you can play your AAC file =)
source share