Android Dev - Openness of Android, now? |
- Openness of Android, now?
- Where can I understand the underlying Android SDK infrastructure?
- how to get familiar with TDD?
- Two-way data binding in Jetpack Compose
- Comparison of Mobile Developers Earning Capacity Across Countries
- How much do ad mediation companies earn?
- Coming back after 8 years. Anything I need to be aware of?
- Flutter Integration issue
- Is it possible to write and run basic code on a modern tablet?
- How is it possible, for an app to retain data after uninstallation, without SAF user interaction to pick a file/ folder location?
- How do you generally mange your projects' packages?
- RFID / NFC Widget
- I've used kotlin for about a year, then I moved on to Flutter for about two years, now my job requires that I use kotlin again, any tips or advice about how to be up-to-date with kotlin, and if there's a daily coding challenge or something like that it would be really cool.. thank you in advance
- Best way to fadein image views in a recyclerview?
- my app s countdown is not working as it should be.how to fix it(code inside)
- WearOs: Complications without borders
- When does Google Play pay?
- Why haven't Google added API 32 (12L) sources to Android SDK yet?
- I have 2 apps on the PlayStore. One is always reviewed and updated in a matter of hours, the other always takes a few days. Why?
- Automatic Semantic Versioning on your Gradle project
- My new Android app doesn't rank in Google Play Store, what do I do?
- Anyone knows how many app rejections till you get banned?
- How do I populate a spinner with data from a csv file?
- [OSS] Thud. News Reader - Pulse News Revival
- GoogleSignIn in a second activity
Posted: 09 Apr 2022 09:05 PM PDT Do you feel Google is increasingly closing down the Android app development? First, the introduction of Android App Bundle. Yeah, I'm all in for the benifits, but users can't directly install app bundle files! Also, Google is forcing us to hand over the app signing process to them! Then, if you move to any advanced functionality, like notification, and many more, you'll see Google is restricting everything and pushing Firebase everywhere. Yeah, it is free, but it means that apps are now increasingly dependent on Google. So if an app violates any of Google's thousands of vague policies, it'll risk in not only be removed from Play Store, but also be totally non-functional (if the core parts of the app doesn't work without Firebase). As an Android developer and enthusiast, it really saddens me. [link] [comments] | ||
Where can I understand the underlying Android SDK infrastructure? Posted: 10 Apr 2022 09:00 AM PDT The android developers website provides some clarification on how the design system works, with some visuals like the view hierarchy. I would like more detail like how is the view rendered, which internal functions are provoked, and how the overall design system executes, I believe its a MVC model but I would like to get more detail. There is the documentation which defines every function/class , but I doesn't explan how they are linked. Any recommendations on material like books, or anything online? I understand if something like this is not available and is only gained over years of experience. [link] [comments] | ||
Posted: 10 Apr 2022 09:04 AM PDT Hi all, I am an experience android developer, but still want to get familiar with TDD approach I know how to code using BDD, but TDD for me is still hard even I did start writing tests for use case layer of clean architecture in TDD way, but it's still hard for other layers. I think one of the reason mainly is because I can't make sure the code i wrote in test case is 100% correct before I really implement it(so IDE could provide me syntax highlighting), so sometimes I can't tell if a test failure is because of my logic mistake, or code syntax in test case wrong. Is there anyone could share about how did you get familiar with it and how long did you take? Many Thanks! [link] [comments] | ||
Two-way data binding in Jetpack Compose Posted: 10 Apr 2022 07:33 AM PDT
| ||
Comparison of Mobile Developers Earning Capacity Across Countries Posted: 10 Apr 2022 08:08 AM PDT
| ||
How much do ad mediation companies earn? Posted: 10 Apr 2022 11:13 AM PDT This is my first time adding ads to an Android game. i've been checking many related posts all day. i realized under almost every post, there were people suggesting ad mediating apps. I've checked a few of them but couldnt find "fees page" in any of their websites. They must be taking a portion from our ad revenues, right? So how much do they take? [link] [comments] | ||
Coming back after 8 years. Anything I need to be aware of? Posted: 10 Apr 2022 10:43 AM PDT so I haven't done any Android development for almost a decade. But I have decided on updating my old apps for newer devices and it is coming along. Man did things change with Gradle. I see that the Play Store now has a review process and apps have to be approved. Guess we are in the walled garden utopia? So based on others experiences, what should I look out for when updating old apps and rereleasing them on the Play Store? Thanks! [link] [comments] | ||
Posted: 10 Apr 2022 10:19 AM PDT While trying to integrate flutter into an existing native application I'm facing this issue. https://i.ibb.co/89n3zJ8/Screenshot-2022-04-10-at-9-14-17-PM.png It has something to do with the build types of current project but I've also created same build types in flutter module build.gradle file but still I'm getting this issue. Please help [link] [comments] | ||
Is it possible to write and run basic code on a modern tablet? Posted: 10 Apr 2022 10:19 AM PDT In short, my sister owns a galaxy tablet for drawing. She does not have a computer. She was wondering if it was possible to code on her tablet. She's looking into learning Java specifically, though I have no knowledge of programming so I cant help her personally. Any help or advice would be appreciated. She doesn't need anything in-depth or advanced, just the bare basics. [link] [comments] | ||
Posted: 10 Apr 2022 09:41 AM PDT All the while, I thought after targeting API 30, there is no way for an app, to retain its data after uninstallation. Unless, it implement SAF, which requires user to pick a file/ folder location explicitly - using a system UI like https://i.imgur.com/HfJjixE.png Or, by using android:hasFragileUserData="true" flag, which will pop up the following UI during uninstallation - https://www.xda-developers.com/android-10-manifest-flag-developers-retain-app-data-before-uninstalling/ However, I do notice a popular app in the market, which able to cleanly retain user multiple backup data, with 0 user interaction, and not using android:hasFragileUserData="true" flag method. This is a video, to show how it is able to cleanly read the retained data, after re-installation (I have already did a clean uninstall, before capturing the video) - https://www.youtube.com/watch?v=UqG4n_0xmVI Does anyone has any idea, how I can achieve such "magic"? [link] [comments] | ||
How do you generally mange your projects' packages? Posted: 10 Apr 2022 09:20 AM PDT I'm fairly new to Android development, and while I have exp with large-scale Java projects, I've not thought about the best way to manage Android code. How do you generally structure your projects in terms of directories and packages? How do you logically categorize things? Any material on this subject would be great as well. [link] [comments] | ||
Posted: 10 Apr 2022 12:37 AM PDT We got an RFID tag at work to enter locked doors, access printers and so on. Is there any way to copy/clone that info and add that to a widget in my Android phone? Feels kinda old school to use tag so want a better solution in my Android. Any suggestions to solve this? [link] [comments] | ||
Posted: 09 Apr 2022 06:30 PM PDT | ||
Best way to fadein image views in a recyclerview? Posted: 09 Apr 2022 10:39 PM PDT I have a recyclerview rendering one imageview in each view holder. I want these to fade in from 0 to 1 alpha when they show up. How should I implement this? Do I startAnimation in onbindviewholder? Is there risk the animation could happen before the image is even loaded, thus skipping the animation? [link] [comments] | ||
my app s countdown is not working as it should be.how to fix it(code inside) Posted: 10 Apr 2022 10:51 AM PDT so im completely a begginer to app development and i just did a little google and yt search..and kind of tried to make an app atleast looking at google or yt. so i looked at one of the vid and tried to code it as an starter..so i did code...so heres how it should happen..theirs a play button in middle and the time on left and score on right..so once i pressed play it starts the countdown from 10 and the ammount i tapped on the screen during that moment will display on the score side...so in my code when i pressed start it shows up the interface fine as i coded in xml...but once i pressed the play button and start tapping as fast as i can..the time of taps i press will start to appear..but once it pressed the play button the countdown which is on 10 goes instantly to 0 instead of decreasing by one by one...so i donno what made it happen like that..pls help me ... heres the code; ( u/override means "@"override) package com.example.speedclicky; import android.content.Intent; import com.google.android.material.snackbar.Snackbar; import androidx.appcompat.app.AppCompatActivity; import android.os.CountDownTimer; import androidx.navigation.NavController; import com.example.speedclicky.databinding.ActivityMainBinding; import android.view.Menu; public class MainActivity extends AppCompatActivity { RelativeLayout field; private CountDownTimer countDownTimer; u/Override play = findViewById(R.id.play); score.setText("0"); field.setEnabled(false); play.setOnClickListener(new View.OnClickListener() { field.setOnClickListener(new View.OnClickListener() { public void play(){ private void startTime(){ u/Override private void update(){ } please help me figure out whats wrong.... [link] [comments] | ||
WearOs: Complications without borders Posted: 10 Apr 2022 03:17 AM PDT (There is no other functioning forum to post it in.) Main documentation about how to make watch faces under Wear OS seems to be the WatchFaceKotlin example. This example contains lines around complications. Some installed watch faces don't have borders around complications. I can't find any documentation about how to remove these borders. [link] [comments] | ||
Posted: 09 Apr 2022 11:29 PM PDT
| ||
Why haven't Google added API 32 (12L) sources to Android SDK yet? Posted: 09 Apr 2022 01:06 PM PDT | ||
Posted: 09 Apr 2022 07:05 AM PDT Whenever I do a change in the store listing or a new release to production I have to wait a few days until it gets reviewed and published. If I add a bug in production I won't be able to do a hot fix either which can cause many bad reviews and performance issues for days. [link] [comments] | ||
Automatic Semantic Versioning on your Gradle project Posted: 09 Apr 2022 07:25 PM PDT How to use the Semantic Versioning specification on your android and non-android Gradle project. With the Semantic Version Gradle Plugin you can automatically apply the Semantic Versioning specification to your Gradle project. https://blog.dipien.com/automatic-semantic-versioning-on-your-gradle-project-6343b626b27b [link] [comments] | ||
My new Android app doesn't rank in Google Play Store, what do I do? Posted: 09 Apr 2022 08:59 AM PDT I made my first android app, from the time of this post it has been 4 days. Every time I search for the exact name of my app on the Google Play Store, my app doesn't show up in the results. The app is my first release. Am I supposed to wait a few more days? Until it ranks higher? There is not a lot of competition in my app category. [link] [comments] | ||
Anyone knows how many app rejections till you get banned? Posted: 09 Apr 2022 05:51 AM PDT Does anyone here have the misfortune of being permanently banned from the Play Store after a (or multiple) app rejections /policy violations? How many does it take? And which policy violations are more dangerous than others? So far it's been about 5 times my apps or app updates have been rejected. Last one was because I uploaded a game with Covid-19 in the title which for some reason isn't allowed. How many lives do I got left? [link] [comments] | ||
How do I populate a spinner with data from a csv file? Posted: 09 Apr 2022 07:28 PM PDT This is my first android studio project and am very new to java. I have a csv file and am trying to populate spinners with the different column data. How would I go about that? Sorry if their is not enough information here. [link] [comments] | ||
[OSS] Thud. News Reader - Pulse News Revival Posted: 09 Apr 2022 05:56 AM PDT
| ||
GoogleSignIn in a second activity Posted: 09 Apr 2022 07:06 AM PDT I'm planning to support both Facebook and GoogleSignIn in my app and I was wondering. Is it considered good practice to set them in separate activities? I tried to do that, and everything seem to be working fine, but in order to get rid of some unwanted visuals (blank activity when choosing the google account) and to stay in the MainActivity, I had to use an invisible theme. Is this considered a good approach? If not, what would be a better approach? [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