Android 10 stable is live Android Dev |
- Android 10 stable is live
- Emulator 29.1.12 Stable
- Welcoming Android 10!
- It seems "solitaire" is a brand name now...
- Building the New Uber Freight App as Lists of Modular, Reusable Components
- UPDATE: Anyone else here develop using a Macbook Pro and physical phones instead of emulator? Do you have ADB issues?
- My newest hyper casual game.. I made it in about ONE MONTH and thats awesome.. HOW IT LOOKS TO YOU?.. fallin jump its released on play store now..
- Trying to submit an app to Amazon app store, but it fails because :. Can someone please tell me what to do to fix this?
- Find & Share new Android apps
- Does anyone know how Hangouts has direct share on Marshmallow? ShortcutManager is api 25+
- Becoming a Gcam Dev
- Huge drop in downloads from the past 5 days. Help?
- Good example for MVVM + AAC + Kotlin + all the other fancy new libs
- Anyone here still able to retain your application created files, after the app is uninstalled? (For app targeting Android 10)
- Android Studio cannot open mutiple projects
- New permissions regime in Android 10 - do I need to change?
- Does latest gradle update break your app?
- Android Intent | Different types of Intent in Android
- Can't think of the app name, all sound stupid, all taken?
- Convert DateTime formatting from 2015-06-26T12:04:29+10:00 to Friday 12:04pm
- Coroutines scope question
- Interview questions for client
- 10 ways Android 10 will help you
Posted: 03 Sep 2019 10:14 AM PDT
| ||
Posted: 03 Sep 2019 07:56 AM PDT | ||
Posted: 03 Sep 2019 11:08 AM PDT
| ||
It seems "solitaire" is a brand name now... Posted: 03 Sep 2019 12:25 PM PDT
| ||
Building the New Uber Freight App as Lists of Modular, Reusable Components Posted: 02 Sep 2019 11:03 PM PDT
| ||
Posted: 03 Sep 2019 01:04 PM PDT Original post: https://www.reddit.com/r/androiddev/comments/cggqsn/anyone_else_here_develop_using_a_macbook_pro_and/ So after a lot of troubleshooting, I have found my issue. The chrome://inspect tab makes the issue happen within 15 to 20 minutes. If I don't use that (not even open the tab), I can go for days without an issue, no idea how long because I finally had to use chrome://inspect after 5 days of not using it and sure enough 20 minutes later the issue happened. So I was wondering if anyone else can reproduce this issue? and if they have any suggestions? [link] [comments] | ||
Posted: 03 Sep 2019 06:17 AM PDT
| ||
Posted: 02 Sep 2019 09:39 PM PDT
| ||
Posted: 03 Sep 2019 04:26 PM PDT
| ||
Does anyone know how Hangouts has direct share on Marshmallow? ShortcutManager is api 25+ Posted: 02 Sep 2019 07:52 PM PDT
| ||
Posted: 03 Sep 2019 01:55 PM PDT Hi, [link] [comments] | ||
Huge drop in downloads from the past 5 days. Help? Posted: 03 Sep 2019 09:47 AM PDT Hello Friends, [link] [comments] | ||
Good example for MVVM + AAC + Kotlin + all the other fancy new libs Posted: 03 Sep 2019 12:56 AM PDT I'm looking for good examples of applications using all the fancy new libraries (MVVM, AAC, Room, LiveData, Kotlin, Coroutine, ...) I've been using the Teammate app and the GitHub browser from AAC examples as references but I think I would make good use of other examples as the GitHub browser example is a bit limited and the Teammate app isn't wrote in Kotlin and may be a bit complex to start with. [link] [comments] | ||
Posted: 03 Sep 2019 12:19 PM PDT Previously, we can use Environment.getExternalStorageDirectory, to backup, and retain user's SQLite file, image file, audio file, ... , even the app is uninstalled. This provides a great experience for users, if they uninstall, then decide to re-install back our app, and notice that their previous backup data is still there. But, great power comes with great responsibility. Google decides to take back the great power from great dev like us :) https://developer.android.com/training/data-storage/files/external-scoped We have strong desire to terminate this great feature (Retain user backup files even the app is uninstalled), as we don't feel we want to fight the system. But, before we give up, I would like to check, anyone here has successful, retain your application created files, after the app is uninstalled? (For app targeting Android 10) If we can hear some success cases, we might want to try to fight till the last blood :) [link] [comments] | ||
Android Studio cannot open mutiple projects Posted: 03 Sep 2019 12:16 PM PDT I have multiple projects referencing same library modules. Each project I use settings.gradle file, the libraries are in different folder, not same as the app folder. If I open 2 or more different projects one of them will not compile. To switch I have to close then, invalidate cache and delete some .iml file, or delete the .idea folder, then restart Android Studio. I've been doing this for over a year. I remember I think AS 2 it was possible to open 2 projects that reference same local libraries. I'm I referencing them wrong? [link] [comments] | ||
New permissions regime in Android 10 - do I need to change? Posted: 03 Sep 2019 11:44 AM PDT I notice that in Android 10, users get the option when allowing location access, of only allowing that access while the app is active. Which certainly seems like a good idea. But my question is, as my apps already have location permission granted by users who have them installed, do I need to do anything specific to handle this for existing installs, as opposed to new ones? [link] [comments] | ||
Does latest gradle update break your app? Posted: 03 Sep 2019 11:37 AM PDT I tried to update to latest gradle - com.android.tools.build:gradle:3.5.0 My app is MultiDexApplication. If I turn on proguard and execute, I would get the following runtime exception Caused by: java.lang.ClassNotFoundException: Didn't find class "androidx.multidex.MultiDexApplication" on path: DexPathList[[zip file "/data/app/com.yocto.wenote-oP32bWkphtbj3M5ccDAcRw==/base.apk"],nativeLibraryDirectories=[/data/app/com.yocto.wenote-oP32bWkphtbj3M5ccDAcRw==/lib/arm64, /system/lib64, /system/vendor/lib64]] The detail of the crash is at https://gist.github.com/yccheok/97622dcf6e644741cbd9df8a3333a131 Are you facing the same issue too? As, I don't have such issue, when using gradle-5.1.1-all.zip and com.android.tools.build:gradle:3.4.2 [link] [comments] | ||
Android Intent | Different types of Intent in Android Posted: 03 Sep 2019 10:36 AM PDT
| ||
Can't think of the app name, all sound stupid, all taken? Posted: 02 Sep 2019 05:12 PM PDT
| ||
Convert DateTime formatting from 2015-06-26T12:04:29+10:00 to Friday 12:04pm Posted: 03 Sep 2019 08:49 AM PDT I'm getting data in this format: 2015-06-26T12:04:29+10:00 and want to convert it to this format: Friday 12:04pm. I'm getting this data from an API [link] [comments] | ||
Posted: 02 Sep 2019 11:40 PM PDT Hi - I keep reading that we should almost never use the GlobalScope parameter to launch anything. What is the recommended way to launch an async coroutine that is not associated to an activity? For example, my app posts analytics to my servers every few minutes. During that time multiple activities are created and destroyed, often while the coroutine is running. [link] [comments] | ||
Interview questions for client Posted: 03 Sep 2019 08:03 AM PDT Almost all posts are about what the hiring company is going to ask you but what about the other way round? What would you ask to find out if the company is somewhere you want to work, that their processes aren't a pile of poo that will give sleepless nights dealing with a legacy codebase you have no time to improve and are forced to make hack on hack and no tests. [link] [comments] | ||
10 ways Android 10 will help you Posted: 03 Sep 2019 11:06 AM 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