InterviewSolution
Saved Bookmarks
| 1. |
Explain in detail about the important file and folders used when you create a new Android application. |
|
Answer» App: It DESCRIBES the basic characteristics of the application and defines each of its components. java:
res:
Scripts: This is an auto-generated file that consists of compileSdkVersion, buildToolsVersion, minSdkVersion, targetSdkVersion, applicationId, versionCode, and versionName. For example, build.gradle is a script file placed in the root project directory, defines build configurations that will be APPLIED to all modules in your project. |
|