Weekly "who's hiring" thread! |
- Weekly "who's hiring" thread!
- Weekly Questions Thread - December 05, 2016
- Create a Splash Screen on Android : the Right Way
- What's going on here? Is my (UK) College trying to man-in-the-middle on my secure Android Studio connection?
- Web Sockets now shipping in OkHttp 3.5 ! – Square Corner Blog
- Droidcon SF - Application Architecture: Designing Offline Application Case Studies
- Animation: Jump-through
- Did widgets die out?
- Android Library Development Design Structure ?
- A sweet update to Nougat: Android 7.1.1
- Smart job scheduler for Android
- Revealing personal information when releasing an app?
- With Async data fetching, how do you avoid flicker?
- Apache 2 License Question
- Android on Web
- How to get 1 star reviewers to try the app again?
- What are some good Java servlet hosting options for the backend of your app?
- Prolific open source devs, what advice do you have for open-source beginners?
- I want to make an app that acts like a live feed for my family so they feel more connected/up to date whilst i'm away.
- Where do you start when developing MVP projects with tests? Presenter -> Test Presenter -> Interactor -> Test Rest calls -> View -> Test View?
- What are you tips to get visibility ?
- Testing websites on multiple Android versions
- Are there any Android certificates that are worth doing?
- I wanna write a blog. Part 2.
- Can somebody please critique my Location/Maps activity code?
Posted: 05 Dec 2016 05:33 AM PST Looking for Android developers? Heard about a cool job posting? Let people know! Here is a suggested posting template:
Feel free to include any other information about the job. [link] [comments] |
Weekly Questions Thread - December 05, 2016 Posted: 05 Dec 2016 04:13 AM PST This thread is for simple questions that don't warrant their own thread (although we suggest checking the sidebar, the wiki, or Stack Overflow before posting). Examples of questions:
Important: Downvotes are strongly discouraged in this thread. Sorting by new is strongly encouraged. Large code snippets don't read well on reddit and take up a lot of space, so please don't paste them in your comments. Consider linking Gists instead. Have a question about the subreddit or otherwise for /r/androiddev mods? We welcome your mod mail! Also, please don't link to Play Store pages or ask for feedback on this thread. Save those for the App Feedback threads we host on Saturdays. Looking for all the Questions threads? Want an easy way to locate this week's thread? Click this link! [link] [comments] |
Create a Splash Screen on Android : the Right Way Posted: 05 Dec 2016 11:24 PM PST |
Posted: 05 Dec 2016 05:02 AM PST |
Web Sockets now shipping in OkHttp 3.5 ! – Square Corner Blog Posted: 05 Dec 2016 06:47 AM PST |
Droidcon SF - Application Architecture: Designing Offline Application Case Studies Posted: 05 Dec 2016 04:25 PM PST |
Posted: 05 Dec 2016 10:21 AM PST |
Posted: 05 Dec 2016 01:00 PM PST I've been thinking of adding an accompanying widget to my app, but it seems that widgets are not as hot as they were before, currently if I check my list of available widgets for all my installed apps, it is a very humble list, and usually are just icons that lead to the app, which is confusing as I find widgets can be very powerful tools if done right, is there a reason for this? Did devs face issues when trying to write a "good" widget? [link] [comments] |
Android Library Development Design Structure ? Posted: 05 Dec 2016 11:19 PM PST Best approaches to develop (Good Architecture, Design ) and maintaining android library . Can anyone point me in the right direction ? [link] [comments] |
A sweet update to Nougat: Android 7.1.1 Posted: 05 Dec 2016 11:16 PM PST |
Smart job scheduler for Android Posted: 05 Dec 2016 09:00 AM PST |
Revealing personal information when releasing an app? Posted: 05 Dec 2016 07:32 AM PST Is it absolutely necessary to have your address public when you release your app? I want to release my work, but I hesitate because of the security concerns. [link] [comments] |
With Async data fetching, how do you avoid flicker? Posted: 05 Dec 2016 04:39 AM PST We all know that it's bad to do expensive stuff such as database access on the main thread. We all know that RxJava and any one of the cool MVP libraries make it easy to fetch data asynchronously before passing it to your Activity/Fragment/View for display. What do you do about that short delay after your View is shown, but before the data has arrived? No matter how fast the data access is, the very fact that it's asynchronous means that there is an annoying flicker. Possible solutions:
Any other options? [link] [comments] |
Posted: 05 Dec 2016 07:09 PM PST I'm creating a library for which I intend to apply the apache 2 license to.
I understand the usual this does not constitute legal advice, etc. [link] [comments] |
Posted: 05 Dec 2016 10:06 PM PST |
How to get 1 star reviewers to try the app again? Posted: 05 Dec 2016 11:56 AM PST Unfortunately just a couple of days after we started advertising for our app, we had a fluke Heroku error that prevented new users from signing up for our app (I believe the database was full or something). During that time we had a sizable number of users download and try to use the app, then rate it one star because they couldn't sign up. Is there a way to get these users to try the app again beyond replying to their Play Store reviews? [link] [comments] |
What are some good Java servlet hosting options for the backend of your app? Posted: 05 Dec 2016 11:23 AM PST So I'm currently using Google App Engine, mostly because it's so convenient to deploy from Android Studio. But it just seems like it's very expensive even now when I'm doing closed Alpha testing, and it's not very suitable for work with Firebase (issues with the background thread shutting down etc.), so I'm looking for alternatives. Does anyone have experience with some cheaper (but still easy to use) options for hosting ~15 Java Servlets? My database and a lot of the backend functionality is in Firebase. [link] [comments] |
Prolific open source devs, what advice do you have for open-source beginners? Posted: 05 Dec 2016 04:54 AM PST I've been working on android since 4+ without ever contributing to open source. I'm guessing neither have most developers. I want to change that. This recent post got me started. What are some things that devs looking to start contributing should know about? Common bugs and gotchas? General best practices? Where to find ideas? Also, what is the difference between: Maven, Bintray, Jcenter, Jitpack? Which one do I want? [link] [comments] |
Posted: 05 Dec 2016 02:54 PM PST Hi guys, I study computer science and i know how to program in java and c, but have never made an app before. My family uses android, ios and windowsphone. My app idea is that if they open the app all they see is a message/text by me with what im currently doing and what i have done before (timestamps) and i want to update this feed via pc (or if its easier with my windowsphone). I would like them to be able to switch on/off a notificator (if that's a word) so when i update my status they get a notification in their top bar. I don't know if a have to do 3 seperate apps for each os, but if that's the easiest/only way to do it it would be fine with me. I would really happy if someone could send me some links or tutorials so i can make this app as a christmas present. Thank you! :) [link] [comments] |
Posted: 05 Dec 2016 08:50 AM PST Once I read about that flow: Presenter -> Test Presenter -> Interactor -> Test Rest calls -> View -> Test View How to increase productivity? I personally do as follow:
[link] [comments] |
What are you tips to get visibility ? Posted: 05 Dec 2016 08:41 AM PST Hello everyone, I'm starting doing dev on my free time and really enjoying it, I have a long list of projects ideas i'm looking forward to work on. Yet on my curents apps the numbers are not raising at all, i have like twenty download on one, and exactly three on an other. I get it that i wasnt going to get thousands and thousands but maibe wasnt expecting that literally no one stumble upon my apps. Whithout talking about paid ads, what are the ways for my apps to reach their potential users ? TL;DR: How to get visibility ? [link] [comments] |
Testing websites on multiple Android versions Posted: 05 Dec 2016 12:56 PM PST Hi, I'm developing a small website and I noticed that it wasn't working as expected on older versions of Android (i.e. 4.1). Is there a way I can test, ideally visually, on many Android versions at once? Thanks [link] [comments] |
Are there any Android certificates that are worth doing? Posted: 05 Dec 2016 05:02 AM PST |
Posted: 05 Dec 2016 12:41 PM PST The previous post https://www.reddit.com/r/androiddev/comments/5gba4b/i_wanna_write_a_blog/?st=iwcjfm0e&sh=fced2d48 In this post number 2 http://slaverygames.somee.com/Views/Post2.html I wrote about my first app that I published to Google play. About that how I was searching for an idea for an app. How I promoted an application. How I was playing in SEO (Search Engine Optimization). How many I earned for two months. That was fail but still gives experience :) I created a new thread to separate comments between blog posts. I don't have comments on my site so if you have any comments write it here. [link] [comments] |
Can somebody please critique my Location/Maps activity code? Posted: 05 Dec 2016 05:52 AM PST |
You are subscribed to email updates from Developing Android Apps. To stop receiving these emails, you may unsubscribe now. | Email delivery powered by Google |
Google Inc., 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States |