0

I work on a lot of closed source projects but often find myself extending the same classes, implementing the same libraries, doing the same things for caching and solving memory issues, and seeing other companies I work with facing the same issues

It makes me wonder if there are engines for android out there created for certain purposes. My cursory google search on this issue was unproductive

but I think this question is constructive because there is a real answer to this instead of discussion. Alternatively, what StackExchange site would this be a better question on?

Google Play Services and Volley are great examples and responses by google to certain problems such as but not limited to GPS/Positioning logic, network calls, bitmap caching, but I was wondering if there was anything more that is also maintained.

tshepang
12.5k25 gold badges98 silver badges140 bronze badges
asked May 19, 2014 at 14:40

1 Answer 1

1

It sounds like you have a few different problems that each have their own solutions.

extending the same classes, [...] doing the same things for caching and solving memory issues

Making your own library that contains these custom subclasses and caching implementations would probably suit your needs pretty well.

You may also want to learn how to create your own templates for Android Studio. Templates (such as the "new Master/Detail flow" default template) can be used to automatically generate classes and XML files to avoid spending time writing boilerplate code. Here's a GitHub repo with a number of examples.

implementing the same libraries

This sounds like your core complaint is that you want a way to automatically generate a base project of sort for your projects that might automatically include certain libraries, set up a package structure, etc. This can be accomplished using Maven archetypes.

If you want an example of how to create a Maven archetype, I would check out Velcro.

answered May 19, 2014 at 16:43
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.