• Breaking News

    Friday, November 19, 2021

    Android Dev - App Feedback Thread - November 19, 2021

    Android Dev - App Feedback Thread - November 19, 2021


    App Feedback Thread - November 19, 2021

    Posted: 19 Nov 2021 06:00 AM PST

    This thread is for getting feedback on your own apps.

    Developers:

    • must provide feedback for others
    • must include Play Store, GitHub, or BitBucket link
    • must make a top level comment
    • must make an effort to respond to questions and feedback from commenters
    • app may be open or closed source

    Commenters:

    • must give constructive feedback in replies to top level comments
    • must not include links to other apps

    To cut down on spam, accounts who are too young or do not have enough karma to post will be removed. Please make an effort to contribute to the community before asking for feedback.

    As always, the mod team is only a small group of people, and we rely on the readers to help us maintain this subreddit. Please report any rule breakers. Thank you.

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

    Here is an article about my DI library for Kotlin Mutliplatform

    Posted: 19 Nov 2021 03:05 AM PST

    Programmatically subscribe to an external .ics calendar on Android

    Posted: 19 Nov 2021 12:27 PM PST

    What's up everybody?

    I'm trying to synchronize calendar using a URL of a .ics file

    On iOS I was able to do using webcal. However, I haven't found anything similar on Android

    Someone knows a way to do this on Android?

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

    I have created library to easily make custom slider in jetpack compose. The difference from material slider is that track and thumb can be anything you want.

    Posted: 19 Nov 2021 07:58 AM PST

    How to fix the “Android emulator crashes when I take a screenshot” bug

    Posted: 19 Nov 2021 07:24 AM PST

    Jetpack Compose - How to Add Multiple Markers to Google Maps

    Posted: 19 Nov 2021 09:16 AM PST

    How to create graph in Android app?��

    Posted: 19 Nov 2021 03:30 AM PST

    So... I have a question .. Suppose I am getting a new value everyday and I want to create a graph of all this values ( going up and down) which adds new value every day in an app . How can I do it?

    I am not working on any project related to it I am just curious ....

    Sorry if the question goes against the rules...

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

    Does Flutter support Automatic persisted queries

    Posted: 19 Nov 2021 03:26 AM PST

    I want to make an app for Android with Flutter , And before that I had to make sure Flutter supports Native Admob ads and Apollo Graphql Persisted queries

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

    Documentation on android_app_import for Android.bp

    Posted: 19 Nov 2021 01:20 AM PST

    So I am toying around with custom rom. I'm not too familiar with the entire Soong buildsystem but is aware enough that some android makefiles (android.mk) has slowly been replaced with android blueprint (Android.bp)

    Straight to the point, I'm including my own prebuilt for my custom rom and wish to use Android.bp wherever possible due to less complexity and readability, but I can't find full documentation for prebuilt modules. The Soong build system page doesn't seem to cover entirely

    anyway if there's no resources on this, maybe a good fellow here can brief me the equivalent of Android.bp properties for these android.mk properties:

    1. LOCAL_MODULE_PATH
    2. LOCAL_OVERRIDES_PACKAGES

    Thanks for helping. Would prefer crosspost suggesttion before deletion if this question doesn't fit here

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

    Change app completely?

    Posted: 19 Nov 2021 08:47 AM PST

    I need to change my app completely not just reskin, for example from Wallpaper app to photo editor.

    Is this allowed on Play Store ?

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

    Dear Android developer, search bars and all main action buttons of your app should always be at the bottom of the screen.

    Posted: 19 Nov 2021 01:55 AM PST

    Let's face it. Phones are getting taller, wider and bigger by the inch every year. Almost gone are the days where the size of phone displays are ideal for one handed use. Most of humanity does not have big hands and long fingers.

    I think, regardless of the size of the device, search bars will always work best at the bottom of the screen. Most buttons, menus, and action features should always be close the part of the screen where most people hold it, just enough so our thumbs can reach it.

    Thank you.

    BTW, you guys are great. Keep up the great work :)

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

    Material You Beta - Tutorials?

    Posted: 18 Nov 2021 09:53 PM PST

    Hey, I've tried using Material You in the beta version as beta01 of the material components for android was published a werk ago. The elements like the fab and the navigation bar have the new design, but I still wonder how to implement dynamic color theming for my xml elements.

    Because if you call 'DynamicColors.applyToActivitiesIfAvailable(this);' the colors change on Android 12 devices, but the app instantly crashes on lower Api levels.

    Are there already any Material You tutorials? I have not seen one of them until now.

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

    Either DiffUtil is broken, or my understanding of it is.

    Posted: 18 Nov 2021 07:44 PM PST

    Can someone please help me understand how, given below code, can the onInserted callback report that 3 items were inserted, beginning with position 4, if the newList size is 6 (indexes go from 0 up to 5)?

    If 3 items are inserted beginning with position 4, that would mean indexes 4, 5, 6

    That would obviously be an OutOfBoundsException if I try to access index 6 of newList.

    Output:

    onInserted: position=4, count=3 onChanged: position=2, count=2, payload=null onRemoved: position=0, count=2 onInserted: position=0, count=1 

    Code:

    data class Entity( val id: Int, val latLng: LatLng, ) val oldList = listOf( Entity(1, LatLng(30.0, 30.0)), Entity(4, LatLng(30.203, 30.0)), Entity(2, LatLng(30.401, 30.0)), Entity(3, LatLng(30.302, 30.0)), ) val newList = listOf( Entity(10, LatLng(40.0, -30.0)), Entity(2, LatLng(33.401, 30.0)), Entity(3, LatLng(33.302, 30.0)), Entity(5, LatLng(34.302, 30.0)), Entity(8, LatLng(35.302, 30.0)), Entity(53, LatLng(35.302, 31.0)), ) DiffUtil .calculateDiff(object : DiffUtil.Callback() { override fun getOldListSize(): Int = oldList.size override fun getNewListSize(): Int = newList.size override fun areItemsTheSame(oldPos: Int, newPos: Int): Boolean = oldList[oldPos].id == newList[newPos].id override fun areContentsTheSame(oldPos: Int, newPos: Int): Boolean = oldList[oldPos] == newList[newPos] }, true) .dispatchUpdatesTo(object : ListUpdateCallback { override fun onInserted(position: Int, count: Int) { Log.d(TAG, "onInserted: position=$position, count=$count") } override fun onRemoved(position: Int, count: Int) { Log.d(TAG, "onRemoved: position=$position, count=$count") } override fun onMoved(fromPosition: Int, toPosition: Int) { Log.d(TAG, "onMoved: fromPosition=$fromPosition, toPosition=$toPosition") } override fun onChanged(position: Int, count: Int, payload: Any?) { Log.d(TAG, "onChanged: position=$position, count=$count, payload=$payload") } }) 
    submitted by /u/psteiger
    [link] [comments]

    Android Dev Summit 2021 Talks Summary or content outline

    Posted: 18 Nov 2021 11:38 AM PST

    Design with the Italians #3: Chris and Javier told us everything about LAYOUTS ����

    Posted: 18 Nov 2021 11:39 AM PST

    100k app installs

    Posted: 18 Nov 2021 12:00 PM PST

    How much can an app with 100k installs make me and how long will it take to get 100k installs without marketing

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

    No comments:

    Post a Comment