Android Dev - Google Code Scanner - Scan QR/Barcodes from the apps without the camera permission - Google I/O 2022 |
- Google Code Scanner - Scan QR/Barcodes from the apps without the camera permission - Google I/O 2022
- Horologist is a group of libraries that aim to supplement Wear OS developers with features that are commonly required by developers but not yet available.
- TargetSdkVersion 34 will replace `onBackPressed()` with the newly added OnBackInvokedCallback in Android 13, and `onBackPressed()` + `KEYCODE_BACK` will stop working
- New Firebase extensions for building and managing in-app purchases
- [Help] UseCases with Hotstreams
- Questions about Dependency Injection from a Beginner
- What's new in Jetpack Compose
- ASO Tips And Tricks, Please? [NEWBIE][2022]
- Integrate Lucene in android app for offline full-text search
- Final Reminder: Mega Online Drive for Android Developers 2022
- How do you contact Google's Policy support team about an app suspension?
- I am an Android Developer residing in SouthEast Asia, currently applying for remote jobs in Europe and North America. Can you provide some feedback on my resume?
- Sharing URL using NFC
- Filtering a recyclerview/Livedata list part 2 (Help)
- Android code guidelines
- Why do some source codes look so complicated & feel like it can be done in a simple way?
- Since upgrading Android Studio to chipmunk, wireless debugging won't connect..
- New Features in Android Studio Electric Eel
- 13 Things to know for Android developers at Google I/O!
- When to download data needed for my app to run?
- Looking for in-app chat tutorials or SDK
- State in Jetpack Compose workshop
- Build was configured to prefer settings repositories over project repositories but repository 'MavenRepo' was added by build file 'app/build.gradle' --problem in Android Studio
- Android Studio Electric Eel Canary 1 now available
- navigation destination "route" is not a direct child of this NavGraph when add startDestination parameter.
Google Code Scanner - Scan QR/Barcodes from the apps without the camera permission - Google I/O 2022 Posted: 11 May 2022 11:40 PM PDT
| ||
Posted: 12 May 2022 08:18 AM PDT
| ||
Posted: 12 May 2022 02:00 AM PDT
| ||
New Firebase extensions for building and managing in-app purchases Posted: 12 May 2022 08:27 AM PDT
| ||
[Help] UseCases with Hotstreams Posted: 12 May 2022 11:55 AM PDT Hi Devs, I started learning about use cases and I do like them. While playing with them, I am facing an issue to decide how to provide hot streams when using usecases. What It feels wrong here, is that I am returning a hot stream whether I expect use cases always to return once (a failure or success) result. Now, I am interested to collect|observe always to that data not only once. But I am not sure about this one though. Now, the question is, how would you deal with such situation? [link] [comments] | ||
Questions about Dependency Injection from a Beginner Posted: 12 May 2022 08:07 AM PDT I am new to android, so now i started learning about Dependency Injection. I see how providing dependencies in a constructor, instead of creating them inside a class, can make class more reusable, modular, and easier to test. But it also adds a problem: you have to provide dependencies by hand every time you need to use that class. And in majority of cases, dependencies don't change, so you end up with a lot of duplicate code. DI frameworks, or container may solve this problem, but it adds complexity. What if you define default values of dependencies in a constructor, to the ones that are used most commonly, and then redefine the values, only when you need to change dependencies, when creating the object? That way, you get the ability to set your own dependencies, and avoid duplicate code. For example, let's use Car and Engine classes: class Engine(){ fun start(){println("Starting engine!")}} // 1. Without DI class Car(){ private val engine = Engine() fun start() = engine.start() } val car = Car() car.start() //"Starting engine!" //2. With DI class Car(val engine: Engine){ fun start() = engine.start() } val engine = Engine() val car = Car(engine) car.start() //"Starting engine!" //3. DI with default values for parameters class Car(val engine: Engine = Engine()){ fun start() = engine.start() } val engine = Engine() val car = Car(engine) car.start() //or val car = Car() car.start() //4. Default values for parameters in case the variable must be lateinit, for example if the object must be created inside a onCreate() method in activity. class Car(val cEngine: Engine? = null){ lateinit var engine: Engine //cannot be set inside constructor because it is lateinit. lateinit is needed because it is initialized inside a method init{onCreate()} // Activity itself calls this method automatically fun onCreate() { // Method like in activity. engine = cEngine ?: Engine()} fun start() = engine.start() } val engine = Engine() val car = Car(engine) car.start() //or val car = Car() car.start() What do you guys think about this approach to Dependency Injection? I realize that for very big projects, with multiple developers, i would need to learn a DI framework. But for small personal project, is it good, or bad? Why? [link] [comments] | ||
Posted: 11 May 2022 01:52 PM PDT
| ||
ASO Tips And Tricks, Please? [NEWBIE][2022] Posted: 12 May 2022 05:16 AM PDT Hello guys, My first app got play store approval, and I am pleased. I did a little research about ASO. and tried to do my best to optimize it properly. I have used tools like sensor tower, app Annie and app tweak for generating a proper ASO-friendly app title and description. And I did eye-catching app thumbnails and screenshots as well. But other than that, what can I do to improve my ASO performance? [link] [comments] | ||
Integrate Lucene in android app for offline full-text search Posted: 12 May 2022 10:43 AM PDT Good day everyone, I need some advise. I want to develop an app ( a legal app for law practitioners), which would need to store thousands of files ( pdf, html) locally, and be able to parse these thousands of files and perform full-text search. Then users will be able to search for key words ( e.g rape, murder, theft etc ) and get results for all the files containing these key words. To be honest I want to use React native to develop this app. I know this isn't the appropriate sub-Reddit for this post, but I'm really at wits-end here and haven't gotten much headway. I was advised to use Apache Lucene for this, but I'm not so familiar with Java nor native android development to figure out how to actually integrate it with my app. I was thinking that if I could somehow integrate Lucene into my app, then I would be able to use react native's NativeModule system to expose instances of native code ( Lucene's Java implementation) to JavaScript as JS objects which would allow me to execute native code from within JS. Please pardon me if I didn't really explain my problem so well. [link] [comments] | ||
Final Reminder: Mega Online Drive for Android Developers 2022 Posted: 12 May 2022 06:18 AM PDT
| ||
How do you contact Google's Policy support team about an app suspension? Posted: 12 May 2022 05:52 AM PDT I made a post earlier about my Tetris-clone game being suspended by a DMCA takedown and receiving a strike against my account. As I said I didn't even know that Tetris-type of gameplay was copyrighted. What I want to do now is contact Google and ask them if I can update the app to be compliant so I can remove the strike. I tried both Email and Chat and they both tell me they cannot help and that I should contact the "Policy support team" instead. How do I contact them? Google's links only lead to the appeals page. [link] [comments] | ||
Posted: 11 May 2022 09:39 AM PDT
| ||
Posted: 12 May 2022 03:07 AM PDT Do anyone know how to make my android devices shares a URL link when other android devices scan using NFC when it approach to my apps? Thanks in advance. [link] [comments] | ||
Filtering a recyclerview/Livedata list part 2 (Help) Posted: 12 May 2022 07:27 AM PDT So I thought I figured it out but unfortunately I've been struggling with it for the past 2 days. Could someone please help me understand what I'm doing wrong here??? I'm trying to filter the list based on the seasons, so it would only show characters from the specific season chosen. Any help would be appreciated! [link] [comments] | ||
Posted: 12 May 2022 06:23 AM PDT Hi everyone what is the best #Android code guideline that you know? For naming android components, resources, kotlin language, graddle, quote marks, etc... [link] [comments] | ||
Why do some source codes look so complicated & feel like it can be done in a simple way? Posted: 12 May 2022 12:19 AM PDT An example Lots of base classes for activity, fragment, view model etc. Is it really need to be done that way? [link] [comments] | ||
Since upgrading Android Studio to chipmunk, wireless debugging won't connect.. Posted: 12 May 2022 12:16 AM PDT Anyone facing the same issue? Did you manage to fix it? [link] [comments] | ||
New Features in Android Studio Electric Eel Posted: 11 May 2022 12:10 PM PDT
| ||
13 Things to know for Android developers at Google I/O! Posted: 11 May 2022 04:16 PM PDT
| ||
When to download data needed for my app to run? Posted: 12 May 2022 04:49 AM PDT Basically I need to download data, which I will store in Database and my app will then do stuff with this data. I already created Worker class to download it and store it, but I have no idea when to run doWork(). [link] [comments] | ||
Looking for in-app chat tutorials or SDK Posted: 12 May 2022 04:40 AM PDT Looking to add in-app chat between users. What's a good and cheap SDK? I looked at https://www.androidhive.info/2014/10/android-building-group-chat-app-using-sockets-part-1/ and wondering if this is still mostly relevant. Thanks in advance [link] [comments] | ||
State in Jetpack Compose workshop Posted: 11 May 2022 02:37 PM PDT
| ||
Posted: 12 May 2022 02:43 AM PDT
| ||
Android Studio Electric Eel Canary 1 now available Posted: 11 May 2022 10:58 AM PDT | ||
Posted: 12 May 2022 02:01 AM PDT Hello, everyone. I am doing a project that need a function that: open the app intent through nfc tag. According to the NDEF message to open compose. Every is alright when I set startDestination without parameter like "TestScreen" and is fine when I call navController.navigate(route = TestScreen?number=5) too. but when I set startDestination as "TestScreen?number=5" it will show "navigation destination "route" is not a direct child of this NavGraph" which means the compose isn't in the NavHost. Following is my code. Is setting startDestination with parameter is wrong? Or maybe there are some mistakes I made? Thanks everyone to read. [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