• Breaking News

    Sunday, December 6, 2020

    Android Dev - Do I really need my app users to accept the terms and conditions before they can use it?

    Android Dev - Do I really need my app users to accept the terms and conditions before they can use it?


    Do I really need my app users to accept the terms and conditions before they can use it?

    Posted: 06 Dec 2020 07:21 AM PST

    Hey, I was taking a course by London App Brewery on Udemy and the instructor mentioned that you do not really need the users to accept the T&C before they can use the app. As they are downloading the app, they are automatically accepting the T&Cs. And as long as you have a link to the T&Cs page, there is no need to explicitly prompt the user and get it accepted.

    Can anyone please confirm for me if that is possible or not? I tried googling but no useful resources found.

    Thank You

    submitted by /u/davidkonal
    [link] [comments]

    Is it possible to build an animation with Motion Layout between two activities ?

    Posted: 06 Dec 2020 04:52 AM PST

    Hello,

    I have an activity with a list of items on a recycler view. When I click on it, it opens a new activity with more informations about the item.

    I would like to have a complex animation during the transition, such as expanding the image, change background color, modify the size of some texts, etc.

    I don't know where to start, any idea? Is it possible with motion layout?

    submitted by /u/Tiffathug
    [link] [comments]

    Can I delete a "being reviewed" release in Google Play Console?

    Posted: 05 Dec 2020 10:52 PM PST

    Hi, I made an update for my app but then notice a mistake. I exported a new APK and uploaded a new version. But now the old new version is still being in review, can I just delete it?

    I want to delete the 5 December version so I don't lose time for it being reviewed, I even don't want it to go live : https://imgur.com/a/2h0RgaT

    Thanks!

    submitted by /u/matr0sk4
    [link] [comments]

    Where do WorkManager, JobManager Fit in Clean Architecture?

    Posted: 06 Dec 2020 06:29 AM PST

    Usually, in apps, there are some tasks that we run in the background, such as syncing of data, analytics etc. Google suggested to use deferrable components such as WorkManager and JobScheduler in such situations.Where do these components fit in Clean Architecture? I'm confused as to where these components belong. Do they belong to the data layer?Thanks in advance

    submitted by /u/kwabenaberko
    [link] [comments]

    [Google play deal] The last roman village - 50%OFF => 0,99$

    Posted: 06 Dec 2020 08:52 AM PST

    Resource Naming Convention using View Binding

    Posted: 05 Dec 2020 02:32 PM PST

    Hi all. When binding views with `findViewById` in Java Days or with Kotlin Synthetics it seemed somewhat important to have unique ids across the files. However, now having View Binding it feels less so.

    With View Binding it's clear which view we are talking about in code, therefore the references may become less complex and more easy to read in code. For the last few years I was following Resource Naming by Jeroen Moels more or less. But this seems to be overkill with View Binding and clutter the code.

    What is the naming convention you follow when using View Binding?

    submitted by /u/yannickpulver
    [link] [comments]

    Question about getting non-personalized ads across the board

    Posted: 05 Dec 2020 08:35 PM PST

    Hello, I'm having more difficulty than expected wrapping my head around ads and consent.

    Basically the app is a puzzle game, think of 2048. Simple mechanics involved.

    • I gather no information about the user (no need)
    • I gather no analytics (again, no need)
    • by default, there's a banner ad and is active
    • the banner ad can be disabled from the settings page (just a button like mute/unmute, no paying required)
    • for ads, I'll use IronSource mediation (probably admob+adcolony).
    • I want to have ONLY non-personalized ads (everywhere, not just EU).

    my questions are:
    1) to only receive non-personalized ads, should I do it by setting the TFUA flag? (tag for users under age of consent). This flag is intended for EU users that can't give consent, which does result in getting only non-personalised ads. So I know it would work in the EU but does it have the same effect elsewhere?
    2) Is it a bad way of doing it? If so, what's better? I have to disable personalization in the adunit associated to each network in the waterfall?
    3) assuming what's written above, do I still need to request consent? If so, about what exactly?

    Thanks for any help you can give

    submitted by /u/pivoxi
    [link] [comments]

    29 November — 5 December Android Newsletter

    Posted: 06 Dec 2020 01:59 AM PST

    Stay up to date with Android development, in this week's edition:
    🤓 Master the gRPC in your app
    😍 Improve your project with 8 easy practical tips
    🧭 Explore navigation in multi-module architecture
    🚧 Learn how to build an end-to-end test system
    and much more!

    Read it here 👉 https://vladsonkin.com/android-newsletter-23/
    What's your favorite one?

    🔥Featuring @billjings @SG5202 @programmerr47 and many other great authors!

    💚 Subscribe and receive new editions directly to your email. Weekly, no spam, unsub anytime.
    Here is an example: https://mailchi.mp/222a9b804d0d/android-newsletter-23

    submitted by /u/vladsonkin_com
    [link] [comments]

    How to use Google Fit SDK?

    Posted: 06 Dec 2020 06:15 AM PST

    I'm trying to record fitness data on an Android phone, and see the history later. I'm searching on the web, but I can't figure it out myself. Can someone please explain how to do that please? I have no clue where to start, I'm not familiar with using API's.

    submitted by /u/StukerA
    [link] [comments]

    Android SharePreferences Extension

    Posted: 05 Dec 2020 04:44 PM PST

    https://github.com/Jintin/PreferencesExtension

    Now its provide much kotlin way to use Android Share Preferences, like type inter:

    val value2 = preference.get<String>(MY_KEY) val value3: String = preference.get(MY_KEY) 

    Also support LiveData usage to listen preferences change.

    val preferenceLiveData = preference.liveData<String>(MY_KEY) preferenceLiveData.observe(this) { // get update here } 

    submitted by /u/Jintin1018
    [link] [comments]

    AndroidBites | Yet Another View-Binding Article?

    Posted: 06 Dec 2020 12:57 AM PST

    I'm pretty late to the party but here is my blog on view-binding.. It's pretty much more in-depth than others you would find in the community. Hope you like it, until next time happy hacking!

    Glossary

    • Is data binding not working in all the modules? Why your fields are not getting generated?
    • How to view the source code of your generated binding classes?
    • Generated classes are Kotlin or Java? and why?
    • Do View-binding views are never null?
    • How to access included views? <include> and <merge> tags?
    • How to bind Activities, Fragments, Adapters, and CustomViews?
    • When to use bind and Inflate?
    • Controlling ViewBinding Generation?
    • Reducing boilerplate code with Delegates and Base-Class for ViewBinding in Activity and Fragments?
    • Common mistakes and Anti-patterns in ViewBinding?

    https://chetangupta.net/viewbinding/

    submitted by /u/dev-ch8n
    [link] [comments]

    can i inculde my youtube channel and facebook page inside a game ?

    Posted: 05 Dec 2020 11:44 AM PST

    What's the best way to filter out desperate low quality text based posts?

    Posted: 06 Dec 2020 12:05 AM PST

    I'm working on a community based app. But some weirdos are posting stuffs like,

    "I'm looking for a girlfriend?"

    "Any single girls here?"

    "Looking for love"

    This app is no way made for dating stuffs. But it's somehow ranked in some weird keywords and that's attracting weird desperate users.

    I have added some basic filters with most common desperate words, which helped a lot. But those sentences can be structured in many ways and those types of posts give new users a bad impression about the quality of app. Which affects the retention rate.

    Tried using some spam checker apis,

    But they also flag words like sh*t. Which is not what I want.

    So is there any better solution?

    submitted by /u/Homeless_Programmer
    [link] [comments]

    How long will Java be relevant in Android development and when will Kotlin completely overtake it?

    Posted: 05 Dec 2020 06:46 PM PST

    Any predictions?

    submitted by /u/spiderweb2
    [link] [comments]

    Junior Dev Job Market During Covid

    Posted: 05 Dec 2020 06:17 PM PST

    Hi. I'm graduating with a CS degree this month. and I will start looking for Junior Dev positions in the states. What is the job market like for a junior dev during Covid? Is your company still actively hiring or has it stop hiring due to Covid? Thank you for your response.

    submitted by /u/parkneiter
    [link] [comments]

    If i chage xml layout into relative layout this error gives in my design can anyone help to slove this error

    Posted: 06 Dec 2020 01:26 AM PST

    Same app on Huawei, does not work on Samsung

    Posted: 06 Dec 2020 03:25 AM PST

    Android game developed using Android Studio + Kotlin works fine on Huawei phones but keeps crashing on Samsung phones, what could be the cause?

    submitted by /u/Unravel-Engineering
    [link] [comments]

    Blackview A80 Pro - temperamental firebase push notifications

    Posted: 05 Dec 2020 02:42 PM PST

    So weird... I have switch off data/power savings but it does not fix it.

    I don't know if the phone's software is buggy or what. It was very cheap.

    The adb logs are very noisy. Much noisier than my old Nexus 5. Perhaps there is a clue in the logs?

    Many thanks

    https://0bin.net/paste/R9yXwazX#E7y99VWUuvcz2dskOo12dMR1eWSaUP7LPMVA7JjwVe+

    submitted by /u/dewijones92
    [link] [comments]

    What are you are TEAM GOALS for next 2 years as android developers in a company/chapter?

    Posted: 05 Dec 2020 01:12 PM PST

    No comments:

    Post a Comment