Android Dev - Just found out that i can drag expressions into watches list in Android Studio .. very handy! |
- Just found out that i can drag expressions into watches list in Android Studio .. very handy!
- Android R, Package Visibility, and Some Holes
- Android Studio 4.0 Beta 4 available
- App update stuck from more than 20 days. Are you in a similiar situation?
- What is current status of Kotlin Native ?
- Long review times (Google Play)
- Android Battery Testing at Microsoft YourPhone
- Help replacing "this" with actual value
- TensorFlow Lite Model Maker: Build an Image Classifier for Android
- Scrollable page?
- How to remove sim lock on GSM phone ?
- What do you call apps that are like a google site where you can put info on it and people can look through ur info?
- Clearable edit text inheritance hell, is there a better way? (Kotlin)
- Android Canvas API: from Noob to Ninja — Inroduction
- Google robbed me for $680 (80% of my monthly AdMob revenue) as Invalid Traffic
- My old books(tutorial using eclipse)for the android studio
- Devs, what's your solution for poor user rating due to Huawei devices
- Coroutines & Patterns for work that shouldn’t be cancelled
- unknown call type in oppo, realme devices
- Need Some Advice
- My Internal Test App is not compatible with my own device.
- How to extract content from webview files?
- Dealing with long processing queues due to Covid-19 for app update on Play Store
- Technical Android Interview
| Just found out that i can drag expressions into watches list in Android Studio .. very handy! Posted: 07 Apr 2020 09:11 PM PDT
| ||
| Android R, Package Visibility, and Some Holes Posted: 07 Apr 2020 06:44 PM PDT | ||
| Android Studio 4.0 Beta 4 available Posted: 07 Apr 2020 10:53 PM PDT | ||
| App update stuck from more than 20 days. Are you in a similiar situation? Posted: 08 Apr 2020 04:57 AM PDT Hi, I sent an update to the store listing (only description) 20 days ago, and the update is still not available for download. Only the store listing was updated (I edited the store description only). History: 23 days ago I sent an update o the store listing of my app. After 3 days, seeing that the update was not released yet, I just sent it again doing a little edit to the description. Now, 20 days later, the update is still not available. I am pretty sure that the process is stuck for some reasons, as 20 days for only descriptions is really a lot. I wrote to the support about 10 days ago, and they told me to just wait. About 4 days ago I wrote to the support again and they didn't respond. Context: the app is a wallpaper editor app that has never received suspensions/removal (published without issues from years). Are you in a similiar situation? I just don't know what to do. Thanks in advance [link] [comments] | ||
| What is current status of Kotlin Native ? Posted: 08 Apr 2020 04:48 AM PDT As far as I got in this topic I have found these answers Kotlin Native - sharing code between platforms - already used in prod by companies in following article : https://medium.com/@touchlab/top-8-mobile-apps-in-2020-built-with-kotlin-multiplatform-3e9fea10e2af SQLDelight -> Used by CashApp in production -> Can someone confirm this ? Multithreading -> NOT READY for production, many people that have tried KN on iOS complained about unstable memory model and multithreading on iOS - can someone explain / elaborate on current status of this ? Coroutines -> I have not found much about this topic KTOR -> Not used by anyone , e.g. VMWare engineer in this article states, that at VMWare they are not using multiplatfrom http client, they only share logic that generated requests and requests are being executed using HTTP client separatedly on each platform. Is Kotlin Native production ready in 04/2020 ? Any success / failure stories from using Kotlin Native in prod ? Thanks. [link] [comments] | ||
| Long review times (Google Play) Posted: 08 Apr 2020 02:01 AM PDT Hi, Is there anyone else here who is experiencing anything similar? Thanks! [link] [comments] | ||
| Android Battery Testing at Microsoft YourPhone Posted: 08 Apr 2020 07:57 AM PDT
| ||
| Help replacing "this" with actual value Posted: 08 Apr 2020 07:41 AM PDT I have written a code which is supposed to get elements from a mysql table. It does so perfectly, but i am trying to execute the function again when a button is pressed, where the elements will be different. The call "this" will not be the same inside the onbuttonclicklistener. I tried to print the value of "this", and use that instead, but with no luck. How can i use an actual value/path etc. instead of "this"? Ok, so this is the pastebin for the code where i am trying to figure out what to replace "this" with. This is the pastebin for the custom listview On line 73 in the first pastebin is where i have trouble. I tried to print "this" from line 87 and use that, but that didnt work. It is just supposed to refresh the listview. The collectdata() function returns the information i want, but the listview does not refresh. I am guessing this is because i also have to reinitialize the listview function, which i am trying to do. [link] [comments] | ||
| TensorFlow Lite Model Maker: Build an Image Classifier for Android Posted: 08 Apr 2020 07:29 AM PDT
| ||
| Posted: 08 Apr 2020 03:14 AM PDT Hey, guys! I am in college for Software App Development. I just finished my first class (Basically an intro to Android Studio) and now I am taking Graphics and Interface Design. Long story short, we have a client that needs a website, but during our class interview with her, the client also stated she would like an app. No one in my class has any experience with apps besides me, so my professor asked if I would like to build an app for the client instead of a webpage. Since I want to eventually pursue a job with Android Studio, I agreed. So, my question; how do I makes my page be able to scroll? I know there is scrollview, but I can't seem to get it to work. I drag it over to my .xml design, but I cant add anything over it? I don't know. Sorry if this sounds dumb, I only have a month of experience. I will post my code when I get home later today. Thanks [link] [comments] | ||
| How to remove sim lock on GSM phone ? Posted: 08 Apr 2020 06:38 AM PDT So recently I got Wiko y80, the phone has sim lock, I have no idea on which network. I searched on internet and there is a lot of ways but I didn't find any of them working. Device is on android 9. Is there a way to remove sim lock ? [link] [comments] | ||
| Posted: 08 Apr 2020 06:21 AM PDT Kinda like those tourist apps where you can search for attractions or Airbnb where you can search places for countries? [link] [comments] | ||
| Clearable edit text inheritance hell, is there a better way? (Kotlin) Posted: 08 Apr 2020 12:04 AM PDT My company's app wants to transition to using edit texts with a clear icon, similar to what is detailed in this blog The problem is that while that blog favors a composition strategy (adding an extension function to enable clearable functionality), it requires adding code to all screens and manually calling it on every text field. Additionally, it automatically sets an OnTouchListener and OnFocusChangeListener, which might clash with other listeners that are used. So far the only other solution I've found is to create new classes like ClearableEditText overriding onTouchEvent and onFocusChanged (this way I can use search-and-replace in XMLs), but this introduces yet another problem, because the app uses three kinds of EditTexts (AppCompatEditText, TextInputEditText, AppCompatAutoCompleteTextView) that all want this functionality, requiring me to triplicate this code. Is there a better way I can do this? [link] [comments] | ||
| Android Canvas API: from Noob to Ninja — Inroduction Posted: 07 Apr 2020 09:36 AM PDT
| ||
| Google robbed me for $680 (80% of my monthly AdMob revenue) as Invalid Traffic Posted: 07 Apr 2020 09:52 AM PDT Every month, at the end of month Google calculate monthly revenue by Ads. You know, it's looks like : Ending balance: $Z Mar 1-31, 2020: Invalid Traffic - AdMob Applications - AdWords Ads = -$Y Mar 1-31, 2020: Earnings - AdMob Applications - AdWords Ads = $X where Y is usually less %1 of X. and Z = X - Y. Z goes as "Starting balance" at the next month and paid by automatic payment after 20th. Same was with me long time. But in this month (April), I got this: Apr 3, 2020: Invalid Traffic - AdMob Applications - AdWords Ads = −$680.00!!!!! It's about 80% of "Starting balance"!!! I.e. they already decreased my revenue for the usually "less 1% of earnings" at the end of March. And at April, 3 they just robbed me for $680! I have few apps for iOS and Android. No any warning letters before or later, no any control panel notifications, no any descriptions the reason why, no any claims for my apps. Just nothing... Silence... but, "hmmm, you know, I took your money". Good work "don't be evil" corporation! Of course I wrote to the support, but looking in internet, I see, I'm not the first one. Many developers also was robbed this way. The one thing I don't know but want to know: it was somebody robbed by 80% of monthly income? For me it's seems like a outrage. The horror of the situation is I don't know the reason, and believe I will not hear it from the support. It will be standard bot reply with a link to Help. But I already read it, and believe my apps is ok. How can I fix it if I even don't know what is wrong??? So, I risk to getting the same huge revenue cut in the next month, and next, and next. What can I do in this situation? Is UnityAds or MoPub is good alternative for AdMob? [link] [comments] | ||
| My old books(tutorial using eclipse)for the android studio Posted: 08 Apr 2020 04:33 AM PDT How can I use my old book for Android development tutorials in the new android studio [link] [comments] | ||
| Devs, what's your solution for poor user rating due to Huawei devices Posted: 07 Apr 2020 09:04 AM PDT Huawei devices are well known by android developers for aggressively killing background services. Services are killed even when adding the app in battery saver (and other s*it stuff). The problem is that many of the 1 star ratings on my app on play store are by Huawei users. My app depends entirely on background service which is killed almost always by these devices. If you have faced similar scenarios, what are the solutions you use to stop further poor ratings? Also, If you have any suggestion regarding the same, please share it here. (I am thinking of banning all the Huawei devices from Play console, but since Huawei is major OEM, app downloads might be significantly affected by that. What are your thoughts on this? What would you do in this case?) [link] [comments] | ||
| Coroutines & Patterns for work that shouldn’t be cancelled Posted: 07 Apr 2020 09:42 AM PDT
| ||
| unknown call type in oppo, realme devices Posted: 08 Apr 2020 03:39 AM PDT hi folks. I need your help with something. In the snippet below, I am trying to read call logs and print their call type In some cases, I get values not listed in the official docs callType | ||
| Posted: 07 Apr 2020 11:27 PM PDT So im totally new to android development . I took java classes and know a little bit how java works .Now in android studio the xml is fairly easy to learn but I currently dont understand the backend its totally different from what i did while doing java. The new thing used is kotlin for android dev and they say it is better for android dev than java. Now to do the backend in kotlin would i also have to learn the basics of kotlin or not and can anyone reccomend any youtube channel or something that teach the backend of android dev in kotlin from sratch [link] [comments] | ||
| My Internal Test App is not compatible with my own device. Posted: 08 Apr 2020 02:52 AM PDT My app just got published in the internal test track, but when I try to download, it says "This app is no longer compatible with your device. Contact the developers for more info". The same version works well when I install it through android studio. But playstore says that its not compatible with my device. Is there something I'm missing here? [link] [comments] | ||
| How to extract content from webview files? Posted: 08 Apr 2020 02:37 AM PDT I've pulled lots of webview files from an app cache however i believe these files contain many other files just compressed within them. How would i go about extracting the contents of these webview cache files? Thanks in advance. [link] [comments] | ||
| Dealing with long processing queues due to Covid-19 for app update on Play Store Posted: 07 Apr 2020 10:14 PM PDT Usually our app used to take ~1 hr for the initial 5% release. In the last week, we did two releases: one took ~7 hrs and the other took ~30 mins! This week too we did two releases. First one didn't even get reviewed for 2 days! We had to do another release so we halted the previous (still under review) update and released again. This build too is still under review for ~1 day now. These releases are business critical due to large scale lockdown in our country of operation. Of course the banner on Play Console says that review may take upto 7 days but, I was wondering if anyone else is facing similar issues and if there's anything else we can do? [link] [comments] | ||
| Posted: 07 Apr 2020 12:55 PM PDT I have a technical android interview upcoming. I have spent the last 5 years developing on Android using the NDK and a proprietary C++ framework. Although I have developed and published android java apps in the past, the knowledge is not fresh or robust. The company provided me with topics to focus my study on. They are as follows.... Activities, Views, Fragments, Services, memory management, scrolling performance, and RecyclerView. I am wondering if someone might be able to provide some valuable sub-topics for each of these topics where I might want to focus my attention. For something like RecyclerView, my direction is rather straightforward....I will just study the api, and implement a few screens that use RecyclerView. But for something more general and vague, like Services or Activities, I am sure these could be broken down further into areas for focus on. Any thoughts or direction or advice would be appreciated! Cheers. [link] [comments] |
| You are subscribed to email updates from Developing Android Apps. To stop receiving these emails, you may unsubscribe now. | Email delivery powered by Google |
| Google, 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States | |
No comments:
Post a Comment