Android Dev - Anyone tried the M1 Pro/Max with AS yet? |
- Anyone tried the M1 Pro/Max with AS yet?
- FastKV - A better KV storage component
- What kind of information do you log in Crashlytics and Analytics?
- How to use google_ml_kit with flutter for on device translation
- Location Updates with BroadcastReceiver pitfall
- Hey guys basic java/android question (inside a react native app)
- Android gestures
- How can I start my animation (objectAnimator) with the modified values from a ValueAnimator? (JAVA / XML)
- My interview with Repeato about their Android no-code UI testing platform at Droidcon Berlin 2021.
- Understanding android documentation
- Google Play developer account got terminated because span multiple account registrations, can i transfer my apps to another account?
- Gadget - A library to make analytics event tracking more easier and reliable
- Inflate fragment inside InputMethodService
- input validation
- Can you guys help me with understanding contexts?
Anyone tried the M1 Pro/Max with AS yet? Posted: 27 Oct 2021 03:57 AM PDT | |||||||||||||||
FastKV - A better KV storage component Posted: 26 Oct 2021 07:14 PM PDT FastKV is an efficient and reliable key-value storage component written with Java. It can be used on platforms with JVM environment such as Android. 1. Features
2. Getting Start
FastKV had been publish to Maven Central:
Initialization is optional. You could set log callback and executor as needed. It is recommended to pass in your own thread pool to reuse threads. The log interface provides three levels of callbacks.
Basic case: Sava custom object: In addition to supporting basic types, FastKV also supports writing objects. You only need to pass in the encoder of the object when building FastKV instances. The encoder is an object that implements FastKV.Encoder. For example, the implementation of LongListEncoder like this: Encoding objects needs serialization/deserialization. Here recommend my serialization project: https://github.com/BillyWei01/Packable
Comparing with common case, Android platform has SharePreferences API and support Kotlin. See: Android Case 3. Benchmark
Result:
Project link: https://github.com/BillyWei01/FastKV [link] [comments] | |||||||||||||||
What kind of information do you log in Crashlytics and Analytics? Posted: 27 Oct 2021 02:27 AM PDT I would like to log more information to Crashlytics and Analytics to monitor my apps, for example to help me reproduce crashes or see what functionalities are the most used. The truth is I have been thinking about it for a long time but have no idea how to get started. Technically it seems easy but I have no idea what information would be the most relevant. Maybe I can implement some "low level solution" like logging the label of every button the user click (along with the name of the screen) so I can easily follow the exact workflow they followed to reproduce a bug they encountered. How did you do it? Have you found good documentation on this topic? [link] [comments] | |||||||||||||||
How to use google_ml_kit with flutter for on device translation Posted: 27 Oct 2021 02:39 AM PDT
| |||||||||||||||
Location Updates with BroadcastReceiver pitfall Posted: 26 Oct 2021 09:22 PM PDT | |||||||||||||||
Hey guys basic java/android question (inside a react native app) Posted: 27 Oct 2021 07:47 AM PDT So, on the react native side I press a button and it's supposed to send a request to my server (using java code, not javascript), and that server response should be sent back to the VS code javascript file. On button press, I execute these two functions in react native, from my custom module: And these are the two @ React Methods that I'm trying to execute. But the problem is on the very first time I press the button, the response string is null. This is how the module is setup: What do you guys think the problem is? Is it because returnServerResponse() is executed synchronously, and therefore, will be null, because it doesn't wait for sendVolleyRequest()? Secondly, can anyone point me on how to write asynchronous methods, or any ideas how to resolve this problem? Not sure what to do. Thank you! Should I use threading here or something? I'm still a little new to Java. [link] [comments] | |||||||||||||||
Posted: 27 Oct 2021 07:25 AM PDT Hi everyone :-) I'd like to ask you if you know a good source for gesture overview in Android. I am still figuring out if it's up to he device brand (like Samsung or Xiaomi...) or it is just driven by Android itself. It's easy for IoS since there is this nice overview: https://developer.apple.com/design/human-interface-guidelines/ios/user-interaction/gestures/ I am searching for something similar for Android. You have some advice? :) [link] [comments] | |||||||||||||||
Posted: 27 Oct 2021 04:21 AM PDT The changes are working perfectly if I test them with an Log.d, but I want to affect them on my animation (maybe with save them in the preferences?). Because my animation (animation2) starts, but with the standard values of the XML, not the "updated" / temporarily edited values (from pivotX). Please visit my question. I hope someone can help me. Thanks in advance! [link] [comments] | |||||||||||||||
My interview with Repeato about their Android no-code UI testing platform at Droidcon Berlin 2021. Posted: 27 Oct 2021 02:15 AM PDT
| |||||||||||||||
Understanding android documentation Posted: 27 Oct 2021 01:15 AM PDT Hey guys I find it really tough to understand android official dicumentation.I dont find relevant code example most of the time on official documentation.Can someone guide me how shall I start with documentation so it would get much easier for me to understand most of the stuff on it to an extent that i can make my own code sample from the android documentation's site? [link] [comments] | |||||||||||||||
Posted: 26 Oct 2021 07:35 PM PDT Hi everyone, I am an android developer, On 21th Oct 2021 my Google Play developer account got terminated because span multiple account registrations. It's because I'm logging in on the same device, and I read on several forums, they said that my account could not be recovered. My question is, can I restore my app and transfer it to another account? because I see in the email it's not an app suspend issue. And secondly, what about the remaining balance in your Google Pay account? will they pay it next month even though my account has been terminated? Thanks [link] [comments] | |||||||||||||||
Gadget - A library to make analytics event tracking more easier and reliable Posted: 26 Oct 2021 09:25 AM PDT
| |||||||||||||||
Inflate fragment inside InputMethodService Posted: 26 Oct 2021 02:39 PM PDT There is a way to inflate a fragment inside a input method service? Can we access, somehow, an instance of supporFragmentManager inside InputMethodService classes? [link] [comments] | |||||||||||||||
Posted: 26 Oct 2021 01:18 PM PDT what is the best/clean approach to implement input validation in android for multiple fields [link] [comments] | |||||||||||||||
Can you guys help me with understanding contexts? Posted: 26 Oct 2021 12:45 PM PDT I'm pretty new to android dev. Java in general. I got volley working. And I'm trying to write this request, but I'm confused about what I should put for the context. Android seems to have a million different contexts. Then there's also react application context. Since this a react-native app and a custom module so I have it set up this way: So which context would it be, and how would I find it? The this keyword doesn't work, it's just an error. This might refering to the CustomModule class itself I believe rather than something that subs or implements the context interface. Can anyone explain where this context operates from or is located? Instead, it seems like it's just floating out there some where in the aether. Any ideas? [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