- Update: System File Predating Offenders App & A Digital Confession Via Gmail From The Offending Party's Email Is Not Enough For Google To Take Down Infringing Material, so basically it's a free for all on google play for non-US offenders, take what you want without consequence.
- Android Studio 3.6 Beta 2 available
- Introducing Orbit MVI for Kotlin and Android
- Modernizing our Android build system: Part II, the execution
- Moshi-Sealed - Reflective and code gen implementations for serializing Kotlin sealed classes via Moshi polymorphic adapters.
- Dagger through your heart
- Android projects junior devs can contribute to?
- What are the top android libraries/frameworks companies look for?
- Icon Tryer Outer - a simple tool I built to try out icons on your mobile device
- One Biometric API Over all Android
- Collating Playstore reviews of your app for Analysis
- Golden Tee Golf App!
- Using LiveData to cache data in repository
- Noob Advice needed
- Cloudflare for app server/api
- Using ViewPager2 with JetPack Compose
- Thoughts about coreLibraryDesugaringEnabled on the new Android Studio...
- Can I copy android-sdk folder from another PC?
- Guidelines for implementing analytics in Apps?
- MetaData to CSV
- Accelerometer stops sending data
- AndroidX migration - Why Android Studio is refactor com.android.support:support-v4 to androidx.legacy:legacy-support-v4, instead of androidx.appcompat:appcompat
- How to make MaterialButton "merge" with a horizontal divider ?
- My wireless gamepad doesn't work on my phone(Galaxy A70) with OTG Cable
Posted: 31 Oct 2019 12:25 PM PDT
| ||
Android Studio 3.6 Beta 2 available Posted: 31 Oct 2019 10:13 AM PDT | ||
Introducing Orbit MVI for Kotlin and Android Posted: 31 Oct 2019 02:05 PM PDT
| ||
Modernizing our Android build system: Part II, the execution Posted: 31 Oct 2019 04:27 AM PDT | ||
Posted: 30 Oct 2019 11:36 PM PDT
| ||
Posted: 31 Oct 2019 10:40 AM PDT Has anyone used Dagger and can say it has significantly changed their dev experience? Or is it just one more library that caught on? [link] [comments] | ||
Android projects junior devs can contribute to? Posted: 31 Oct 2019 07:24 AM PDT While I could learn a lot by building a whole app by myself, it just takes up so much time and I only plan on doing only 1. To save time and learn from other devs, I want to work on other projects online, and learn from other peoples commits. does anyone here know where I could find this? I see some online but they aren't very beginner friendly [link] [comments] | ||
What are the top android libraries/frameworks companies look for? Posted: 31 Oct 2019 06:50 AM PDT Hi everyone, I'm an aspiring junior Android developer and I'm trying to build my portfolio. I see a lot of Android Developer job postings that prefer candidates with certain experiences with libraries and frameworks. Something like Retrofit, Gson, RxJava, etc. I'm not entirely sure what I need to or should learn and use for my projects. What do you guys think are the top android lib/frameworks that companies look for? Many thanks [link] [comments] | ||
Icon Tryer Outer - a simple tool I built to try out icons on your mobile device Posted: 31 Oct 2019 10:14 AM PDT Hi folks, In recent months I've been getting into iOS development. An issue I've run into is wanting to try out multiple icon designs on my actual device, which can be pretty cumbersome with just Xcode. So to scratch this itch I built Icon Tryer Outer: https://www.icontryerouter.com/ It takes advantage of the "Add to homescreen" feature to let you quickly test out icon designs. You're also given a shareable link that you can give out to others (designers, other engineers, friends, etc) so they can test the icons, too. I'm an iOS dev, but I suspect this is an issue for you Android folks as well (and the "Add to home screen" feature is available in Chrome for Android), so I thought I'd post this here! I'd love to hear what you think! [link] [comments] | ||
One Biometric API Over all Android Posted: 31 Oct 2019 03:16 AM PDT
| ||
Collating Playstore reviews of your app for Analysis Posted: 31 Oct 2019 10:08 AM PDT
| ||
Posted: 31 Oct 2019 03:26 PM PDT The game is free and I have had a lot of fun playing so far. Search Incredible Technologies or Golden Tee Golf in your store. [link] [comments] | ||
Using LiveData to cache data in repository Posted: 31 Oct 2019 11:30 AM PDT Hi, I just started using livedata and viewmodel and need help with implementing repository pattern. I need to cache data after fetching it from the remote api to avoid calling it multiple times. I also need to have functionality of force refreshing the data from remote api if needed to. Is it okay to use LiveData as data holder in the repository, so that whenever I sync the data with remote api, the viewmodel of current activity is automatically refreshed with latest changes or Livedata should strictly not be used in the data layer? [link] [comments] | ||
Posted: 31 Oct 2019 02:43 PM PDT Hi all, Coming from react/react natice space to Android and Kotlin. While im checking out some tutorials, i wanted to ask for some input on some issues that i have on my mind, to get some ideas, before I start researching. Our project is a new one, and none of my colleagues have any solid experience in android. So, here we go:
Thanks for any input! [link] [comments] | ||
Posted: 31 Oct 2019 02:57 AM PDT Hey, do any of you here use cloudflare or some other service to prevent DDOS on your app server? They have a free tier and all, I was wondering whether I should use it or not. Would it be worth the performance loss? Idk how big that is thought. If it is like on websites ("checking your browser, please allow up to 5 secs"), but thats only the first time thought. Idk how it works exactly, if your using it with your API you could possible enlighten me of the performance loss? [link] [comments] | ||
Using ViewPager2 with JetPack Compose Posted: 31 Oct 2019 12:14 PM PDT Was kind of blown away by the Dev Summit. Surprised by the breadth and depth. So I am going through now trying to use a little Has anyone tried to use these things together? I am guessing no. I guess I should look at the Compose samples and see if I see anything in there. When it is possible, I think it will be amazing, for now might just use old style views for the time being. [link] [comments] | ||
Thoughts about coreLibraryDesugaringEnabled on the new Android Studio... Posted: 31 Oct 2019 01:39 AM PDT I've noticed this cool feature that let you use relatively new Android APIs on old versions of the OS: https://youtu.be/XPMrnR1_Biw?t=638 So I wanted to give it a try. I remember I had an issue with the IDE that it offered me to replace a tiny Java code to have "Long.compare()" instead of what I wrote, and it caused a crash on older Android versions: I tried to do it now again, and... for some reason it didn't crash (tested on API 16 emulator), even though I didn't set the new flag yet. Not only that, but this function/class don't seem to be mentioned on the link about what's supported:
So what's going on here? How could it not crash on API 16 ? Even the IDE seems confused about this new situation. On one time, it marked "Long.compare" as an error, and later it removed this error. In both cases it agreed to build and run without issues on API 16... I've reported it here, BTW, including sample projects. As a bonus, I see "A subset of java.time" being mentioned, but it doesn't say what exactly. Maybe I can finally avoid using libraries that implement Localdatetime and similar classes ? Weird, and cool... [link] [comments] | ||
Can I copy android-sdk folder from another PC? Posted: 31 Oct 2019 08:27 AM PDT I'm having some internet connectivity issues and I was wondering if I could copy the Android SDK folder (around 13GB) to my new PC and add it to path to run? [link] [comments] | ||
Guidelines for implementing analytics in Apps? Posted: 31 Oct 2019 12:01 PM PDT I am wondering if there are any guidelines for implementing Analytics in Android apps. Have you guys seen any? Couldn't personally find any guidelines to implement analytics in Android apps anywhere, so I decided to summarize a few of my findings here, but it's probably lacking: (If you can't get through because of paywall, try to open in Incognito window, or I cross-posted it here: https://github.com/saamerm/OctoberXamarinChallenge/blob/master/analytics-best-practices-for-xamarin-apps.md . It talks about implementation in Xamarin Android, which is basically Android development done in C#) Please let me know if you guys have any useful resources. [link] [comments] | ||
Posted: 31 Oct 2019 05:38 AM PDT I have developed an app for a company which is in Playstore now. For the backend, I have used Firebase. As of now, there is no native way to export the database to CSV or Excel format. But one can export the Firestore db to a MetaData format (I think that is some kind of Bigquery format) using Google cloud services. But I don't know what to do with that file or how to access that. Do anyone know how to convert the firebase database or MetaData format to Csv or sheet type format? Android #Firebase[link] [comments] | ||
Accelerometer stops sending data Posted: 31 Oct 2019 07:38 AM PDT I made an app that uses the accelerometer sensor. Sometimes i won't receive any sensor data for a few minutes or until reboot. Anyone dealt with this issue? [link] [comments] | ||
Posted: 31 Oct 2019 04:12 AM PDT I try to migrate one of the old projects to AndroidX, by using Android Studio/ Refactor/ Migrate to AndroidX... However, for some of the library projects, when I went through their build.gradle, I notice Android Studio is changing the line from to I was expecting the migrated line should be May I know why it is so? I have tried both 'androidx.legacy:legacy-support-v4:1.0.0' and 'androidx.appcompat:appcompat:1.0.0'. Both of them compiled and execute well. But, which is the correct one? The library is using androidx.viewpager.widget.ViewPager [link] [comments] | ||
How to make MaterialButton "merge" with a horizontal divider ? Posted: 31 Oct 2019 06:10 AM PDT
| ||
My wireless gamepad doesn't work on my phone(Galaxy A70) with OTG Cable Posted: 31 Oct 2019 09:52 AM PDT I own the Logitech F710. I bought a new otg cable. When I plug the gamepad receiver into the OTG, the phone detects the gamepad. But none of the buttons I pressed work on the phone. I also have the Logitech F310 and a cheap gamepad, which I tried on both of them, and it worked smoothly. Why am I having this problem with the F710? [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