Multiple choice technology platforms and products

In Android project structure, Assets folder contains file that are not packaged with the application.

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

The Assets folder in an Android project contains files that ARE packaged with the application. Unlike resources which are compiled and accessed through R.java, assets are included in the APK as-is and accessed via AssetManager. The statement claims they are 'not packaged' which is incorrect.