• Breaking News

    Wednesday, March 11, 2020

    Android Dev - New Google post about Android 11 storage

    Android Dev - New Google post about Android 11 storage


    New Google post about Android 11 storage

    Posted: 11 Mar 2020 02:58 AM PDT

    Android Studio 3.6.1 Severe lagging when typing while suggestion/intellisense popped up.

    Posted: 11 Mar 2020 06:28 AM PDT

    I've been looking for other reports about this issue that I'm having. So far I have confirmed this on both my desktop (linux) and macbook (OSX Catalina), this also happen on two of my coworkers (using macbook), but another coworker doesn't have this issue.

     
    Basically the issue is, if you type something and Android Studio give you a suggestions, all of a sudden it doesn't accept you input anymore or severely lagging and skipping letters. You need to dismiss the suggestion in order have normal typing again.

     
    Does anybody else have this issue? Is there a bug tracker entry I can follow?

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

    How can I improve my code review skills?

    Posted: 10 Mar 2020 05:44 PM PDT

    I've been an Android dev for a year now and feel like I sick at code reviews. Most of my comments are just styling/syntax issues.

    For experienced people, what is your process exactly?

    Additionally are there resources out there to help me get better?

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

    Scripting file templates for Android Studio

    Posted: 11 Mar 2020 03:34 AM PDT

    Kotlin Illustrated Guide, Chapter 1 - Variables, Expressions, and Types

    Posted: 11 Mar 2020 05:07 AM PDT

    Playlist talks - droidcon Toronto 2019

    Posted: 11 Mar 2020 07:11 AM PDT

    Top App Localization Challenges and How To Tackle Them

    Posted: 11 Mar 2020 07:08 AM PDT

    Time required to publish your application on playstore.

    Posted: 11 Mar 2020 04:39 AM PDT

    How much time is required to publish your 1st application on playstore? It's been more than 48 hours and my application status is still pending on play console..

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

    New Android test automation tool

    Posted: 11 Mar 2020 06:06 AM PDT

    About one year ago I had an idea for an alternative approach to UI testing on Android. Instead of ID matching, I would be fully relying on computer vision.

    Over the last year I put a lot of hours in creating this software I had in mind. It's now called repeato, and it's essentially a test recorder which allows you record and replay your tests via a desktop app.

    Now I am looking for feedback and beta testers.

    In order to get you motivated, I offer you direct support (skype/email) and an unlimited version of the software for those of you who get back to me with some feedback before 1st of April.

    Every feedback is very welcome!

    So here is a 1-min-demo-video:

    https://www.youtube.com/watch?v=IYld7PH7lKU

    Mac download:

    https://www.repeato.app/releases/repeato_for_mac_0.6.4.dmg

    Win download:

    https://www.repeato.app/releases/repeato_for_win_0.6.4.msi

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

    D8, R8 and enums - Kotlin Vocabulary

    Posted: 10 Mar 2020 12:39 PM PDT

    Does Volley use https?

    Posted: 11 Mar 2020 07:11 AM PDT

    Does the default android Volley networking library use https to request strings or JSON? Can't really find it on the internet. Thanks!

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

    Flutter

    Posted: 11 Mar 2020 07:04 AM PDT

    Native Android is so confusing sometimes even I learned it over 2 years, is it the time to move to flutter ?

    submitted by /u/NiceGuy-n2
    [link] [comments]

    Build to learn

    Posted: 11 Mar 2020 06:14 AM PDT

    hello everyone,

    i am a ASP.net developer and now working with RPA, i have an app idea that i would like to make but i have 0 knowledge on app building, i chose android because that the phone i use so it would be easy to debug.

    the idea itself should be easy to make and for now all i need is access to google maps, and a way to save data.

    i have ubuntu on my persona machine and i downloaded android studio and i would like start with the project today if possible.

    any tips about how to start, am kinda going in blind ... thanks -:)

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

    Which code do you like :

    Posted: 11 Mar 2020 05:06 AM PDT

    What this code does: Reads Name and Number from Input in form of "Name 123456" Puts it in map and then try to get it from Map, In case you need more detail

    1) Proper Naming and methods even if it's more lines of code. 2) Same functionality in fewer lines of code with 1 line doing multiple things.

    Example

    fun main(args: Array<String>) { val scan = Scanner(System.`in`) val newNumbers = scan.nextInt() // How many numbers you want to store in phoneBook scan.nextLine() val phoneMap= hashMapOf<String, String>() for(i in 0 until newNumbers) { val name = scan.nextLine() // Input format "Saurabh 908111000" val contactValues = name.split(" ") // Split and Store the value in map phoneMap.put(contactValues[0], contactValues[1]) } for (i in 0 until newNumbers ) { val checkNumber = scan.nextLine() // Whose number you want to lookup ? val phoneNumber = phoneMap.get(checkNumber) if(phoneNumber.isNullOrBlank()) { println("Not found") } else { println("$checkNumber=${phoneNumber}") } } } 

    Example 2:

    fun main(args: Array<String>) { val sc = Scanner(System.`in`) val count = sc.nextInt() val map = ( 1..count ).map{sc.next() to sc.nextLong()}.toMap() while(sc.hasNext()){ println(sc.next().let{ key -> map[key]?.let{ "$key=$it" } ?: "Not found" }) } } 
    submitted by /u/saurabhkukreja
    [link] [comments]

    Glide'ing your way into RecyclerView state invalidation

    Posted: 10 Mar 2020 06:53 PM PDT

    How do I use Navigation Components in FirebaseMessagingService onMessageReceived?

    Posted: 11 Mar 2020 03:16 AM PDT

    I want to show a notification while the app is in the foreground. I have already done this:

    https://github.com/VincentJoshuaET/ShopPet/blob/master/app/src/main/java/com/shoppet/service/MyFirebaseMessagingService.kt

    However, I cannot figure out how to set its click action to navigate to a fragment (I have a single activity app using Jetpack Navigation Components). So currently, tapping the notification does nothing but dismiss it.

    I handle background notifications here:

    https://github.com/VincentJoshuaET/ShopPet/blob/master/app/src/main/java/com/shoppet/MainActivity.kt

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

    How to merge rom and gapps into single zip?

    Posted: 11 Mar 2020 03:15 AM PDT

    I try to build my own custom os but I don't know how can I merge gapps and rom.zip into 1 zip file. Any help is appreciated. Thanks!

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

    [DEV] Counter Terrorist Stealth Assassin is now available on Playstore.

    Posted: 11 Mar 2020 06:54 AM PDT

    Monthly Play Store subscription questions

    Posted: 11 Mar 2020 02:30 AM PDT

    When a user subscribes to monthly charges for an app, does the play store send them a payment notification for each automatic payment that is made?

    Also, is it possible to make the user subscribe before downloading the app, or are subscriptions only possible through in-app purchases?

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

    How to make a chat app?

    Posted: 10 Mar 2020 09:58 PM PDT

    I want to make a chat app that can send and receive text,images,audio,video and location over a server. Any guide or the basics please?

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

    After so many talks and requests from Google, it won't un-break clipboard monitoring apps

    Posted: 11 Mar 2020 01:39 AM PDT

    FusedLocation help with maps

    Posted: 10 Mar 2020 04:53 PM PDT

    https://stackoverflow.com/questions/60627292/android-fusedlocationproviderclient-problem

    Above is the link to the stackOverlflow for my problem.

    Basically I am trying to show the users location on the map, it works by using an old version which is deprecated (yet still works?) Even though I am sure it didn't work before.

    The newer code however isn't showing the location on the map and I don't know why. Maybe I am missing something in the code or theres an error but it builds just doesn't show the pinpointed location like the depreceated code does using fusedLocationApi and googleClientApi.

    Links to the 2 codes:

    Old Working Version - https://pastebin.com/VG4AUJrv

    Updated Not Working Version - https://pastebin.com/xa674c5f

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

    No comments:

    Post a Comment