Weekly Who's Hiring Thread - March 28, 2022 Android Dev |
- Weekly Who's Hiring Thread - March 28, 2022
- How to prevent hackers from reverse engineering your android apps?
- Learning android for experienced backend dev
- Any way to do an automatic staged rollout instead of manual?
- What architecture should I go for do that its not a bad architecture
- Google Play changes in the app review policy (related to paid subscriptions flow)
- How to pass a String from MainActicity to a Fragment
- Hindi localization - worth it?
- How do you test your app on Android 12?
- Building on ARM CPU, who to CC?
- App animation methods
- Visual tests
- Is there any support for ACTION_OPEN_DOCUMENT_TREE on the Cloud from providers?
- Which apps have these icons?
- Retrofit in loop put many data to a database simultaneously causing error. How to make it wait for the response?
- Gitlab CI and keystores?
- Can't pass seller identity verification
- A class for creating custom dialogs
- Android: Google has done a lot right with its new widgets
- Android || kotlin
- Advice about developer name/identity to use in Google/Apple app stores
- How can I make an worm animation with the background slowly dragging
- How to stream the video feed to a PC via usb?
- Conditional navigation with datastore
- Feeding a screenshot to the phone's camera image buffer.
Weekly Who's Hiring Thread - March 28, 2022 Posted: 28 Mar 2022 06:00 AM PDT Looking for Android developers? Heard about a cool job posting? Let people know! Here is a suggested posting template:
Feel free to include any other information about the job. [link] [comments] | ||
How to prevent hackers from reverse engineering your android apps? Posted: 28 Mar 2022 12:39 AM PDT
| ||
Learning android for experienced backend dev Posted: 28 Mar 2022 08:00 AM PDT I've taken a sabbatical from my work, and I want to learn some new things. I have worked as a backend java developer, with some web frontend work here and there, for 10 years. I want to learn android development now, and I'm wondering about good resources. I'm getting into things pretty quickly, making a simple app is fairly easy, but most tutorials feel pretty basic and I'm interested in more general things regarding best practices. What are some things I might miss as a new mobile dev? Are there any good courses or books aimed towards people comfortable in programming? Any other tips you can think of are appreciated! [link] [comments] | ||
Any way to do an automatic staged rollout instead of manual? Posted: 28 Mar 2022 02:26 PM PDT I'm doing a staged rollout starting with 1% and up to 100% over 7 days. However, I have to do this manually by going in each day to update the percentage. Is there a way to do this automatically, rather than me going into the Google Console and putting in the new percentage every day? [link] [comments] | ||
What architecture should I go for do that its not a bad architecture Posted: 28 Mar 2022 01:27 PM PDT I have a really big form to show. so what we did is divide it into 7 part, each part consist of 1 fragment and all those fragments are navigated using tab layouts and view pager. each of those fragments have their on view model to have access of data binding . Now the problem is we can randomly select any tab and update data so we need a central location to store that data and update it, but the data is complex json model so can't be stored in a database easily, is there any other option to pursue? [link] [comments] | ||
Google Play changes in the app review policy (related to paid subscriptions flow) Posted: 28 Mar 2022 04:34 AM PDT
| ||
How to pass a String from MainActicity to a Fragment Posted: 28 Mar 2022 01:13 PM PDT I got a LoginActicity and then MainActivity starts and then i start Fragment A with which i need to pass a variable to MainActivity and from MainActivity i need pass variable to another Fragment B. I think Fragment A and B are part of MainActivity, once somehow i passed with intents bundle put extra etc a variable from Fragment A to MainActivity i deleted it by accident but anyway how should a decent programmed do all this. I am junior and i work in a big project in a company. I dont want to create a textview and use it to pass things inside, i just want to transfer a variable cause i need it. [link] [comments] | ||
Hindi localization - worth it? Posted: 28 Mar 2022 08:49 AM PDT Been localizing my app into languages slowly, it's a lot to translate so I only do so sparingly bc it takes time and money. Wondering about Hindi, as the Indian market seems very big on Android. However, I do not know if this would translate (no pun intended) to more app downloads/sales/ad revenue. I figure I'd ask and see if anyone here has first-hand experience with localizing their app to Hindi, and have you seen any good things come about from it? For me, Portuguese was the best move, as Brazil > USA for my app now. Japanese and Russian however, barely was worth it. Though I haven't done any advertising targeting those specific locations outside a few dollars per day via Google Ads. [link] [comments] | ||
How do you test your app on Android 12? Posted: 28 Mar 2022 08:23 AM PDT I have a problem. Android 12 users are reporting that my app isn't functioning properly. I don't have a physical device with Android 12. My only computer is a laptop with 4GB of RAM and a 5400 rpm hard drive so it can't run the Android Studio emulator for any OS higher than Android Jelly Bean. I tried finding online emulators that stream inside a browser instead of running natively on the computer, but every single one costs money. What are my options? [link] [comments] | ||
Building on ARM CPU, who to CC? Posted: 28 Mar 2022 11:33 AM PDT | ||
Posted: 28 Mar 2022 11:11 AM PDT Hello... I'm a beginner to android app development. I want to know what method you guys use to add animations to apps. Currently I'm using But I found that it is bit difficult and I have to write so many lines to animate each of elements. As a example if I have 5 objects then I have to make 5 animator objects and connect then using a Is there any other animating methods you guys using...? [link] [comments] | ||
Posted: 28 Mar 2022 10:56 AM PDT Do you have some kind of visual tests in any of your projects? If yes, what do you use and why? If no, why not? [link] [comments] | ||
Is there any support for ACTION_OPEN_DOCUMENT_TREE on the Cloud from providers? Posted: 28 Mar 2022 10:26 AM PDT Hello, I am interested in the Storage Access Framework (SAF) from Google, and I already implemented some of its functions. My concern is about the use of the ACTION_OPEN_DOCUMENT_TREE intent, useful for apps to be able to select a folder and create files inside it, in particular for cloud folders. This question is about the cloud folders, the remote folders on the internet. I already tested some code and it correctly works on local storage, because after being granted the access, files can be created inside a folder. At present time I am not so up-to-date with the last changes or improvements to the above mentioned framework. So I searched through Reddit and StackOverflow but I found nothing. This problem seems to go ignored. It is strange because many developers should be interested. In fact on StackOverflow what surfaces is my own questions like My question is if anyone knows some cloud storage providers or equivalent applications that opted-in to supporting the ACTION_OPEN_DOCUMENT_TREE intent for their remote folders, not only for the local ones. Time ago I asked also on NextCloud forum but I do not think they have implemented that yet. I also created an issue on Google issue-tracker, to be eventually dismissed after a long time as "Won't Fix (Obsolete)" (like other issues I opened there). I even contacted privately another developer found on the internet concerned about this subject and he knew my issue and starred it. So a discussion here seems to be appropriate, and hopefully also there could be some useful answers or updates. Thanks in advance Best regards [link] [comments] | ||
Posted: 28 Mar 2022 09:39 AM PDT
| ||
Posted: 28 Mar 2022 07:13 AM PDT My loop: DbHelper code: I insert data to the table by using How to make the loop in Android to not try to insert all the data at the same time? [link] [comments] | ||
Posted: 28 Mar 2022 07:01 AM PDT I'd like to move our project to gitlab-ci. https://gitlab.com/gitlab-org/gitlab-foss/-/blob/master/lib/gitlab/ci/templates/Android.latest.gitlab-ci.yml is a great start, but I need to get our keystore into the container. Currently we have a global gradle.properties that holds the info about our keystore: Inside the build.gradle we call it by: Optimally I could just hand over the gradle.properties and the keystore into the container, but I wasn't able to do that. Anyone using this that could show me a working template or give me some ideas on how to do this? [link] [comments] | ||
Can't pass seller identity verification Posted: 28 Mar 2022 05:45 AM PDT Two months ago, I received a payments hold on Google Play. Upon contacting the support they said I need to go through the Brazilian law identity verification as well as the EU verification (I'm not based in EU). I have submitted every document they asked for with information matching that on my account. However, every time I get an automated email that the verification process has failed due to policy violation, with no further clarification. No matter how many times I contact the support I get the same email. They have also suspended my Admob account, and when contacting Admob's support they said that it's not related to the seller identity verification issue because that's not required for Admob, and it must be something else. Few weeks later, they said that it's related and the suspension is there because of the same issue. At this point I'm clearly stuck, with no response from support, the only hope is to benefit from your experience in these issues on what I can possibly do. [link] [comments] | ||
A class for creating custom dialogs Posted: 28 Mar 2022 04:37 AM PDT Are there any good examples of such utility classes? [link] [comments] | ||
Android: Google has done a lot right with its new widgets Posted: 28 Mar 2022 03:50 AM PDT | ||
Posted: 28 Mar 2022 12:15 PM PDT | ||
Advice about developer name/identity to use in Google/Apple app stores Posted: 27 Mar 2022 08:33 AM PDT Hi all! I'm about to publish my first app, which is currently in an internal test phase in the Play Store (with a few users I know personally). It's a Flutter app so I also plan to release it in Apple's App Store shortly after. When I created my developer account in the Play Store I just used my real first name + last name. I also happen to own my FirstNameLastName.com domain (I haven't set up any website yet), so I decided to use that as well for the app's package name. However, I've seen some people recommend creating a "company" name (even if there's no real company behind it), both for privacy reasons and to make store listings look more professional. I can see it's trivial to change that in the Play Store, however I've just read that in Apple's App Store, if you register as an individual developer you have to provide your real, legal name. You can't make up a fake "studio" name like in the Play Store unless there really is a company behind it. So... my questions:
[link] [comments] | ||
How can I make an worm animation with the background slowly dragging Posted: 28 Mar 2022 03:33 AM PDT
| ||
How to stream the video feed to a PC via usb? Posted: 27 Mar 2022 10:15 PM PDT Hello I want to build an app that allows me to use my phone as a webcam, like Droidcam or Irium for example. How can I actually send the video stream to a computer where it can be displayed using another app? I read some posts that were saying sending data via usb from phone can't be done, and a solution would be making the pc app to read from the phone. If I go with this, should I write an image on the phone and read it? If I do this at 30fps it would not look so efficient. Is there any other way of doing this? Thanks! [link] [comments] | ||
Conditional navigation with datastore Posted: 27 Mar 2022 09:41 AM PDT Hello there. I am coming from JS world and react native and started to get into Kotlin and Android. Have on the question. If I want to create conditional navigation can I keep some boolean like isLoggedIn into DataStore?! My idea is to make it somehow observable so when I logged in and get token, I set this boolean to true and navigate the user. On logout, I just set it to false. I do not know if this is the best practice at all. Is there any better approach? [link] [comments] | ||
Feeding a screenshot to the phone's camera image buffer. Posted: 27 Mar 2022 10:22 PM PDT Is there a way to feed an existing image (e.g stored in the gallery) to the camera's image buffer? So e.g if a person (or an app) opens the camera it wont see the live footage but actually the already saved image? [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