Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ericmeyer/exampleandroid
https://github.com/ericmeyer/exampleandroid
Last synced: 23 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ericmeyer/exampleandroid
- Owner: ericmeyer
- Created: 2014-12-18T03:46:47.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-09-10T14:24:46.000Z (about 9 years ago)
- Last Synced: 2024-10-04T22:21:22.060Z (about 1 month ago)
- Language: Java
- Size: 1.86 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Requirements
* Android Studio 1.0.1
* Gradle 2.2.1See [here](http://tools.android.com/tech-docs/new-build-system/version-compatibility) for version compatibility.
# Explanation of Parts
* **Make sure to open the `AndroidApp` project**
* You might need to import `AndroidApp/settings.gradle`.## AndroidApp
* `AndroidApp` is the main project.
* It depends on `AndroidLibrary` and `JavaModule`## AndroidLibrary
* `AndroidLibrary` is an Android Library.
* It does not depend on other projects.## JavaModule
* `JavaModule` is a pure Java module.
* It does not depend on other projects.## Useful Files to Look At
* [AndroidApp/settings.gradle](AndroidApp/settings.gradle)
* [AndroidApp/app/build.gradle](AndroidApp/app/build.gradle)
* [AndroidApp/build.gradle](AndroidApp/build.gradle)
* [AndroidLibrary/build.gradle](AndroidLibrary/build.gradle)
* [JavaModule/build.gradle](JavaModule/build.gradle)## Running the Tests
* `gradle test` from `AndroidApp` runs the tests for all three projects
* `gradle test` from `AndroidLibrary` runs only those tests
* `gradle test` from `JavaModule` runs only those tests