Android Dev - Weekly "who's hiring" thread! |
- Weekly "who's hiring" thread!
- Weekly Questions Thread - September 14, 2020
- Kotlin 1.4 Online Event – Kotlin Blog
- JetInstagram an Instagram clone using Jetpack Compose
- Horrible gradient screenshots on play store, why?
- Dynamic BASE_URL using Retrofit and Dagger Hilt
- YouTube + Twitch channel about Jetpack Compose by Leland Richardson
- Many Correct Answers
- Wire 3.3.0 supports proto3
- Images from Gallery always rotated 90 degrees
- AssistedInject Release 0.6.0 adds support for awareness of Hilt.
- Android 11 features and other sides
- Run facebook embed on Webview
- Why we switched from Amplitude to Firebase, BigQuery & Google Data Studio for our android app analytics
- Which blogs can you recommend? I'll start.
- Grid list with LazyColumnFor in Jetpack Compose
- Need help theming big project
- Using LiveData in MVP?
- How do you improve & optimize upgrade/subscription conversions in your apps?
- What the importants android topic do i need to cover to develop fitness tracker app?
- Best Android Development Software for an app using Twitter and Google Maps APIs
- Level Up Your App Infrastructure with Firebase
- Voice interaction in App including HotWordDetection
Posted: 14 Sep 2020 05:44 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] | ||
Weekly Questions Thread - September 14, 2020 Posted: 14 Sep 2020 03:56 AM PDT This thread is for simple questions that don't warrant their own thread (although we suggest checking the sidebar, the wiki, our Discord, or Stack Overflow before posting). Examples of questions:
Important: Downvotes are strongly discouraged in this thread. Sorting by new is strongly encouraged. Large code snippets don't read well on reddit and take up a lot of space, so please don't paste them in your comments. Consider linking Gists instead. Have a question about the subreddit or otherwise for /r/androiddev mods? We welcome your mod mail! Also, please don't link to Play Store pages or ask for feedback on this thread. Save those for the App Feedback threads we host on Saturdays. Looking for all the Questions threads? Want an easy way to locate this week's thread? Click this link! [link] [comments] | ||
Kotlin 1.4 Online Event – Kotlin Blog Posted: 14 Sep 2020 06:55 AM PDT
| ||
JetInstagram an Instagram clone using Jetpack Compose Posted: 13 Sep 2020 11:01 AM PDT
| ||
Horrible gradient screenshots on play store, why? Posted: 14 Sep 2020 06:57 AM PDT
| ||
Dynamic BASE_URL using Retrofit and Dagger Hilt Posted: 14 Sep 2020 03:39 AM PDT I am struggling passing a dynamic BASE_URL to Retrofit at runtime. I found a solution passing the whole API @Url as an argument to the endpoint, but it does not look very good to me. Does anyone have any experience with this? [link] [comments] | ||
YouTube + Twitch channel about Jetpack Compose by Leland Richardson Posted: 13 Sep 2020 02:05 PM PDT
| ||
Posted: 14 Sep 2020 09:01 AM PDT | ||
Posted: 14 Sep 2020 08:47 AM PDT
| ||
Images from Gallery always rotated 90 degrees Posted: 14 Sep 2020 08:33 AM PDT In my app when I let users select an image, I want to display it immediately after for them to confirm but it always comes out rotated to the right. There is an old thread from stackoverflow that recommends using Glide to fix this but I am already using Glide and it is still showing the issue. Code is simple: And Corresponding imageview: Any solution? [link] [comments] | ||
AssistedInject Release 0.6.0 adds support for awareness of Hilt. Posted: 14 Sep 2020 07:19 AM PDT
| ||
Android 11 features and other sides Posted: 14 Sep 2020 07:13 AM PDT
| ||
Posted: 14 Sep 2020 06:51 AM PDT Hello, I have a service that returns a html code to render on a webview in my app, sometimes it returns a youtube embed, instagram or facebook, but the facebook is the only one is not working.
Here is only a part of the body, on facebook video we put it on a `script` tag and when I play the video the app freeze and do nothing, but if I press on back button the app return it to normal behavior. I saw a solution that use a `iframe` but in my case I need to work with `script`. After a while I noticed this log:
Anyone have faced the same problem? [link] [comments] | ||
Posted: 14 Sep 2020 05:05 AM PDT Hey everyone, We run a transcription app (VoxRec) which is currently at $2k MRR (doubled last month!) We use analytics to help make app development choices. At the beginning of the year, we switched from Amplitude to Firebase, BigQuery & Google Data Studio for our app analytics. This is why we did it: Cost The free tier in Amplitude allows up to 10 million events per month. After that, it'll cost between 40,000 to 70,000 USD/year! We calculated that using BigQuery and Google Data Studio, our cost would be about $350/year for the same amount of data! Data Ownership If we find that we've defined some events incorrectly, we can fix data retrospectively. On any other platform, once the data is logged, it's what it is. Advanced Analytics The features in the Amplitude free tier are limited. We did not have access to the cohorts for example. We were able to recreate these features in BigQuery. For example, we can now look at user retention based on cohorts of country/events/registration status/payment status…. So far, we are very happy with the switch While creating our reports, we realised that large parts are reusable. We've spun it out into a template. You can check out the template here If you'd like to get the template (along with set up instructions) let me know in the comments or DM me and I'll hook you up. [link] [comments] | ||
Which blogs can you recommend? I'll start. Posted: 13 Sep 2020 02:08 PM PDT I am always on the hunt to grow my feed reader. Which Android & Kotlin related blogs are you following and recommending? Below are my currently subscribed blogs. I marked blogs which I can highly recommend with an '(!)'. I am also following every Android related article on Medium but that can be overwhelming. Any better way to get notified about high quality Medium posts? Companies:
Individuals:
[link] [comments] | ||
Grid list with LazyColumnFor in Jetpack Compose Posted: 14 Sep 2020 03:12 AM PDT
| ||
Posted: 14 Sep 2020 02:45 AM PDT Can you tell me good approach to theme big projects? I have "ui kit" gradle module with a lot of custom views. Views and resources from "ui kit" are used in other library/app modules. I want to make "ui kit" styleable — each app should be able to specify its own color scheme for "ui kit", which will then be applied to all ui-kit-dependent modules. The only solution I know — convert values into attr-references and specify values for them right in app theme of each app. But I see a lot of disadvantages here:
What I really need is:
But I don't know how to do it. If I specify attr value in app theme, I can access it easily in XML via "?myAttrName". If I put attr value inside my custom style, I won't able to access it (I can't call "?myLibTheme/myAttrName". There are a lot of other things I also don't know how to do to implement it [link] [comments] | ||
Posted: 14 Sep 2020 02:29 AM PDT It's clear that LiveData works amazingly with MVVM, but are there any interesting use cases for LiveData with MVP? I'd be interested to know. Also curious to know if LiveData particularly shines in any other architectural patterns [link] [comments] | ||
How do you improve & optimize upgrade/subscription conversions in your apps? Posted: 13 Sep 2020 12:17 PM PDT Hey, r/androiddev! I'm wondering what other devs do to optimize their freemium/subscription service upgrade pages & experiences. I have an app with a freemium model. I relaunched it recently and with that, I've re-done my freemium upgrade screen. I also made it more obvious through the app as to what features require the premium upgrade. Conversion has increased slightly, but not as much as I had originally expected. I'd hope to not completely re-design my experience, but rather A/B test or experiment on different approaches. Would love to discuss what you've done to improve your conversions. [link] [comments] | ||
What the importants android topic do i need to cover to develop fitness tracker app? Posted: 13 Sep 2020 07:47 PM PDT I have completed my android basic stuffs (java) and some advanced topics here and there,there is so much to learn in android dev that i am getting lost and end up learning things that i don't think i will use. Can anybody tell me what are the android topics that i need to cover to build a simple fitness running tracker app that tracks your run live ? [link] [comments] | ||
Best Android Development Software for an app using Twitter and Google Maps APIs Posted: 13 Sep 2020 11:36 AM PDT Hey gang! Hope you're awesome and staying safe! So I have a degree in computer science with games tech, but I've never developed an app before - I've also been out of uni for about 10 years and only really cored for fun so I'm "rusty" at best. I am looking for an easy to use (non intimidating) development tool to create a mobile app which will use Twitter and Google maps APIs. Which would you recommend/ are the best in your opinion? Thank you. :) NB sorry if this isn't allowed. I did check the rules so sorry if I've screwed up! [link] [comments] | ||
Level Up Your App Infrastructure with Firebase Posted: 13 Sep 2020 09:04 AM PDT
| ||
Voice interaction in App including HotWordDetection Posted: 13 Sep 2020 08:46 AM PDT HI, I am trying to integrate voice interactions inside my applications including a hotword detection. It needs to listen only when the app is in the foreground, and which is the best way to accomplish this? Some lighter ways than the RecognitionService ? [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