- I just started with posting videos on my channel. I convert dribbble design shots into actual implementation do give it a look and if you want something to be implemented you can ping me. I'll be more than happy to implement it. Thank you all.
- Kotlin 1.4.0-RC: Debugging coroutines – Kotlin Blog
- DexGuard, DashO and its competitors
- Send text over USSD on Android
- Shrink your app with R8
- Need some help for a visually impaired person
- New APIs in the Android Gradle Plugin
- ElectroCRUD 2 | Create, Read, Update, and Delete (CRUD)
- Understanding your build with the Build Analyzer
- Need a tutor
- [DEV] New Android Game with 'Stroop Effect'. Join our Discord Server for game updates and rank check on Leaderboard. UwU
- How do you approach DB schema design?
- What to learn next?
- Playing a video with Jetpack Compose
- Any tips for dealing with Dialog resize issues?
- Bound Services vs Job Scheduler
- AndroidBites | How to Catch ?: Errors !!
- Need volunteers? I have 2months.
- Card view overlapping in some devices.
- What's the best way to observe an ArrayList in Kotlin?
Posted: 29 Jul 2020 04:43 AM PDT
| ||
Kotlin 1.4.0-RC: Debugging coroutines – Kotlin Blog Posted: 29 Jul 2020 07:25 AM PDT
| ||
DexGuard, DashO and its competitors Posted: 29 Jul 2020 01:27 PM PDT Hey everyone, I am in the process of buying a tool to replace ProGuard, I have tested 2 of them, DexGuard and DashO. Both tools seems to be working good and have much more capabilities than ProGuard, they both are asking for $4,000 yearly subscription, which seems a lot to me. I would like to hear your opinion about them (especially DashO) and maybe some recommendation for cheaper alternative! [link] [comments] | ||
Send text over USSD on Android Posted: 29 Jul 2020 01:56 PM PDT Hey guys, I had a question on sending a text over USSD on android. Asked [here](https://stackoverflow.com/questions/63162166/calling-ussd-with-text-attached-on-android). Answer it there if you have the know-how as it might help others too ... Thanks [link] [comments] | ||
Posted: 29 Jul 2020 10:00 AM PDT
| ||
Need some help for a visually impaired person Posted: 29 Jul 2020 11:56 AM PDT Hi Everyone! I truly do not know where to post my problem as it is so unique, but I hope you developers may be able to answer my question. I am visually impaired which means I have to use the magnification gestures on my phone constantly to see the content of the screen. - Triple tap gestures slows down everything (as the system waits for the taps) - Gesture navigation requires the user to swipe up two fingers from the bottn. You can imagine how often this ends up being recognised as a go home ... An ideal solution: - a single swipe up from bottm (either side) or corner I have seen there are several apps that can modify the gestures, but none of them can do it with magnification. From a technical perspective is this even possible ? Thank you for your help! [link] [comments] | ||
New APIs in the Android Gradle Plugin Posted: 29 Jul 2020 06:58 AM PDT
| ||
ElectroCRUD 2 | Create, Read, Update, and Delete (CRUD) Posted: 29 Jul 2020 01:05 PM PDT
| ||
Understanding your build with the Build Analyzer Posted: 29 Jul 2020 08:41 AM PDT
| ||
Posted: 29 Jul 2020 03:10 PM PDT Sorry in advance if this type of post isn't welcome, I'm not looking to hire anyone for a job, just someone who can teach me 1:1. I come from a Windows world and recently started working for a company focused on Android. I need a crash course on Android from someone willing to teach. I need someone with enterprise experience. Will pay hourly. Edit: I am not a developer, just need some basic technical knowledge [link] [comments] | ||
Posted: 29 Jul 2020 02:49 PM PDT ┎━━━━━━━━━━━━━━⍟━━━━━━━━━━━━━━┒ **Mind Trickster** ┖━━━━━━━━━━━━━━⍟━━━━━━━━━━━━━━┚ 🔰 Upcoming Game 🔰 Fun 🔰 Brain workout 🔰 Monthly prizes ($$) 🔰 Android 🔰 Easy to adapt 🔰 Free to play 🔰 Leaderboard updating on Discord 🔰 Be one of the first players to join and climb the ranks faster to get the rewards! 🔰 Invitation Link: [link] [comments] | ||
How do you approach DB schema design? Posted: 29 Jul 2020 02:41 PM PDT Room or SQLDelight or your favourite database library. How do you approach designing your tables? I've tried to stay away from that side of programming so far but I'd like to get better at it. I know, for example, if you have a user table you can then have an address table and link the two with a foreign key. That makes sense to me. But aside from address, I'm not sure when to have a separate table and when to put the data in the same table. For example if a user has a profile picture. Do I create a profile pictures table and link it to the user or add a column? Where does it end? Where do you draw the line on your projects? Specifically is there any special rules that you adhere to given that you're using a mobile device? As in would you simply copy the API response into an entity or would you strip the objects down but otherwise match the structure of the API response? Or are you more conscious of space considerations? [link] [comments] | ||
Posted: 29 Jul 2020 10:44 AM PDT In the past month, I've learned Kotlin and I wrote some basic apps in Android Studio ( a to do list, a tip calculator and a darts scoreboard). Now, I'm a bit stuck. I don't know what to learn next or what kind of app to make. I want to go to the next level, where I can make more elaborate apps. What should I learn next? Any suggestions are welcome! [link] [comments] | ||
Playing a video with Jetpack Compose Posted: 29 Jul 2020 03:35 AM PDT
| ||
Any tips for dealing with Dialog resize issues? Posted: 29 Jul 2020 10:36 AM PDT
| ||
Bound Services vs Job Scheduler Posted: 29 Jul 2020 09:34 AM PDT Which one is preferred? What r pros and cons of each? [link] [comments] | ||
AndroidBites | How to Catch ?: Errors !! Posted: 28 Jul 2020 09:29 PM PDT
| ||
Need volunteers? I have 2months. Posted: 29 Jul 2020 07:46 AM PDT Hello, im a medical graduate fron aiims. I always wanted to be part of group where people design app that could help people in the society somehow, preferably related to medical field. However i never knew how to go about it. (Also because im technologically not very good) Ill be happy if anyone could help me on this and give me contacts of anyonw who is doing this ans need some volunteers. . Will happy to make a contribution! Ps: i dont need any payments. Perhaps something just to add to my cv😊 [link] [comments] | ||
Card view overlapping in some devices. Posted: 29 Jul 2020 07:41 AM PDT
| ||
What's the best way to observe an ArrayList in Kotlin? Posted: 29 Jul 2020 07:34 AM PDT I have an ArrayList and when it contains a specific value, I want to observe the list and check when this value has been removed. What's the best way to do it in Kotlin/Android? I've implemented it so far using LiveData, but it seems like overkill. I just have a hunch that there's a better solution. I haven't ever used Flows yet, to my understanding though they are pretty similar to LiveData (as I already use coroutines). Is there anything better? [link] [comments] |
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