Android Dev - Google reaction after Apple cut their fee |
- Google reaction after Apple cut their fee
- Roman Elizarov is the new Project Lead for Kotlin
- Apple MacBook Air M1 is very slow in gradle builds
- Android Sitemap - Find every link ever pointing to the Android Developer site.
- Is anyone using latest gradle and having crash in Android 4?
- How to contribute to big open source projects?
- Which is the best way to manage more than one ViewModel?
- SwipeView using MotionLayout
- cdroid NDK - configurable CMake C and C++ development/packaging module
- How I localized my media player app into 50 languages for free
- Responsive UI and problems with AdobeXD export
- I have set my "Target audience" age to 18+ in google play console. But how do I as a user see the age restriction in my app in playstore?
- Play Console: We're unable to process your payment because your tax info is incomplete
- Did anybody make in app calling using WebRTC without Firebase servers?
- when to use @TypeConverters and when to use the new @Relation
- Do you prototype your app before coding it?
- Implement a certain type of horizontal scroll view
- What is the best way to running Linux apps on a Xiaomi Mi 8?
- Anyone still using GeoFire, and using Kotlin? I've developed a small geofire-ktx library for converting GeoQueries to Flows.
- What is your strategy of passing around Object with vary size from Activity to Activity/ Activity to Fragment?
- Create array from a lot of variables with similar name [Java]
- A pragmatic guide to Hilt with Kotlin
- Anyone has experience with One-Time permissions in Android 11?
- I'm new to app development. Why is google taking away almost 70% of my profits every month? What does the negative dollars in this pic mean?
| Google reaction after Apple cut their fee Posted: 18 Nov 2020 04:12 PM PST
| ||
| Roman Elizarov is the new Project Lead for Kotlin Posted: 19 Nov 2020 04:14 AM PST
| ||
| Apple MacBook Air M1 is very slow in gradle builds Posted: 19 Nov 2020 07:26 AM PST I run `./gradlew clean assembleDebug --offline` multiple times on medium size project and here is build times: MacBook Pro 15 (Mid 2015) – 1:43 m MacBook Air 2020 (M1) – 5:40+ m Android Studio UI feels sluggish as well. No way to run emulators. I believe we need native JVM/JDK first to consider M1 as decent development platform. [link] [comments] | ||
| Android Sitemap - Find every link ever pointing to the Android Developer site. Posted: 19 Nov 2020 04:44 AM PST Android Sitemap aims to be your starting point to find every link pointing to Android Developer sites: Android Developers and Android Open Source Project. The repo was created to see the full scope of Android documentation guides and reference APIs. Some gems like API diff, Android Open Source Project reference APIs were discovered in the process which I find very interesting. The repo contains only links and no meta information like Title, Description for now as there are 30000+ links. The content is generated from here and here. Project URL: https://github.com/androiddevnotes/android-sitemap Contents
[link] [comments] | ||
| Is anyone using latest gradle and having crash in Android 4? Posted: 19 Nov 2020 06:55 AM PST Recently, we just upgraded gradle from 4.0.1 to 4.1.1 But we are getting java.lang.VerifyError: f/i/b/f during Android 4 app start. Anyone has experienced the same as I do - https://stackoverflow.com/questions/64914138/java-lang-verifyerror-f-i-b-f-in-android-4-after-upgrade-gradle-from-4-0-1-to-4 We prefer to use latest gradle 4.1.1 as it claims it generate smaller APK. Thanks. [link] [comments] | ||
| How to contribute to big open source projects? Posted: 19 Nov 2020 08:47 AM PST I have spent the last 2 years learning Java and Android, the last year in Kotlin. I can make some pretty clean apps now and understand a lot of what I thought it would take to get a job as a developer. In order to grow my skills I started looking into open source projects like Signal who allow bug fixes/contributions. These apps are huge compared to what I'm used to and I cannot really grasp where things are. I figured I would just find a bug and start digging in and hopefully get a grasp of how it all works. Is this similar to how it would be on the job? How can I most effectively become a contributor to projects like this? [link] [comments] | ||
| Which is the best way to manage more than one ViewModel? Posted: 19 Nov 2020 08:27 AM PST Thinking about develop an app which needs AndroidViewModel with application context for Room and another class that extend ViewModel with an argument (which brings me to extend ViewModelProvider.Factory) All these makes me think which the optimal way to implement ViewModel, is it right to initialize several viewmodels? how would you handle this? [link] [comments] | ||
| Posted: 19 Nov 2020 08:06 AM PST | ||
| cdroid NDK - configurable CMake C and C++ development/packaging module Posted: 19 Nov 2020 01:17 AM PST https://github.com/Wirtos/cdroidI was kinda uncomfortable with all the magic gradle/forced jni stuff, so I made this in order to easily port/cross-develop small GL/vulkan apps for android in C and C++ (without even a line in java at all). There's a little guides on NDK in general, but it was fun. I saw other projects like this, but they seemed very monolithic and fragile in general. Suggestions are welcomed. All you need is to drag'n'drop cdroid.cmake in your CMake 3.18 project using NDK toolchain and declare some cmake variables. [link] [comments] | ||
| How I localized my media player app into 50 languages for free Posted: 19 Nov 2020 03:05 AM PST
| ||
| Responsive UI and problems with AdobeXD export Posted: 19 Nov 2020 01:26 AM PST Hello. Thank you for your help, Regards. [link] [comments] | ||
| Posted: 19 Nov 2020 04:23 AM PST | ||
| Play Console: We're unable to process your payment because your tax info is incomplete Posted: 19 Nov 2020 03:23 AM PST I got this in a big red warning banner on the play console. I clicked on it and then it asked for the information written on my income tax forms which I don't have since I've never paid income tax nor do I think most people in my country pay even though it exists in the law. So I just entered my name in both "full name" and in "signature" and put my address. Did I do something bad? Will this prevent me from getting paid? [link] [comments] | ||
| Did anybody make in app calling using WebRTC without Firebase servers? Posted: 18 Nov 2020 02:32 PM PST Basically the title. I know how to implement WebRTC with Firebase to allow users to establish a connection and conversate using the app. I wanted to know is it possible to do with my own server, and how hard would it be to do if somebody knows? For example I know doing Notifications without Firebase is borderline impossible to do, so I wanted to see if there is some insight on this issue with WebRTC... [link] [comments] | ||
| when to use @TypeConverters and when to use the new @Relation Posted: 18 Nov 2020 06:04 PM PST It seems to be a stupid question idk but, I feel like TypeConverters are more easily to be used instead of making a lot of tables in our code base, I mean after all we're more frontend like developers not backend developers. [link] [comments] | ||
| Do you prototype your app before coding it? Posted: 19 Nov 2020 01:09 AM PST Hi all, I am wondering if you are prototyping your mobile app with Adobe XD (or similar) before actually building it? Do you see any advantage doing so (doing some back and forth design testing before implementation) or do you usually go straight to the code? The reason I'm asking is because I feel that prototyping is going to take me a lot of time! But I'm wondering if it will also help me doing more visual testing too as I often find myself testing once the code is done, which is not very optimal. [link] [comments] | ||
| Implement a certain type of horizontal scroll view Posted: 18 Nov 2020 08:58 PM PST
| ||
| What is the best way to running Linux apps on a Xiaomi Mi 8? Posted: 19 Nov 2020 03:32 AM PST I don't know anything about this subject and Linux. I just need to run some lite desktop applications on my Mi 8 (MIUI 12.0.1) what is the best way to do this? Will I have problem accessing and editing files on the device? Thank you [link] [comments] | ||
| Posted: 18 Nov 2020 07:54 PM PST https://github.com/psteiger/geofire-ktx [link] [comments] | ||
| Posted: 18 Nov 2020 05:35 PM PST All the while, using Parcelable is my only choice, to pass around the Object with vary size from Activity to Activity/ Activity to Fragment. Most of the time, our Object size is below 500 kilo bytes, which is still Okish to use Parcelable to pass around. However, as our user base grow, from Firebase Crashlytic, we notice there are edge cases, where we will hit by Caused by android.os.TransactionTooLargeException. We will need to rework our previous strategy - Use a singleton in memory do hold the Object. Doesn't work on low memory condition/ app restoration. - Passing around SQLite row id. Perform read operation in receiver. Decrease performance and increase code complexity. As, I/O operation is time consuming and we need to rework our code in async way. Do you encounter such issue? What is your strategy of passing around Object with vary size from Activity to Activity/ Activity to Fragment? [link] [comments] | ||
| Create array from a lot of variables with similar name [Java] Posted: 18 Nov 2020 11:08 PM PST Hey all, I can't seem to find an ansewer online because I can't seem to articulate myself properly haha so, I've got the following variables: Is there a way to put them all into an array without adding them one by one? specifically, to check if they're null and only then add them to an array list Super noob here, sorry! [link] [comments] | ||
| A pragmatic guide to Hilt with Kotlin Posted: 19 Nov 2020 02:31 AM PST
| ||
| Anyone has experience with One-Time permissions in Android 11? Posted: 18 Nov 2020 10:33 AM PST Hi, When I choose "Only this time" option in the permission dialog, kill the app and call it always returns I am using the new Activity Result API and I am following these guides https://developer.android.com/training/permissions/requesting#one-time but I am stuck on handing the "Only this time" option. Can someone help? [link] [comments] | ||
| Posted: 18 Nov 2020 09:01 AM PST
|
| 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