🎴 Flashcard Mode
Android Development Fundamentals: SQLite and Content Providers
Card1 / 20
Mastered0
Review0
QuestionClick to flip
Android resources stored in_______ of Android Application directory structure, are not compiled into binary format.
AnswerClick to flip back
A
/res/raw
💡 Explanation:
The /res/raw directory is specifically designed for files that should NOT be compiled into binary format. Files placed here are copied to the device as-is. In contrast, /res/xml files are parsed and compiled into a binary XML format, and /res/layout files are also compiled into binary format during the build process.