Do you have anything to say about Scoped Storage? Google wants to hear from us. Android Dev |
- Do you have anything to say about Scoped Storage? Google wants to hear from us.
- Android Developers Blog: Android Q Beta 2 update
- Can someone explain to me why AAC is trying to force people to use ViewModels for making objects survive configuration changes?
- Announcing Android Q Beta 2
- AndroidX April release is here
- Real-life example of multi-module Android app
- WorkManager 1.0.1-rc01 and 2.0.1-rc01 now available !
- Does anyone know how Stetho works internally ? Could it work with Firefox dev tools ?
- Announcing Android Q Beta 2
- Is this the reason for endless stream of half-backed APIs, arch components, etc.?
- Dagger Assisted Injection - the missing piece in your Dagger setup
- How can I implement machine learning on an android app?
- Crashlytics - migration from fabric to Firebase.
- Beware BiometricPrompt
- Locked out of play console
- Creating an Android app for automatic background replacement with image segmentation
- Is this the proper way to implement a REST backed autocomplete?
- Few extraordinary android apps on github ?
- Graduate looking for advice on - Future of Android
- Quick Copyright question
- How can you disable selinux when building Oreo for the emulator?
- 10 Xcode improvements list from an Android Developer
- how much should i know to start building an app using android studio ?
- How Google Assistant sends personal WhatsApp message directly from google assistant?
Do you have anything to say about Scoped Storage? Google wants to hear from us. Posted: 03 Apr 2019 10:27 AM PDT
| ||
Android Developers Blog: Android Q Beta 2 update Posted: 03 Apr 2019 10:38 AM PDT
| ||
Posted: 03 Apr 2019 09:33 AM PDT Bit of history, Activities had an If you hadn't heard of this method, then it's worth remembering: you could make an object survive across configuration change of an Activity since API 1, there was a lifecycle callback for it. If you wanted an
Then Jake Wharton fought to get it undeprecated, in which case the Support Library devs realized that apparently you can just make Eventually, they still kept
Meaning "don't use this API, use retained headless fragments instead". Let us be aware of the fact that on top of retained headless fragments, they added Loaders at around 2012, also meant to "load data and keep it across configuration changes". Loaders have since then been deprecated in Android P, in favor of using ViewModels. So that brings us to "about now", because Loaders were deprecated, nobody ever talked much about retained headless fragments, nobody ever really talked about non-configuration instances either (even though the FragmentManager heavily relies on it), and ViewModels were introduced. ViewModels are persisted across configuration changes using
For some reason though, they seem to have changed the comments in the latest AndroidX:
and also
What's interesting about Does anyone know the benefit of using Android Architecture Components NOTE: I can barely wait for the following depreciations:
[link] [comments] | ||
Posted: 03 Apr 2019 10:49 AM PDT
| ||
AndroidX April release is here Posted: 03 Apr 2019 11:50 AM PDT
| ||
Real-life example of multi-module Android app Posted: 03 Apr 2019 01:25 AM PDT
| ||
WorkManager 1.0.1-rc01 and 2.0.1-rc01 now available ! Posted: 03 Apr 2019 10:24 AM PDT Two releases, for double the fun. https://developer.android.com/jetpack/androidx/releases/work#2.0.1-rc01 https://developer.android.com/jetpack/androidx/releases/work#1.0.1-rc01 [link] [comments] | ||
Does anyone know how Stetho works internally ? Could it work with Firefox dev tools ? Posted: 03 Apr 2019 06:50 AM PDT The only reason I currently have Chrome installed on my machine is cause of Stetho. We mainly just use the Network Debugging aspect of stetho, and it has been great. I'm definitely going to take time to dig into the source code to get a better understanding, but am curious to know if there's a resource out there already or if someone has some knowledge of how it works. Mainly cause I'd want to know if at all it is possible to have a similar feature work on Firefox with its devtools instead. [link] [comments] | ||
Posted: 03 Apr 2019 11:00 AM PDT
| ||
Is this the reason for endless stream of half-backed APIs, arch components, etc.? Posted: 02 Apr 2019 10:54 PM PDT Very insightful comment from Hacker News:
I always wondered why Google releases so many crappy APIs and frameworks for Android at a steady pace, but can't give us what we need. For example:
and much more. The above description seems to explain the situation pretty good. Crappy frameworks that waste everyone's resources get you promoted, but fixing soft keyboard isn't. Fixing many small bugs in AndroidStudio isn't impressive, but Project Marble sounds cool. Here is an idea: call it Keyboard Architecture Component and get it fixed -> promotion! [link] [comments] | ||
Dagger Assisted Injection - the missing piece in your Dagger setup Posted: 03 Apr 2019 02:44 PM PDT
| ||
How can I implement machine learning on an android app? Posted: 03 Apr 2019 06:28 AM PDT I started learning android development and I made a connect three game, so I thought of using machine learning to make a single player mode. how would I do this? should I use tensorflow lite? What framework would suit my needs? [link] [comments] | ||
Crashlytics - migration from fabric to Firebase. Posted: 03 Apr 2019 07:51 AM PDT Hello, I use Crashlyitcs with Fabric implementantion in my production app. When Google took over Fabric I integrated my Fabric console with Firebase console. But is it enough? I analyzed https://get.fabric.io/roadmap and it says that " We'll support Fabric until late 2019 ".Does it mean that all apps that currently use fabric API should remove it to the end of year and replace it with the new one that will appear in mid 2019? (" Complete your transition to Firebase by installing the new Crashlytics SDK, which is optimized for your new home. ") Or only fabric site will be shut down and after integrating Fabric with FirebaseConsole crashes will be normally send to firebase console without any additional changnes in android/ios app needed? Its confusing that situation is not clear because planing of relases is hard when you dont know if app will be working properly because of changing sdk and what and when exactly should be done... [link] [comments] | ||
Posted: 03 Apr 2019 10:02 AM PDT Samsung seems to have integrated their fingerprint, iris and facial recognition systems with the system BiometricPrompt in their Android P update for at least the S8, S9 and S10. Unfortunately the facial recognition support is broken if you're trying to use a CryptoObject-wrapped Signature. The resulting Signature in the onSuccess callback always throws a KeyStoreException with "Key user not authenticated" when you try to use it. Google has closed the issue reports as wont fix, and Samsung hasn't responded at all. Hopefully this can save someone else the hours of headache I had tracking this down and switching back to FingerprintManager. [link] [comments] | ||
Posted: 03 Apr 2019 02:49 PM PDT A former employee at my company created the play store account. Now none had admin access, nor the order number for developer about registration. I submitted a support twist but got no response. Does anyone have any ideas? [link] [comments] | ||
Creating an Android app for automatic background replacement with image segmentation Posted: 03 Apr 2019 10:40 AM PDT
| ||
Is this the proper way to implement a REST backed autocomplete? Posted: 03 Apr 2019 10:34 AM PDT Let me preface this by saying, my code works. I am not looking to fix a problem. I'm looking more for critique on my implementation. I'm trying to take my skills to the next level, but have no one to bounce my code off of. I am pulling some AutoComplete details from a server. In my view I have a textview that onTextChanged, fires a query to the AutoComplete server. On every letter change, there is a new RestCommunicator created. I have a feeling this isn't a good practice. But I can't seem to find any recent documentation that might help me better fix my code. Look at the searchText(string) method. This is what I feel like is wrong. For brevity, I have removed all the try/catch and other null checks from the code. I tried to paste the code here, but the formatting was horrible. Here's the pastebin [link] [comments] | ||
Few extraordinary android apps on github ? Posted: 03 Apr 2019 10:04 AM PDT Can anyone give me some project you find extra ordinary android projects on github? I'll like to study them. [link] [comments] | ||
Graduate looking for advice on - Future of Android Posted: 03 Apr 2019 12:24 PM PDT so i was here a while ago and got some great advice on which tech i should be learning if i wanted to go full into android after doing a semester of it in my final year, e.g kotlin ,jetpack, etc along with some of my own reading on firebase and dagger im in a position where i can go into android if i can find an android dev job or data engineering with java and python which there are a few more oppertunties.(i have a few interviews lined up already for java dev positions and none for android because it seems like there is none in Ireland ,Dublin unless you have 3+ years of experiance) I've been seeing youtube developers talking about how companies are heading towards developing mobile apps for both android and IOS with native web apps that use technologies like Ionic , javascript etc and i have seen a few of these kinds of jobs pop up in my area, i live in ireland so the market isnt that big unless you go into web . My question is , from your view how likely do you think that this will take over mobile app developement , i understand that google and apple invest in these platforms so its unlikely that they will die just change if anything at all, i wanted to go into mobile and android specifically to move away from web development as much as possible and stick to java , objective c and swift/kotlin A worry i have is that i dont want to do app development and then have to turn to web technologies i also hate javascript with a passion, yes i know i can just leave hardly any developer does 1 thing for their whole career thanks in advance [link] [comments] | ||
Posted: 03 Apr 2019 12:14 PM PDT Greetings, I had a game idea which takes inspiration from the current state of the "internet". Say i wanted to make a pixelated game about "Youtubers" as main protagonists. Even with changed names and figures in 16 or 32 bit i would need to use some of their characteristics, or use some of their key lines in text. I assume if you can easily understand who that character references it falls under some copyright law. Does anyone know any specifics on how far i can go? [link] [comments] | ||
How can you disable selinux when building Oreo for the emulator? Posted: 03 Apr 2019 10:24 AM PDT Background: most recent Oreo version. "lunch aosp_arm-eng". I need to boot with selinux turned off, or at least set to permissive. I've edited literally every BoardConfig.mk I could find and added Does anybody know how to get this done? Related questions:
[link] [comments] | ||
10 Xcode improvements list from an Android Developer Posted: 03 Apr 2019 02:14 AM PDT
| ||
how much should i know to start building an app using android studio ? Posted: 03 Apr 2019 08:19 AM PDT
| ||
How Google Assistant sends personal WhatsApp message directly from google assistant? Posted: 02 Apr 2019 11:58 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