Appeal a year later Android Dev |
- Appeal a year later
- Why did you choose Android development as a career path over web or iOS?
- Beginner:- Jetpack compose or XML?
- Client Question - Am i being ripped off?
- What are the must go state management tools for an android kotlin app? React native we have redux, angular we have services with observables, etc…
- Books
- Does Google/Apple take fees on money that our users are earning?
- Jetpack Compose: Missing piece to the MVI puzzle?
- New Switch design
- Keeping public API in check with the Kotlin binary validator plugin
- CustomView for Tooltip
- If there was a way to search Google Play Store with lots of parameters...
- Where to write Android UI tests
- Correct use of ViewPager2
- I am Confused with RecyclerView in Android - A Beginner
- Build tools 4.2+: AAPT error
- An easy checklist to follow when you are testing a mobile app
- Weather Forecasting Application using React Native Expo and openweathermap with source code
- Starter Kit is the best way to learn react native
- Is LiveData hot or cold?
Posted: 15 Jul 2021 04:52 AM PDT Hey, about a year ago I posted this: https://www.reddit.com/r/androiddev/comments/iy6bmb/warning_to_all_with_google_and_thirdparty_sdks/ Well, I appealed again, a year later, and it was accepted. My game is now back live on Google Play, I'm a little bit in shock! Just shows that perseverance sometimes pays off! Though it might be useful for others that may be in the same situation. [link] [comments] | ||
Why did you choose Android development as a career path over web or iOS? Posted: 15 Jul 2021 09:06 AM PDT | ||
Beginner:- Jetpack compose or XML? Posted: 15 Jul 2021 12:38 PM PDT I recently developed interest in android app with kotlin and started learning just, two days ago! Now I am in this weird dilemma with the upcoming release of jetpack compose ! Should I learn Jetpack compose only with very little knowledge of XML! or should I learn XML first then jetpack? [link] [comments] | ||
Client Question - Am i being ripped off? Posted: 15 Jul 2021 01:51 AM PDT Hi, i hope this post is allowed. I wanted to ask a question directly to some android devs to get a feeling for whether i'm being ripped off by my agency. For context, I'm the client, i have an app that sells tickets for travel and it also lets you plan a journey from A to B. That's it in simple terms. All development work is handled by an external agency. The way it typically works is this - I request something, and they send me a bill for it (not broken down by time at all). So, I've asked for some new event tracking to be added to the app. These are around 12 events that are already being captured currently, the only difference is I want these events to be pushed into a different tool (so, instead of only sending these data points into GA, I now want it sent into another tool i have installed). I've been charged 18k GBP for this. The agency haven't done the work yet, and they won't give a breakdown of hours. I have a feeling that it's way over priced. Can anyone give an indication of how long this type of work takes? (Literally taking an existing event and pushing the data to an additional place). I've done similar in web and it's taken me minutes. But i have no clue how long it takes when it comes to app. What would you charge for this kind of work? Any insight would be very much appreciated Just to be clear this isn't a 'help me' post, and it's not a hiring post (following the rules). I just want to see some discussion and opinions on this from a devs perspective. [link] [comments] | ||
Posted: 15 Jul 2021 06:55 AM PDT | ||
Posted: 15 Jul 2021 10:57 AM PDT Hi, this is my first post, I would ask you for some books to start to learn kotlin, I saw that on youtube there is a lot of "tutorials" but personally I prefer to start learning from a book. Thanks to all. [link] [comments] | ||
Does Google/Apple take fees on money that our users are earning? Posted: 15 Jul 2021 03:26 PM PDT I am looking to develop an app where users will earn money. User would offer their service for $x amount. Paying user would pay for their service. So the user would be earning money and we take 10% of their earnings. So for example, say the user generates $1000 in one month. There is $1000 worth of credit card transactions taking place, but this $1000 is not going to us. We would earn just $100 from this $1000 in transactions. Would apple/google take their percentage from the $1000 or just the fee that we charge (10% or $100)? If they take their fee from the $1000 it pretty much makes it cost prohibitive. Do I need to get an exemption for this? I would imagine something like Uber or Venmo is not paying 30% on all transactions happening on their app. Thanks in advance! [link] [comments] | ||
Jetpack Compose: Missing piece to the MVI puzzle? Posted: 15 Jul 2021 03:14 PM PDT
| ||
Posted: 15 Jul 2021 02:50 PM PDT I'm running the Android 12 beta and have noticed in system settings, the design of the switch toggle has been updated in line with Material You. Is there currently an official way to implement this new design, or will the material components library be updated when the OS is released officially? [link] [comments] | ||
Keeping public API in check with the Kotlin binary validator plugin Posted: 15 Jul 2021 05:48 AM PDT
| ||
Posted: 15 Jul 2021 10:59 AM PDT I know there are a lot of 3rd party libraries on android-arsenal.com for tooltips, but if i wanted to create my own custom View, how should I go about this? I want to avoid having to draw to the Canvas to create the tooltip. At the moment I have the content in one view and the arrow in another view. I want to position the arrow either on top or on bottom of the content, and i want to position it a percentage distance from the left or right. I was thinking of using ConstraintLayouts and horizontal biases. Am i on the right track? [link] [comments] | ||
If there was a way to search Google Play Store with lots of parameters... Posted: 15 Jul 2021 10:19 AM PDT If there was a way to search Google Play Store with the following parameters:
For example: If you could search for Apps in the Entertainment category which was developed after 2020, with downloads between 10000 to 50000, and the app was updated in the last 3 months. You get a list of 500 - 1000 apps list, with app info and developer info. Another example: You search for a list of apps with 50000 to 100000 downloads, which was not updated for the last 3 months and people recently reviewed the app with words such as "crashed", "not starting"... You get a list of 500 - 1000 apps list, with app info and developer info. How would you use such a feature for your benefit? [link] [comments] | ||
Where to write Android UI tests Posted: 14 Jul 2021 09:54 PM PDT Hi everyone! [link] [comments] | ||
Posted: 15 Jul 2021 12:52 AM PDT Hey guys, I'm trying to use the ViewPager2 with FragmentStateAdapter. I'm initializing the adapter inside the onViewCreated, because if I use the lazy initialization, it crashes every time I navigate from that fragment and then come back to it. After some researching, it seems that it's a problem with ViewPager2. So now I have a problem because if I have a fragment with two tabs, and one of those tabs has a list, if I navigate somewhere when a list item is clicked, and come back to this fragment with tabs, the list is created again and I cannot keep my scroll state, the list is scrolled to the top. Is there a way to fix this, so if I click on an item inside a list, navigate somewhere and come back to this fragment, to keep the list scrolled to the position I left it in. I can see many apps working correctly, but cannot find a working example of this. Thank you! EDIT: using navigation components with this [link] [comments] | ||
I am Confused with RecyclerView in Android - A Beginner Posted: 15 Jul 2021 04:40 AM PDT Hi Guys, So the title basically tells it all, I am fluent in web dev and wanted to learn android development and I am learning it using Android Studio and Kotlin. However, while going through the fundamentals, I became very confused with RecyclerView and Adapter Classes and all. Can someone break it down clearly in smaller parts for me? Thanks a lot! [link] [comments] | ||
Posted: 15 Jul 2021 01:50 AM PDT Hi Reddit ! I have an issue when trying to upgrade to the Android gradle plugin from version 4.1.3 to 4.2+. When I try to compile my application, I have the following error:
I have tried with all 4.2 versions but all of them gives me the same error. My gradle files can be found on my github, any help will be appreciated. [link] [comments] | ||
An easy checklist to follow when you are testing a mobile app Posted: 15 Jul 2021 07:10 AM PDT
| ||
Weather Forecasting Application using React Native Expo and openweathermap with source code Posted: 15 Jul 2021 06:18 AM PDT
| ||
Starter Kit is the best way to learn react native Posted: 15 Jul 2021 08:02 AM PDT Web dev here trying to get started with my first react native project. I asked my friend, an experienced react native dev with several apps, what the best way to get started was. He recommended devbag, because they have a ton of stuff integrated and very helpful documentation for me to learn from. I googled and found the following boilerplates/starter kits, and they are free. I am leaning towards devbag because it comes with a lot of the box but costs $77. The free ones don't have as many features but I save money. Do you have experience choosing a starting point? My priorities are saving time and being production-ready ASAP. Thanks in advance. [link] [comments] | ||
Posted: 14 Jul 2021 09:35 PM PDT We know that StateFlow and SharedFlow are hot. So here is my question. Is LiveData hot or cold? [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