Android Dev - Gallerit, a sample Reddit gallery |
- Gallerit, a sample Reddit gallery
- I challenge you to recreate this animation (Android Native).
- Assets or Resource Raw folder of Android?
- (Self-Taught) Android Devs of Reddit: Show your portfolio
- How do you deal with Multiple Themes?
- Records and Pattern Matching for Instanceof Finalized in JDK 16
- Unit Tests — Argument Captor with Mockito
- Is there's no way to have testers test the APK (internal testing, internal app sharing, etc) until your app is published/approved by Google?
- Turning a Camera Feed into a Solved Sudoku
- Documentation bug being closed as obsolete
- Why is getBlob() retrieving Integer data from my Blob column in my database?
- Android Studio AVD Emulator in AMD Ryzentosh
- IDEA: A app that has a button you can click once every 24h.
- Hello guys! I have a Question related to AlarmManager and Notifications.
- Clan Architecture for Android (Once and for all)
- Why you should embrace Dependency Injection
- A lightweight and beautiful tasks and calendar app for students.
- Is there a list of how many major updates manufacturers release?
- What CPC and eCPM does Admob have for USA?
- Going from Android native -> Unity. How's the learning curve?
- Android Image Loaders: Picasso vs Glide vs Fresco
- What should I do/need to know before developing and publishing an Android App?
- App disappeared from Google Play Store
- Google Android phone to assist with earthquake alerts and searches including Samsung and iPhone
- What do most android devs trust for their backends nowadays?
| Gallerit, a sample Reddit gallery Posted: 12 Aug 2020 02:23 AM PDT
| ||
| I challenge you to recreate this animation (Android Native). Posted: 12 Aug 2020 08:55 AM PDT
| ||
| Assets or Resource Raw folder of Android? Posted: 12 Aug 2020 04:06 AM PDT
| ||
| (Self-Taught) Android Devs of Reddit: Show your portfolio Posted: 11 Aug 2020 05:37 PM PDT Hello there! (General Kenobi!) As a self-taught, future super awesome Android developer :D I am really curious about your portfolios and especially those of self-taught and more especially that got you the job :) Show off what you got and feel free to add some comments :) [link] [comments] | ||
| How do you deal with Multiple Themes? Posted: 12 Aug 2020 04:28 AM PDT Hi, I was wondering how other developers deal with having multiple themes in their apps, now that It's easy when you have a light and a dark version, since you can handle everything with minimal code through AppCompatDelegate. But let's say you want light, dark and AMOLED. Or a couple of variations for each. What is the best approach? This is how I did: - I have my main theme: MyStyle, inheriting from DayNight, representing light and dark. - I have another one: MyStyle_amoled, inheriting from MyStyle, with attributes override only in the dark version to make it AMOLED. This way it follows the system toggle when changing from light to dark, and in the settings, the user can choose the type of dark mode to get, Default or AMOLED. This is ugly IMO, since you still have to make a base activity class overriding OnCreate() and OnResume() and use setTheme() accordingly. And your user clicking the back button will see the theme changing for a split second as it recreate(). Is there a better way? It would be nice to manage themes through qualifiers having: -light, -night, -amoled, -version3... folders in your res/ and then just bind the qualifier you choose to the system setting. [link] [comments] | ||
| Records and Pattern Matching for Instanceof Finalized in JDK 16 Posted: 12 Aug 2020 03:08 AM PDT
| ||
| Unit Tests — Argument Captor with Mockito Posted: 12 Aug 2020 10:28 AM PDT
| ||
| Posted: 12 Aug 2020 06:39 AM PDT This is my first time submitting an app to the Google Play app store. I filled out everything, green checkmarks everywhere, added testers etc. Using the "new Google Play Console" it seemed to indicate that the app was ready for internal testing. I was able to use the "Copy link" to get a link to send to my testers.. including myself. I can click on that link, but then the link to the APK leads to a 404. I tried to enable the 'internal app sharing', added myself as a valid uploader.. but am getting the "you don't have permission to upload for this bundle id" error. After doing more reading, it seems like none of these testing channels are available until the app is "published". The new console is super ambiguous about this, the old console does say it's "pending publication". So do I understand correctly that I can't use internal testing or internal app sharing until the app is "published" ? I want to do weeks if not months of testing before I make it available to the public, just didn't expect it would take days (or weeks) before I can even begin this testing [link] [comments] | ||
| Turning a Camera Feed into a Solved Sudoku Posted: 12 Aug 2020 06:15 AM PDT
| ||
| Documentation bug being closed as obsolete Posted: 12 Aug 2020 10:39 AM PDT Here's a bug that was marked as obsolete even though the issue is in the documentation and still occurs. If anyone from google is listening... we need a better way to report issues in docs. [link] [comments] | ||
| Why is getBlob() retrieving Integer data from my Blob column in my database? Posted: 12 Aug 2020 09:41 AM PDT I am trying to display the data from my SQLite database to the recycler views. The data I am trying to display is an image & text. For the images in my database, I converted the image resources into bitmaps then into bytes & stored the bytes in my Blob column. However, when I am trying to retrieve the bytes from the column using the getBlob()I receive an exception. The exception is android.database.sqlite.SQLiteException: unknown error (code 0 SQLITE_OK): INTEGER data in nativeGetBlob. I know that this exception is occurring because the getBlob()retrieves Integer data from my Blob column. But I don't understand I put bytes into my Blob column, so why is getBlob()retrieving Integer data? I have tried using the getInt()but that doesn't work because my adapter uses BitmapFactory.decodeByteArray()which expects a byte parameter to convert the bytes from my column into a bitmap. SQLite database: Recycler View class: Recycler view adapter: Exception: [link] [comments] | ||
| Android Studio AVD Emulator in AMD Ryzentosh Posted: 12 Aug 2020 08:37 AM PDT Hi everyone, I have just set up my new Ryzentosh just for mobile developing purposes and everything is working fine even the iOS Simulator. I am trying to set the Android Virtual Device (AVD) Manager from Android Studio up but I am getting the following error: "Your CPU does not support required features (VT-x or SVM)." I have AMD's Virtualization technology turned on in BIOS and it works fine on Windows, but not on macOS Catalina. I am on the latest OS version. Any advices? Thank you. [link] [comments] | ||
| IDEA: A app that has a button you can click once every 24h. Posted: 12 Aug 2020 08:24 AM PDT The name would be something like "Streaks" (idea from snapchats streaks) It would have a button that you can click ONCE every 24 hours, if you don't click the button in the 24 hour period your "score" resets and you need to start from the beginning. It would have a leaderboard where you can see who holds the biggest "streak". Might be a stupid idea idk :D [link] [comments] | ||
| Hello guys! I have a Question related to AlarmManager and Notifications. Posted: 12 Aug 2020 02:13 AM PDT I am working on an app that will send notifications to the user at a specific point in time defined by the user. So it will remind a user with 15 minutes before an event is happening. I've tried using AlarmManager and a BroadcastReceiver to send the notification, but it doesn't work when the app is closed. Do you have any idea or recommendation on what I should check? [link] [comments] | ||
| Clan Architecture for Android (Once and for all) Posted: 12 Aug 2020 07:15 AM PDT
| ||
| Why you should embrace Dependency Injection Posted: 11 Aug 2020 10:30 AM PDT
| ||
| A lightweight and beautiful tasks and calendar app for students. Posted: 11 Aug 2020 09:04 PM PDT As a college student, I keep forgetting my tasks and my incoming events in our university. That's why I've built Fokus. Fokus is a simple, lightweight tasks and calendar app tailored specifically for students. [link] [comments] | ||
| Is there a list of how many major updates manufacturers release? Posted: 12 Aug 2020 02:57 AM PDT I know some manufacturers like Samsung only provide 2 years update to the phones they sell. After that you see no more major updates for this phone, only security fix if you are "lucky". What about the other manufacturers? Do they do the same? Is there a list available somewhere? [link] [comments] | ||
| What CPC and eCPM does Admob have for USA? Posted: 12 Aug 2020 12:28 AM PDT I removed Admob an year ago because they suddenly started giving me very bad CPC ($0.05-0.1) for USA. I use FAN and here's what I get for USA users (Android only):
CPC = $0.54 eCPM = $9.12
CPC = $0.27 eCPM = $0.49 I was wondering what Admob provides to see if FAN is paying good? [link] [comments] | ||
| Going from Android native -> Unity. How's the learning curve? Posted: 12 Aug 2020 06:15 AM PDT Hey everyone, I'm what most companies would refer as Senior Android developer. I now use mostly Kotlin but I know Java and python quite well. I'd like to invest in Unity. I'd like to hear about Android devs who took the plunge as well. How long did it take you to "master" unity, what are the pitfalls, or the things that surprised you with your native background? Any good resources to learn Unity specifically for devs like us? Thank you! [link] [comments] | ||
| Android Image Loaders: Picasso vs Glide vs Fresco Posted: 12 Aug 2020 05:32 AM PDT Which one do you use? And why? https://redwerk.com/blog/advanced-feature-in-android-image-loaders-picasso-vs-glide-vs-fresco/ [link] [comments] | ||
| What should I do/need to know before developing and publishing an Android App? Posted: 12 Aug 2020 05:32 AM PDT Hello guys I apologize if this violates rule 2 I was told to post here. I want to begin making an Android app and already learn some basics android courses and Java beforehand but I heard there are some things I need to do. - I heard that you shouldn't use your personal email to the App or for publishing and instead use a developers account. Do developers account simply mean another email for strictly for business reasons or are still more to it. Similar to address. I don't have a unique mailing address, do I just stick to home address? - Does it matter what I put in the package name? I hear you put your company but I don't own a business just simply trying to make an app at home. What should I do there? Please tell me if there is anything else I need to know regarding the process [link] [comments] | ||
| App disappeared from Google Play Store Posted: 11 Aug 2020 08:33 PM PDT Hello, Our app disappeared from Google Play Store (that was the URL where it could be found - https://play.google.com/store/apps/details?id=com.villing.entegracoach) There is no information whatsoever of what and why that happened. I checked the Google Play Console, and there is no historical data or anything. It's like that app has never been there. I contacted Google, but there is no response for more than 2 weeks now. Any help and insights are appreciated. [link] [comments] | ||
| Google Android phone to assist with earthquake alerts and searches including Samsung and iPhone Posted: 12 Aug 2020 07:14 AM PDT
| ||
| What do most android devs trust for their backends nowadays? Posted: 11 Aug 2020 09:21 PM PDT Firebase and Parse seem to be good options, but I'm not an expert. [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