diff --git a/topical-units/env-android/ANATOMY.md b/topical-units/env-android/ANATOMY.md index f2ce465e1fd5f41ef5e42b2fa0c013062a9959b7..e772cc53f82b4152bf0c99c7c15ec99849f42814 100644 --- a/topical-units/env-android/ANATOMY.md +++ b/topical-units/env-android/ANATOMY.md @@ -8,16 +8,16 @@ Keep in mind that for the deliverables specified on the main README.md of this m If you are still feeling lost, please ask quetsions! ## Breakdown of a Sample Project -- **manifests/** +### **manifests/** - **AndroidManifest.xml** - Essential information about your app and how it is built. More info [Here](https://developer.android.com/guide/topics/manifest/manifest-intro). -- **java/** +### **java/** - **com.example.cs266/** - `MainActivity` - This Java file contains the code being run when the app is launched from the homescreen. It should have an "onCreate" method that will set the view to an XML layout from the **layout/** directory. - **com.example.cs266/ (androidTest)** - `ExampleInstrumentedTest` - This Java file contains unittest code that will be executed on an Android device. - **com.example.cs266/ (test)** - `ExampleUnitTest` - This Java file contains unittest code that will be executed on the host machine running Android Studio. -- **res/** +### **res/** - **drawable/** - `ic_launcher_background.xml` - `ic_launcher_foreground.xml`