Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

A directory structure represents the structure of the android studio code directories. It is similar to a tree like structure where there is a parent-child relation between the components. The directory structure gives us a summary of the list of various files included in the android code directory.

This section describes the directory structure of the Intelehealth Android app. This would make it easy for developers to contribute to the code. Following this convention also keeps the code base well organized.

...

  1. manifests: Contains the AndroidManifest.xml file.

  2. activities: Consists of sub-directories which consists of all the java class files of the code.

  3. application: Consists of Intelehealth application java class which consists of app specific functions.

  4. database: Consists of two java classes which contains the database code.

  5. services: Consists of the various services class files.

  6. assets: Consists of the demo family and medical protocols.

  7. drawable: Consists of the drawable images.

  8. layout: Consists of the UI xml layout files.

  9. mipmap: Consists of launcher icons mostly.

  10. values: Consists of the strings, styles, arrays, colors xml files.

  11. build.gradle(Module-app): Consists of a list of various dependencies that are being used in the app.

  12. build.gradle(Project:Intelehealth): Consists of a list of various dependencies version and other general app specific libraries.

...