• Breaking News

    Saturday, August 1, 2020

    Android Dev - App Feedback Thread - August 01, 2020

    Android Dev - App Feedback Thread - August 01, 2020


    App Feedback Thread - August 01, 2020

    Posted: 01 Aug 2020 05:29 AM PDT

    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 top level comment
    • must make effort to respond to questions and feedback from commenters
    • 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.

    - Da Mods

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

    AppBoost is finally here - An open source ad-network for android developers

    Posted: 01 Aug 2020 12:02 AM PDT

    AppBoost is finally here - An open source ad-network for android developers

    Hi guys am happy to share with you this excitement. I have finally completed the MVP.

    AppBoost https://appboost.org is an adnetwork i have been developing to help android developers promote their apps for free.

    It works through cross-promotion, each developer that integrates the ad-network in their app gets other developers apps promoted in his/her app and vice versa. The sdk is currently only available for native apps developed with Java. I will soon release another version for Kotlin as soon as i get validation for it.

    The app stores are getting more and more saturated and competitive with thousands of apps being published everyday, Developers and Businesses with little to no budgets are finding it difficult to sustain their app businesses.

    AppBoost Aims to solve this problem by helping developers and businesses drive traffic to their apps and thereby increase their revenues.

    We aim to create a community of developers helping each other succeed in these tough times.

    Contributions especially to the website are welcome!

    I would be happy to hear your thoughts

    Thanks for reading this🙏

    Below is a screenshot of how the ads look like. Simple, high converting and non-intrusive ads.

    Simple non-intrusive ads

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

    Jetpack compose for desktop

    Posted: 01 Aug 2020 07:24 AM PDT

    Chet Haase - Modern Android Development

    Posted: 31 Jul 2020 09:52 PM PDT

    Professional deformation of developers

    Posted: 01 Aug 2020 05:01 AM PDT

    Hi guys!

    I'm doing a research regarding personality traits of some professionals. Developers are usually required to have a very logical and analytical mindset.
    Do you think the same applies when it comes to personal life, leading to very logical and meaningful conversations, instead of more emotional or small-talk based ones?

    Curious to hear your experiences! Thanks!

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

    Is it legal for companies to scrap Play Store listings?

    Posted: 01 Aug 2020 08:12 AM PDT

    Hey Guys! So, I am very curious to know, is it legal for companies to scrap the Play Store listings for commercial purpose?

    I did read through a lot of articles on web scrapping legality in general, I understand and can imagine that most of these companies are crawling publicly available data. However, I don't understand how some companies have made it a concrete business by publicly sell these data (labelled as Play Store Intelligence) via an API. Further, apparently many big brands are their customer as well (publicly mentioned in their respective websites).

    Would be interesting to know your take on it. :)

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

    Android Context in Dire Straits?

    Posted: 31 Jul 2020 11:04 PM PDT

    I authored this article where we DeepDive into Android Context and why it is such a mess. Part 1. Please check it out at - https://medium.com/@roy.abhriya/android-context-in-dire-straits-part-1-99883cc98cea
    Any feedback or suggestion is welcome.

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

    Whats better NavHostFragment or ViewPager2 (I don't know if this will be taken down)

    Posted: 01 Aug 2020 07:11 AM PDT

    What are the pros and cons?

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

    How can make a app to run a command on the Android operating system

    Posted: 01 Aug 2020 06:53 AM PDT

    So the use case for this app is to enable adb via wifi on the oculus quest (witch runs Android) without plugging it into a computer first. Generally you would have to first plug it in and connect to it via usb then run adb tcpip 5555 but I am trying to do it without plugging it in first.

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

    Is there a framework or a pattern name for this component which can be slided here?

    Posted: 01 Aug 2020 06:47 AM PDT

    Multiple google play developer !!!

    Posted: 01 Aug 2020 06:27 AM PDT

    Any tips to avoid closing acc ?

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

    Now in Android: 22 - Android 11 Beta 2, AndroidX, articles, videos, training, and more!

    Posted: 31 Jul 2020 12:19 PM PDT

    Managing databases in android

    Posted: 31 Jul 2020 09:15 PM PDT

    How to solve Google log in problem in my app?

    Posted: 01 Aug 2020 02:52 AM PDT

    Hey there!

    Please give me perfect sub-reddit if this is not suitable my question below!

    I implemented Google authentication in my android app. I use Firebase as server and function. The problem is when I run app from Android Studio, Google authentication works well. But when I upload it to play store , Google authentication fail. It shows 'Authentication failed'.

    Stuck here. Can anyone help me?

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

    Is it possible to develop an Android app in Python?

    Posted: 31 Jul 2020 08:46 PM PDT

    I already know how to write and program an app though the android SDK, I was just curious if it's possible to write an app just with python?

    And if so what are some tools I can use to convert my python code to an apk?

    Thanks in advance!

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

    An update on Exposure Notifications

    Posted: 31 Jul 2020 11:35 AM PDT

    Native Memory Profiling with Android Studio 4.1

    Posted: 31 Jul 2020 01:22 PM PDT

    MVVM LiveData: What's the best way to go about this?

    Posted: 31 Jul 2020 12:24 PM PDT

    I am working on an app for an academic project, and I don't understand something here. According to some information I read and watched on the interwebs, when you use an MVVM structure, the view should be aware of the viewmodel and the viewmodel should be aware of the model (roughly). Forgive my terminology if that's not quite correct.

    I am working on an app that takes location data from the user, location data grabbed from a remote source, calculates some information (distances, heading, etc) and then displays it to the user in the main activity.

    From my understanding, I should have some LiveData and the View should observe that and display it on changes. However, one video said that the model should have LiveData that the ViewModel can observe, then the ViewModel should have LiveData that the View can observe. Is that right? It seems kind of crazy to have multiple LiveData sets.

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

    Facebook and admob ads

    Posted: 31 Jul 2020 09:28 AM PDT

    I have an app with admob ads can you imagine that my cpm is 0.06$ I switch to the Facebook ads and the cpm was around .5 it's very good compare to admob ads but the fill rate in Facebook was 56% which awful now I'm I'm using both of them with admob mediation but admob usually show their ads and it has been one month I'm waiting for admob to optimize the cpm for the both network but nothing happens I manually enter the cpm for Facebook I tried to put very highly cpm for Facebook to made their ads show first but still admob get most of the ads the question is I thing about something simple since the Facebook ads pay the high cpm and low fill rate in the code in Facebook method if the there is no Facebook ads show admob ads any one try this trick or any one know is this will efficiency work ? Sorry for poor English it's not my first language

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

    When did cloud functions become a part of the blaze plan??

    Posted: 31 Jul 2020 11:26 AM PDT

    I saw that cloud functions are not free anymore and we need to enable billing to use it.
    Is there a way I can use it for free?? when did it become a paid service??

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

    No comments:

    Post a Comment