Android Dev - Sentry’s Android Gradle Plugin Updated with Room Support and More |
- Sentry’s Android Gradle Plugin Updated with Room Support and More
- Feedback on an app I recently made
- How to stop network call when navigating back in jetpack compose?
- Kotlin Illustrated Guide - Collections: Lists and Sets
- question about freelance opportunities.
- Can I post my Unreal Engine blueprints game video here?
- Twitter going all in on Jetpack Compose for feature development: greater productivity, less bugs
- Good/Must read for library developer
- Is it possible to create background services in python or ruby?
- Is it possible to run Fastlane Commands in onCreate?
- Is there anyway the navigation View inflation can be called on inflatation early?
- Android Room with a View - Java has the database operate on the main thread
- How much money have you made on your solo self-made apps?
- Looking for Android dev course
- Did anyone figure out a way to display a custom toast at the top with compose?
- Using C/C++ based libraries in an android application
- android studio emulator keeps closing app?
- Thread 'Android Init (second_stage error!!!!)'
- Making a thumb to follow my progress in ProgressBar
- Wait for Worker to finish?
- Full Description
- design for many devices
- I'm starting a tester career and want to learn about Android-specific tests.
- Anyone integrated Google Play billing system with Real-Time Developer Notifications? I am looking for server-side code samples in Java.
Sentry’s Android Gradle Plugin Updated with Room Support and More Posted: 20 Apr 2022 11:00 AM PDT
| ||
Feedback on an app I recently made Posted: 20 Apr 2022 06:16 AM PDT Hello, I am learning android development and recently made this app that recognizes a sudoku puzzle from an image and solves it. Thought getting some feedback from people more experimented than me would help me improve. Thanks! [link] [comments] | ||
How to stop network call when navigating back in jetpack compose? Posted: 20 Apr 2022 06:57 AM PDT I am facing issue similiar to this : https://stackoverflow.com/questions/71709789/compose-side-effects-jetpack-navigation-onbackpressed-stuck-navigation I am using two screens - ResultScreen and DetailScreen and a sharedViewModel to pass shared parameter.When I navigate back to result screen from DetailScreen, Network call is made again despite no change in state. I don't want it to make calls again and again! How can I solve this? For better context, these are the ResultScreen.kt and DetailScreen.kt: DetailScreen.kt ``` @ExperimentalCoilApi @Composable fun DetailScreen(sharedViewModel: SharedViewModel) { val business = sharedViewModel.business } @Composable fun DetailRow( descriptor: String, description: String ) { Row( modifier = Modifier .fillMaxWidth() .wrapContentHeight() .padding(vertical = 8.dp), horizontalArrangement = Arrangement.SpaceBetween, verticalAlignment = Alignment.CenterVertically ) { Text(text = descriptor) Text(text = description) } } ``` ResultScreen.kt ``` @Composable fun ResultScreen( searchViewModel: SearchWidgetViewModel, resultViewModel: ResultViewModel, sharedViewModel: SharedViewModel, navController: NavHostController ) { //val status by resultViewModel.status.observeAsState(YelpApiStatus.DONE) val status by resultViewModel.status val queryState by searchViewModel.queryState LaunchedEffect(key1 = queryState) { resultViewModel.getBusiness(queryState) } } ``` [link] [comments] | ||
Kotlin Illustrated Guide - Collections: Lists and Sets Posted: 20 Apr 2022 09:15 AM PDT
| ||
question about freelance opportunities. Posted: 20 Apr 2022 10:19 AM PDT Hello everyone, I hope you are all doing great. I am an English teacher, however, I have some free tie, which I want to use to learn a profitable skill. A skill that I can use to make money from home in my free time. You might have put together my question. Can I learn app development, from home and make money online? Do I need any certificates? what are the job opportunities? and any tips? [link] [comments] | ||
Can I post my Unreal Engine blueprints game video here? Posted: 20 Apr 2022 01:33 PM PDT Hi, I saw one of the rules is that I can't post my app/game without source code. I use blueprints. I'm not sure what that means, having to post the source code. Since there are many different blueprints. I'm still kind of new...ish to game development. Can I just post the video? [link] [comments] | ||
Twitter going all in on Jetpack Compose for feature development: greater productivity, less bugs Posted: 19 Apr 2022 04:17 PM PDT
| ||
Good/Must read for library developer Posted: 20 Apr 2022 06:27 AM PDT Hey all. I've recently started looking into developing an android library. This topic seems more nuanced and would love to have a good resource to use as a guide. It can be a book, post or video. Any recommendations are appreciated! [link] [comments] | ||
Is it possible to create background services in python or ruby? Posted: 20 Apr 2022 02:33 PM PDT Doesnt have to be specifically in python and ruby but i would rather use anything but Java or C# to make something so small. I can use java but im alot more confident with python and ruby. The idea is that i want to make a small script that will get the location and front camera of my phone if it was stolen. The idea is that my phone will try to make a connection to my server every 15 mins and if the connection is successful then i get everything i need to know about the phone. Idc if there are already stuff like this that exists, i want to make it myself. Any help will be appreciated, thanks Edit: also android phones are just linux devices right? surely i can put the interpreter inside my phone but how would i access the camera and location? [link] [comments] | ||
Is it possible to run Fastlane Commands in onCreate? Posted: 20 Apr 2022 10:45 AM PDT I asked on StackOverflow without much traction (I know it says I asked today - I deleted and undeleted the post). I'm actually not even sure if it's possible to run these commands. The project does have a Fastfile in the project, but I'm pretty unfamiliar with executing terminal commands using the app. Long-term: The goal would be to add a button that would run a fastlane command to download a brand file for a customer. [link] [comments] | ||
Is there anyway the navigation View inflation can be called on inflatation early? Posted: 20 Apr 2022 03:35 AM PDT
| ||
Android Room with a View - Java has the database operate on the main thread Posted: 20 Apr 2022 01:00 PM PDT https://github.com/googlecodelabs/android-room-with-a-view/tree/master Usually you can not run the database on the main thread, unless you use the . allowMainThreadQueries() This codebase doesnt use that function and still somehow runs the database on the main thread without error. How? [link] [comments] | ||
How much money have you made on your solo self-made apps? Posted: 19 Apr 2022 02:01 PM PDT | ||
Looking for Android dev course Posted: 20 Apr 2022 08:25 AM PDT Hello, I'm sorry if this is the wrong subreddit I'm trying to enhance my skills in android development (java). I'm looking for a course paid or free I don't care as long as it is professional. I want to learn how to develop a complete ecommerce app, I've been looking for a course related to that for days but unfortunately, I couldn't find one I'd really appreciated it if you guys can recommend a course about developping ecommcer app in java thank you in advance. [link] [comments] | ||
Did anyone figure out a way to display a custom toast at the top with compose? Posted: 20 Apr 2022 07:47 AM PDT My work wants me to display sort of like a custom toast/snack bar type thing (looks more like a custom notification) in the top of a view that also has a bottom sheet modal open. I tried creating a custom view to match the design they wanted, but it would be behind the modal skrim. And it's sort of ghetto to do it this way because it's hard to control positioning of the view and then hide it once x seconds are up. I want it to behave exactly like a toast would, just with a custom view and at the top of the screen. Did anyone figure out a way to display some sort of custom toast/notification object at the top of the screen? I see regular toast is deprecated. I am specifically asking about compose. Not xml. Wondering if I could look at the snack-bar code for compose and copy if and tweak some things there. Maybe there is an easier way? [link] [comments] | ||
Using C/C++ based libraries in an android application Posted: 20 Apr 2022 03:11 AM PDT I discovered the Speech Rate Meter project on github however it's written in C++ and the official website doesn't have any pointers. I was wondering if anyone has ever added it to their android app or already did the same thing before? How can I use it ? [link] [comments] | ||
android studio emulator keeps closing app? Posted: 20 Apr 2022 06:57 AM PDT hey, just getting started into programming and app development and had a question, every time i try to launch my app (which is very very basic) in android studio with the emulator it just force closes, if i do it multiple times i get an error that the app has stopped responding [link] [comments] | ||
Thread 'Android Init (second_stage error!!!!)' Posted: 20 Apr 2022 10:33 AM PDT
| ||
Making a thumb to follow my progress in ProgressBar Posted: 20 Apr 2022 06:12 AM PDT Hello i have ProgressBar and i need to make that thumb follow my progress in ProgressBar. Now i managed to do this ,and works fine, but then when i start my app in different phones my thumb is far behind or far upfront of progress. this is my code, and i hope somebody can help:
[link] [comments] | ||
Posted: 20 Apr 2022 05:43 AM PDT Hi, I have a moderately long-running process (a minute or two) that I'm running as a Worker. How can I start the Worker, then wait for it to complete, blocking the current thread (not the UI thread) until it finishes? [link] [comments] | ||
Posted: 20 Apr 2022 05:05 AM PDT This is too much of a noobie question but I'm not sure how it's done so reply back with a few examples if you could... How do you customize the full description of your app in store listing with colors, bulletin and other markup styles ? [link] [comments] | ||
Posted: 20 Apr 2022 04:11 AM PDT I am working on an application and I want to have a design for most smartphones. I want to have a static background image and I use Constraint layout in percentage to make it possible for every smartphone. But when I need the keyboard, it overlaps the bottom of the activity and the user can't use the stuff behind the keyboard. Does anyone have a solution for that or an idea how to have a design with a fixed background and a layout with percentage? [link] [comments] | ||
I'm starting a tester career and want to learn about Android-specific tests. Posted: 19 Apr 2022 02:16 PM PDT Hi everybody! I want to be a QA tester. I will be honest with you here and say that I plan to start a career in the IT industry, but I'm hoping for an easy start that will require no diploma or extensive training. I know that millions of young people think the same way, creating higher competition in the field. But then again, a few hundred websites are being developed every minute, which explains the demand for qa testing specialists. There's an offer for an automated testing position in a web application company that I'd like to apply for. Yet I need some general advice regarding the kind of tests I will be asked about at the interview. I have a comprehensive understanding of IT systems and HTML/CSS. I can also perform some scripting/coding. I don't know what specific tests are required for applications running on Android software, though. I've found out that running tests on Java VM is not usually done for Android tests because it is impossible to imitate the tests' functionality by copying its frameworks. In fact, the company that I've mentioned specifies in qa software testing services. They do their manual testing using Android Instrumentation Tests, which is something I'm not much familiar with. How easy would it be to learn these specific tests? Also, is it a common practice not to have an in-office QA tester but use crowdsourcing testing? I've heard a lot about how effective this later type of testing is. If so, is it a thread for QA testers? Does that mean I have to look for a job on one of the platforms that offer a mixture of crowd testing and intelligent automation? [link] [comments] | ||
Posted: 20 Apr 2022 02:25 AM PDT I am integrating Google Play billing system in some of my apps. I want my server to receive Real-time Developer Notifications on which I will poll Google Play Developer API for extra details. I followed all instructions from here, connected everything and I am able to receive a Pub/Sub test notification from Google Play Console. The app part is done too, so I can start testing subscription workflow from it. However, I am not able to find a clear (java) code samples what to do with Pub/Sub push messages on server side once they are received. How to open and process them, how to query Google Play Developer API, process those results, what to take care of. I found only API reference, and trying to figure out everything from there will take me a lot of time and the final outcome might have hidden flows/errors. If it makes any difference, the server is running on Google App Engine. Thanks in advance! [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