Starter Project Structure for Android Instant app
Get the Sample App on Google Play here.
https://blog.mindorks.com/android-mvp-architecture-with-instant-app-support-11ba48241a82
If your mobile device supports Instant App, you can use these links to try it out. To enable Instant Apps, navigate to Settings --> Google --> InstantApps and turn it on.
MVP
Responsible for building the Application Apk.
Responsible for building Instant App Apks.
- Base Module: Contains all Common components like Network component, Dependency Injection Setup, Base Activities, Base Presenters, etc.
- Feature One Module: Contains all classes for first Instant App, which displays a list of news sources in a recyclerview.
- Feature Two Module: Contains all classes for Second Instant App, which displays a list of news stories from a selected source.
- Other Module: Contains other files which are not part of Instant App.
Suppose you want to add a new Feature called MyFeature
- Add a new Feature Module(MyFeature) from Android studio New Module Wizard.
- Add one
ActivityModule
and oneActivityComponent
. - Add a
BaseActivityMyFeature
which will extendBaseActivity
and inject your dependencies there. - If you want to make MyFeature an Instant App, Add
implementation project(":MyFeature")
tobuild.gradle
ofinstantapp
module.
You can refer to other module for example.
- Dagger2
- RxJava2
- Retrofit2
- Timber
- Rave
- Glide
- Espresso for UI tests
- Mockito
This Project consist of two Build Flavours.
- uat
- prod
Base url and Access keys for these environments are inside gradle.properties
file.
- debug
- release
- qualityassurance
- Instant App crashes with proguard on with error message
could not find com.iambedant.instantappstarter.ui.newsSources.NewsSourceActivity in any atom class loader or parent class loader
If you want to improve this project, your pull requests are most welcome.
MIT License
Copyright (c) [2017] [Bedanta Bikash Borah]
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.