A categorized list of all Java and JVM features since JDK 8 to 15 (aka what Android is missing out) Android Dev |
- A categorized list of all Java and JVM features since JDK 8 to 15 (aka what Android is missing out)
- Personalized Ad preferences
- I couldn't become an android developer on my first job :(
- Is this app enough for fresher position ?
- AVD - Boot into setup wizard (welcome screen)
- Guided Projects For Beginner Students
- I need a list similar to this in my app (Items in grid list with pagination). I don't even know what to search to find a solution. Is there a way to properly implement these kind of lists
- Face ID vs Fingerprint
- FCM notification message or data message, that is the question.
- What do you think of Jetpack Compose?
- Editing merged AndroidManifest.xml file as part of the build
- Real Estate App with MVVM, dynamic feature modules, Dagger Hilt, RxJava3 + Coroutines Flow, Room offline-first and many-to-many, SavedStateHandle, Concat Adapter, tests with kotlin DSL and static code Analysis, and soon AR. https://github.com/SmartToolFactory/PropertyFindAR
- Android app performance analysis
- Can non-UI threads update the UI?
- Something I created in a uni course -- Spectrum - An easy to use frequency and amplitude spectrum analyzer with room frequency response capabilities!
- Where to view the source of Jetpack compose?
- #3 Floating Windows on Android: Permissions
- OS UI language English but Different language voice input? Possible?
- App builder plans?
- Po*n Filter app got stopped when I'm leaving ULTRA SAVING MODE of Android: Help me please getting rid of po*n!
A categorized list of all Java and JVM features since JDK 8 to 15 (aka what Android is missing out) Posted: 29 Sep 2020 11:19 PM PDT
| ||
Posted: 30 Sep 2020 04:11 PM PDT Hey fellow developers, I am currently developing my first App and want to place a rewarded video ad to get an extra life in the game. I have already implemented the ad, but how do I implement the question if the user wants personalized ads or not when the app is opened the first time and how do I safe those preferences for the next time the app is opened? Thanks for your help! [link] [comments] | ||
I couldn't become an android developer on my first job :( Posted: 30 Sep 2020 02:20 PM PDT To give some backstory I'm a new grad who graduated in may of this year who has been looking for an android dev job since then. I've done 3 internships so far in college and in my 2nd one I came to love android dev when that was my given tech stack. I wanted to branch out and try to fullstack in my 3rd internship and came to realize that wasn't for me. When it was time to look for jobs in my senior year covid happened and I legit could barely find anyone hiring let alone interviewing for android jobs. Recently I just got hired at a company that was a generally software engineer position. I told my recruiter that I really was looking for mobile dev and if possible android however after accepting the offer they finally told me what my day to day dev work is and its sadly not mobile dev (its java springwork/microservices). To say I'm not bummed out would be an understatement. I only took this job offer honestly cause I couldn't find anywork for 5 months and I need to make money somehow. Sadly I'm worried how hard it'd be for me to apply for android roles in the future when they start asking for years of android experience. I don't want to be pigeonholed into doing dev work I'm not passionate about. [link] [comments] | ||
Is this app enough for fresher position ? Posted: 30 Sep 2020 04:33 PM PDT Hi developers , i made an app of type buy&sell stuffs , is it enough as portfolio fresher ? THE APP ( didn't finished it yet :) ): you can post new products and search for products (by country location) and also you can chat with people about the products using firestore ! [link] [comments] | ||
AVD - Boot into setup wizard (welcome screen) Posted: 30 Sep 2020 04:29 PM PDT Hi, Is is possible to boot into the setup wizard of Android? I don't want that the AVD gets automatically configured, I want to go through the setup wizard manually. Would be nice if somebody could help me! :) [link] [comments] | ||
Guided Projects For Beginner Students Posted: 30 Sep 2020 03:17 PM PDT I'm a really "hands on" learner. I need to have the pieces in front of me and watch as they're put together so I can mimic the motions and figure out how everything goes together. So, as I'm going through the Udacity Android course, the one Google has on their Android dev site, I'm really put off by how "hands off" it is. The first two lessons are great as they lead you through projects and build them from scratch. the rest of them , though, are far more conceptual and more so talk at you instead of guide, I find. Are there any courses or resources that are project heavy and sort of teach as they build? It's that middle ground between "college lecture" and "jump in the deep end" I'm trying to find and it's seems harder than I thought it would be. Thanks in advance. [link] [comments] | ||
Posted: 30 Sep 2020 07:47 AM PDT
| ||
Posted: 30 Sep 2020 02:55 AM PDT I'm using biometric prompt to authenticate users, the app is always using fingerprint, but I would like my users can choose between Face ID or Fingerprint. How can I get this if it's possible? [link] [comments] | ||
FCM notification message or data message, that is the question. Posted: 30 Sep 2020 09:45 AM PDT From start, I would like to notice that this question focuses on your personal opinion and experience. The challenge: Let's say we build the social networking app, where people can add friends, post photos on their timeline and later tag themselves on these photos. The feature I would like to discuss are notifications - e.g. user should be notified when someone tagged him/her on a new photo and after clicking on the notification, app should automatically navigate to special tab with all notifications in one place. This pattern is very popular, we can compare such with Reddit or Twitter. Now from the technical point of view, when other user tags me on a photo, the backend saves the details and sends the notification about new event to my device through the FCM. Ideally, the app should refresh all notifications that are displayed in a special tab in background, so when I click on notification it navigates me a view with fresh data. We have 2 options: 1. We can send notification message to specific device (using token or topic) and add data payload with event name (e.g. SOMEONE_TAGGED_YOU) so the app would intercept this information in splash screen after user clicks on a notification. Then we can start refreshing data (it may be a little bit to late) and navigate to specific screen. 2. Or we can send data message, so the app would catch this message in a FirebaseMessagingService and then it starts refreshing data before user will see the notification. Also we have full control how to dispaly the notification, we can set pending intent, and so on. Option 2 seems to be a better one, but the problem I have noticed is that not all data messages are coming to the device. Oppo, Vivo and One Plus have common issue of killing all services when user kills the app (or when the app wasn't launched from a long time?). The problem of not receiving the notification about new photo from your friend doesn't seem problematic, but in my real case it's really important to notify the user about some events. It doesn't have to be in the same minute the server sends message, but it should as soon as possible. Now the question is, what's your experience? How did you solve sending notification in your project? Are you sending all notifications as notification message or data message? The challenge seems to be interesting especially when you consider supporting iOS where data messages are never coming when app is forced to close. If you would like better describe the situation, just let me know. Thanks! [link] [comments] | ||
What do you think of Jetpack Compose? Posted: 30 Sep 2020 02:05 AM PDT I'm just starting to learn Jetpack Compose, so I'm quite inexperienced. It's a completely different paradigm than the view system, so I guess you need some time to get used to it. But at first glance it seems pretty counterintuitive to me. I mean, to understand what's going on you have to trace all the flow of several composable functions, each one calling another one, sometimes all the way up to the ViewModel, with parameters (state and events) that are not immediately clear. It seems a big mess, but, as I said, I'm still quite inexperienced. What do you think? [link] [comments] | ||
Editing merged AndroidManifest.xml file as part of the build Posted: 30 Sep 2020 09:21 AM PDT | ||
Posted: 29 Sep 2020 10:09 PM PDT
| ||
Android app performance analysis Posted: 30 Sep 2020 07:44 AM PDT I have a question regarding the performance of native android apps and how to analyse. As I understand, you can use Android Studio's Profiler to view CPU usage, network traffic, RAM-consumption and battery consumption. So far so good, but is there any way to extract the data you get while analysing or while recording? Like if I want to see the average CPU usage in a certain amount of time, is there any way to get this information? Which tools do android devs typically use to analyse their apps? Sorry if this question has already been asked and answered, I did use the search function in this sub and haven't found anything worthwile. I also looked through a lot of stackoverflow posts but right now, it seems to me that performance analysing of android apps is like a black hole. [link] [comments] | ||
Can non-UI threads update the UI? Posted: 30 Sep 2020 11:14 AM PDT Edit: I know it is not a good idea. I am asking "Can we" do it and if this explanation makes sense: https://www.reddit.com/r/androiddev/comments/j2ri7w/can_nonui_threads_update_the_ui/g779684?utm_source=share&utm_medium=web2x&context=3 [link] [comments] | ||
Posted: 29 Sep 2020 10:25 PM PDT
| ||
Where to view the source of Jetpack compose? Posted: 29 Sep 2020 11:54 PM PDT Hi I've been trying out compose and find it difficult sometimes to do something because of change of class name and implementation, i understand it still alpha It will be much easier if we can see the source code And is it possible to report bug etc? Or not at this time Thanks Hope this is not deleted [link] [comments] | ||
#3 Floating Windows on Android: Permissions Posted: 30 Sep 2020 04:23 AM PDT
| ||
OS UI language English but Different language voice input? Possible? Posted: 30 Sep 2020 02:45 AM PDT There is a bug in android 10 I want OS to be in English but Voice Input in other language but android os only recognizes voice input that matches os language for example when I launch google maps and press microphone I have to select OS Language to Russian in order to use microphone input in russian how to fix? [link] [comments] | ||
Posted: 30 Sep 2020 02:30 AM PDT Hello. I'm a beginner in app development. Has anyone here used AppyPie, Appinstitute or any kind of App builders? To use the full features of their builder, you must pay a monthly/yearly plan. My question is, what would happen if I stop the payment? [link] [comments] | ||
Posted: 30 Sep 2020 08:07 AM PDT There's a handy open source porn blocker app named SAFE SURFER The app is perfectly awesome except a problem. The app can easily be bypassed by entering the ULTRA SAVING MODE and then come back to the SMART SAVING MODE of Android. (I'm using Android Oreo). The app gets stopped if I do the process mentioned above. And I need to open the app to start the service again. That's really disappointing. I'm not an Android app developer yet I came across some articles on how to solve this problem so that THE APP GETS AUTOMATICALLY RESTARTED IF SOMEHOW IT GETS TERMINATED OR FORCE STOPPED. This stackoverflow solution may work. But as I'm not an Android dev, I can't do this myself. Neither I've such high end PC to run Android Studio. Whatever I'd like to inform you that there's another app on play store named BLOCKED. This app has the feature of getting automatically-restarted even if I force stop the app or I enter ULTRA SAVING MODE and then exit it. What I want is to add this feature to the Safe Surfer app so that I can't bypass it anyhow. Any developer here to edit the source code of Safe Surfer (which is an open source app) so that the app get automatically restarted everytime it gets terminated (like the Block app mentioned above) and help me to get rid of porn addiction?? Please anyone! Safe Surfer is a tiny open source app of about 3 MB. The source code can be found here. [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