Skip to content

Latest commit

 

History

History
42 lines (37 loc) · 1.04 KB

README.md

File metadata and controls

42 lines (37 loc) · 1.04 KB

Android Maven Template Project

Android template project which builds with maven, contains 4 modules:

  • Root
  • App
  • Test
  • Lib.

For each module configured testing frameworks:

Project define 3 different build profiles which allow you to build your Android project in different environments:

  • Development
  • Test
  • Production.

During the build maven process targeted resources and substitutes required values from profiles.

Project and testing frameworks organized as follows:

 Root
 |---- App
 |    |---- src
 |    |---- test
 |         |---- JUnit
 |         |---- Robolectric
 |
 |---- Lib
 |    |---- src
 |    |---- test
 |         |---- JUnit
 |         |---- Robolectric
 |
 |---- Test
      |---- src
           |---- Instrumentation
           |---- Robotium