Android Dev - Weekly "who's hiring" thread! |
- Weekly "who's hiring" thread!
- Weekly Questions Thread - June 08, 2020
- I created this simple app that will notify you of any new releases to the current Android Jetpack libraries. You can also browse and bookmark specific libraries you're interested in for easier tracking. It's on GitHub and Play Store. Not sure if I'll add more features, but I'm open to suggestions.
- TIL: Be really careful with proguard wildcards
- Mobile app CI with AppCenter — good, but could be better
- App update rejected (Default phone handler)
- Finding Android dev a bit tougher as a Java developer as time goes on.
- What's a good 2020 source to learn app marketing, pricing, IAP strategies, ad placement etc.?
- What are the best places to stay on top of Android app development news/tools/ideas/knowledge?
- Make a RoboCam app?
- What are good examples for shared element transition implementation?
- Android example project of LiveData, Retrofit and infinity scroll RecyclerView
- "Introducing AndroidDistribution․io, a new home for the Android distribution chart"
- What are some of your favourite extension functions in Kotlin/Android Framework?
- Bug in RecyclerView + SwipeRefreshLayout
- Can anyone tell me the library name for floating menu from this application?
- Exploring how to provide your own password protected backup-restore mechanism in your app
- What is the best media (image/video) picker Library for Android app development ?
- What is the difference between kernel and firmware?
- 11 Top Android Studio Plugins for Faster Development
Posted: 08 Jun 2020 05:44 AM PDT 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 - June 08, 2020 Posted: 08 Jun 2020 03:56 AM PDT This thread is for simple questions that don't warrant their own thread (although we suggest checking the sidebar, the wiki, our Discord, 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] | ||
Posted: 08 Jun 2020 05:34 AM PDT
| ||
TIL: Be really careful with proguard wildcards Posted: 07 Jun 2020 11:50 PM PDT
| ||
Mobile app CI with AppCenter — good, but could be better Posted: 08 Jun 2020 04:46 AM PDT
| ||
App update rejected (Default phone handler) Posted: 08 Jun 2020 06:05 AM PDT We have an android app that we developed as a default dialer that can identify incoming calls if they are registered to a company. At first Play store told us to implement the asking for default before asking for any permissions. We fixed that and our app was accepted. After that all updates have failed due to this error:
Our manifest: We've choosen three core functionalities in our permissions declaration: * Default Phone handler We have tried contacting play store developer support but Google seems busy and we're waiting for a response for about a week already. The chat option says they can not do anything about permissions errors and that we have to wait for an email from Google. I'm wondering if anyone can see anything fishy about our manifest or permissions declaration. The app is not listed in play store because it's in open beta and is limited to Estonia at our testing phase. I'm kind of lost how to proceed from here. Google wont answer (or offer normal paid support like almost every other software/service company). Really hoping some redditors have ideas. [link] [comments] | ||
Finding Android dev a bit tougher as a Java developer as time goes on. Posted: 07 Jun 2020 08:45 AM PDT I've been working on my pet project for Android for a while now on and off, but lately I've been finding it increasingly difficult to find java code references and examples that are up to date. Everything new is almost always in Kotlin. Now I have nothing against Kotlin, I want to focus on increasing my proficiency with Java and direct energy into actually developing a full fledged app. I'd be interested to hear about if any other developers have experienced this and how they approached it. I am fine to learn Kotlin in the future, and hopefully when it's better than Java in all respects (hear a lot about performance issues in compile and ide). Edit: Wow this kind of blew up. Thank you everyone for the feedback and advice. Means a lot. :) [link] [comments] | ||
What's a good 2020 source to learn app marketing, pricing, IAP strategies, ad placement etc.? Posted: 08 Jun 2020 03:53 AM PDT Preferable simple and compact written articles, do's and don'ts, starter strategies, geo-specific pricing etc. [link] [comments] | ||
What are the best places to stay on top of Android app development news/tools/ideas/knowledge? Posted: 08 Jun 2020 03:47 AM PDT Hey, I just want to get new sources into my Android info guild. What do you like recently? Thanks for any tips in advance! [link] [comments] | ||
Posted: 08 Jun 2020 06:38 AM PDT Hi. I need help.
____ or else _____
The developer of RoboCam said this on his development. Used Android Studio and used Construct 2 only for web clients. https://www.construct.net/en And
and here some info from him http://www.proghouse.ru/programming/60-ev3-remote-control I need the source code to set up a queue system in it like this I have here in PHP. http://robot1.gamereality.se/ https://github.com/jlivingstonsg/waiting-room-to-telerobot I use the RoboCam app in my robots but want to develope it and need the source code. Here is my robots. https://www.youtube.com/playlist?list=PLi0zyNfBMXA8SMBR8jWbhCJ7RWjkjBnN_ I want to build a telerobotic game like this with my robots. Can someone help me`? Regards Magnus [link] [comments] | ||
What are good examples for shared element transition implementation? Posted: 08 Jun 2020 06:16 AM PDT I'm trying to find apps that implement shared element transition in a meaningful way. I came across this blog post which includes some nice animated gifs but those are only designs and not the real thing. [link] [comments] | ||
Android example project of LiveData, Retrofit and infinity scroll RecyclerView Posted: 08 Jun 2020 01:27 AM PDT Hi, I've created an example project for anyone who don't know how to implement MVVM with LiveData and RecyclerView. Link: https://github.com/tRamboli/LiveData/ Feel free to fork, share, edit and improve the code. Thanks! [link] [comments] | ||
"Introducing AndroidDistribution․io, a new home for the Android distribution chart" Posted: 07 Jun 2020 02:18 PM PDT In case you wanted to view it without Android Studio, someone made it into a website: https://9to5google.com/2020/06/05/introducing-androiddistribution-io/ https://androiddistribution.io/ If you want, I've made today an app that shows it in textual format, open sourced too, based on the JSON we can have from Android Studio code (it also has an APK) : [link] [comments] | ||
What are some of your favourite extension functions in Kotlin/Android Framework? Posted: 08 Jun 2020 03:36 AM PDT Like I love the following extension on View
As simple as it looks it's pretty powerful in my opinion as it removes a lot of if-else blocks from my code base. For 0.01% of cases where I need to just make view ``` fun View.setInVisible() { visibility = View.INVISIBLE } ``` [link] [comments] | ||
Bug in RecyclerView + SwipeRefreshLayout Posted: 08 Jun 2020 01:40 AM PDT Hi there. I usually post something like this in sticky-ed beginner questions, but I can't find it in the front page. I created the recyclerView before and it worked normally, both the view and the click behaviour. Recently, I added swipeRefreshLayout to it and it behaves weirdly. My XML looks more or less like this: I added some code to swipeRefreshLayout behaviour in the kotlin file, but I ommitted it because I find it indifferent. It's more or less just some vanilla code. The bug is, if the recyclerView is in default position (unscrolled), all items in unclickable. But when it's scrolled, even just a little bit, all item is suddently clickable. When I scrolled the recyclerView again to default/topmost position, the items become unclickable again. The recyclerView behaves normally before I added swipeRefreshLayout and became normal again when I disabled the swipeRefreshLayout. By disabled, I mean commented it out in the XML file. [link] [comments] | ||
Can anyone tell me the library name for floating menu from this application? Posted: 08 Jun 2020 12:58 AM PDT
| ||
Exploring how to provide your own password protected backup-restore mechanism in your app Posted: 07 Jun 2020 12:59 PM PDT
| ||
What is the best media (image/video) picker Library for Android app development ? Posted: 07 Jun 2020 12:52 PM PDT Hello People, What is a good library for picking images and videos from internal and external media storage in an android phone? The ones I have worked with do not satisfy some of the basic needs. My basic requirement for the library is ---
If anyone out there has any idea, extend your gratitude ! [link] [comments] | ||
What is the difference between kernel and firmware? Posted: 08 Jun 2020 04:24 AM PDT Can I install different versions of Android (Marshmallow, KitKat, Pie etc) on the same kernel version? [link] [comments] | ||
11 Top Android Studio Plugins for Faster Development Posted: 07 Jun 2020 12:14 PM PDT
|
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, 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States |
No comments:
Post a Comment