• Breaking News

    [Android][timeline][#f39c12]

    Thursday, July 29, 2021

    Stream releases a new Chat SDK for Jetpack Compose Android Dev

    Stream releases a new Chat SDK for Jetpack Compose Android Dev


    Stream releases a new Chat SDK for Jetpack Compose

    Posted: 29 Jul 2021 08:30 AM PDT

    Arctic Fox doesn't let you change the IDE theme to anythign other than the two default themes

    Posted: 29 Jul 2021 12:55 PM PDT

    I downloaded Arctic Fox yesterday and it seems like it doesn't allow you to use custom theme plugins like Darcula Solid anymore. Can someone confirm this behavior?

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

    Android studio is now available for Mac Arm chip(M1).

    Posted: 28 Jul 2021 08:45 PM PDT

    Reasons to switch from Volley to Retrofit (or something else)?

    Posted: 29 Jul 2021 09:21 AM PDT

    I'm in the process of updating the internal network library my group's apps use to communicate with our backend. The library handles authorization and network requests/responses. It was originally written with Volley, but now's a good opportunity to consider other options for our network communication. So does anyone have a good reason for me to switch us over to Retrofit or something else?

    For context, this is the basic way we use our APIs: On login, apps download necessary data for functioning, making several API calls to get user and system info, along with definitions for certain things. Depending on the app, we do periodic synchronization calls to those same APIs or sync based on updates through SignalR. Updates to user settings, along with data collected on the user's side, are uploaded as needed. This includes using multipart puts/posts.

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

    Advertise another app via Push notifications

    Posted: 29 Jul 2021 10:34 AM PDT

    Hello guys, I have recently added OneSignal SDK to my project. I have found that I have 1000 subscribed users, do you know if it is "OK" to send a push notification to those users stating that I have created a new app that is similar but with different features? It would redirect the user to the new app Play Store listing.

    I could not find a definitive answer on this yet, I saw this bit from their new policy

    • Promotion or installation tactics that redirect users to Google Play or download apps without informed user action.

    Would this count as a violation?

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

    Preference for defining coroutine context

    Posted: 29 Jul 2021 10:09 AM PDT

    Assuming you have a function called doWork() that does some CPU intensive or network related work. And you call it in your Activity/ViewModel

    Would you opt to let the consumer define which context to use:

    object Utility { suspend fun doWork(): String = coroutineScope { val result = doHeavyWork() return@coroutineScope result } } class Activity() { override fun onCreate(){ lifecycleScope.launch { val resultOfWork = withContext(Dispatcher.IO) { Utility.doWork() } } } } 

    Or is it better to encapsulate that in the function body itself:

    object Utility { suspend fun doWork(): String = coroutineScope { val result = async(context = Dispatchers.IO) { doHeavyWork() }.await() return@coroutineScope withContext(Dispatchers.Main) { result } } } class Activity() { override fun onCreate(){ lifecycleScope.launch { val resultOfWork = Utility.doWork() } } } 
    submitted by /u/Najubhai
    [link] [comments]

    I need an app that can edit LPM on samsung.

    Posted: 29 Jul 2021 01:36 PM PDT

    I can`t manage to find an app that can edit the LPM file the original one. I don`t want to replace rename or anything else I want to edit it. It`s the last step before changing my magisk root to twrp

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

    Compose - Activity question

    Posted: 29 Jul 2021 12:00 PM PDT

    Is there a reason to have multiple Activities in Android Jetpack Compose focused project?

    Another question. How do I for example separate Authentication screens from Content screens? When user authenticates, how do I remove Authentication compose screens? How do I remove them from stack?

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

    In-app purchase question

    Posted: 29 Jul 2021 04:55 AM PDT

    I have an app that is 100% free and without ads and right now I want to add in-app purchases to some existing features and a new features I developed in meantime.

    Is it possible to add in-app purchase to existing elements which have been free so far and is it possible to make existing users unaffected by this new changes in app? They will get all features for free.

    Would it be against google policy?

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

    App set ID: What is it and how to use it for fraud prevention?

    Posted: 28 Jul 2021 10:16 PM PDT

    Google just introduced a new API for a privacy friendly fraud prevention. I have gone through the documentation but dont really understand how it works and how it can be used for fraud prevention.

    Would appreciate if anyone can share there insights on this.

    https://developer.android.com/training/articles/app-set-id

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

    Is there a preset library of "colors.xml" and "themes.xml" files that I can use in my projects?

    Posted: 29 Jul 2021 06:43 AM PDT

    Does Google Play Store ban drug metaphor games?

    Posted: 29 Jul 2021 06:08 AM PDT

    I am a game dev. Currently planning to publish my game on Google Play Store once it is finished. in game, I am using "Blue Candy" as a metaphor for "Crystal Meth". There is nothing in game tells "Blue meth". It is just "Blue candy" but it is obv because of the other game entities. So I checked the google play store about that and some devs use "weed" instead of "marihuana" and weed doesn't get ban in Store. Could "Blue Candy" get ban?

    submitted by /u/Psychological-Fig1
    [link] [comments]

    OPINIONS

    Posted: 29 Jul 2021 08:51 AM PDT

    Hi guys so when someone asks you to build an app for them based on your own app , let's like a copy of your app but with different branding what do you do ? How much you charge for the price ? Or if they want a full source code how much for the price ? And any legal stuff should you consider too ?

    Thanks

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

    About the state of database frameworks

    Posted: 28 Jul 2021 11:40 PM PDT

    I'm honestly disappointed about the available database frameworks in the android ecosystem. I did my research for a complex projects, which heavily relies on storage and every framework that i found didn't met the requirements. Does anyone else felt like this? When i write a backend application, i have a ton of good frameworks like hibernate, eclipse link etc. When i write an ios application i have core data, which is sqlite in the core, but with so many good features around it, that i can do literally anything. And when i write an android application, i start crying, because even cant get relationship handling right. In fact, when you want to do anything more complex than a simple todo app, you end up writing many workarounds or manual functions by yourself, simply because the framework does not provide it, even when you would expect that it should do it. Room is too verbose, Objectbox seems to have its focus somewhere else and Realm is promising with the new realm kotlin, but also lacks in many aspects. I'm curious about your opinion, what do you think about this topic?

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

    sStripe Google Pay Error

    Posted: 29 Jul 2021 01:47 AM PDT

    I want to make an app for android watches, does the watch matter? Chinese suggestions?

    Posted: 28 Jul 2021 09:09 PM PDT

    I really just want to order a cheap Chinese one off aliexpress but do all android watches allow you to install apps onto them? I feel like this is a dumb question but I felt compelled to ask.

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

    No comments:

    Post a Comment

    Fashion

    Beauty

    Travel