Android Dev - Weekly "who's hiring" thread! |
- Weekly "who's hiring" thread!
- Weekly Questions Thread - June 29, 2020
- Android 12 exposure: Google wants to abandon 32-bit support
- My 2020 New Years Resolution was to Make a New Android App Every Month. This is a Reflection of my Last Six Months!
- Introducing RainbowCake, a modern Android architecture framework
- Your awesome/quick/simple way for automation (One commit to distribution)
- Faster testing on Android with Mobile Test Orchestrator
- Looks like Google is using BOT testing on updated APK releases
- Enhanced Android Security: Build Integrity Verification
- What happened with the Android Studio shortcuts?
- How do apps secure their authentication scheme?
- Is there a documentation guide for writing comments in Kotlin on Android Studio?
- A small take into clean architecture
- Microsoft releases its Defender antivirus on Android first public preview
- Charting library recomendation
- App's Network Activity
- What you guys think about New Google Play Console Layout?
- User generated content
- I´m 14 and I made a small Game App to improve my C# skills
Posted: 29 Jun 2020 05:45 AM PDT Looking for Android developers? Heard about a cool job posting? Let people know! Here is a suggested posting template:
Feel free to include any other information about the job. [link] [comments] | ||
Weekly Questions Thread - June 29, 2020 Posted: 29 Jun 2020 03:56 AM PDT This thread is for simple questions that don't warrant their own thread (although we suggest checking the sidebar, the wiki, our Discord, or Stack Overflow before posting). Examples of questions:
Important: Downvotes are strongly discouraged in this thread. Sorting by new is strongly encouraged. Large code snippets don't read well on reddit and take up a lot of space, so please don't paste them in your comments. Consider linking Gists instead. Have a question about the subreddit or otherwise for /r/androiddev mods? We welcome your mod mail! Also, please don't link to Play Store pages or ask for feedback on this thread. Save those for the App Feedback threads we host on Saturdays. Looking for all the Questions threads? Want an easy way to locate this week's thread? Click this link! [link] [comments] | ||
Android 12 exposure: Google wants to abandon 32-bit support Posted: 29 Jun 2020 02:30 AM PDT
| ||
Posted: 28 Jun 2020 07:36 PM PDT
| ||
Introducing RainbowCake, a modern Android architecture framework Posted: 29 Jun 2020 08:07 AM PDT | ||
Your awesome/quick/simple way for automation (One commit to distribution) Posted: 29 Jun 2020 02:01 AM PDT Hola Subredditroids ! Hope you are all having a great Monday, I introduce to a quick recipe to automation, it can save you a lot of time searching, and implementing, it is a recipe that I have been improving for sometimes, but it have proved reliable for us in the Android team for the past 1.5 years, in a large old codebase. This recipe is a combination of two configuration files, for CircleCI and Fastlane, I have provided comments over the commands that I think could be a tricky a bit and not straightforward (Like how to manage files necessary for providing new builds that are not tracked in your VCS). Let me know in the comments if you need help or further clarification. Also I haven't added the testing execution commands, but the idea here is to give the fundamentals needed for a proper kickoff. I might update this configuration in the long term with more useful commands that can aid with the whole automation script (Publishing to google play, running unit/instrumentation tests, release notes management). If this seems beneficial to you, a star would be appreciated. CircleCI configuration: https://gist.github.com/OmarKRostom/cf15de83c41582f95814484984e2b440 Fastlane configuration: https://gist.github.com/OmarKRostom/52fe6aae3a8cd26a28c93b21c763bde7 [link] [comments] | ||
Faster testing on Android with Mobile Test Orchestrator Posted: 29 Jun 2020 06:26 AM PDT
| ||
Looks like Google is using BOT testing on updated APK releases Posted: 29 Jun 2020 06:55 AM PDT Came in this morning to see a number of crashes all from a 6.0 device with no funnel data on how they got to the screen. All in Activities all new crashes. Our activities require data in the intent to be passed to them. Of course we always pass it so we have poor to no error testing here. This is inherited code on top of all this fun. What the BOT does it look in Manifest and fires up each Activity individually. So most of them crash. I had this happen at a previous job using Microsoft's Hockey App so once I figured out what happened with the build I released Sunday afternoon I exited panic mode. Put a new ticket on the board to gracefully exit Activity if it is missing required data instead of crashing so we don't see this with every release. Really wish the app was single Activity + Fragment manager. Would have avoided this plus it would help with deep linking which is on our to do board as well. [link] [comments] | ||
Enhanced Android Security: Build Integrity Verification Posted: 29 Jun 2020 05:19 AM PDT
| ||
What happened with the Android Studio shortcuts? Posted: 29 Jun 2020 08:15 AM PDT Guys, I do not know what happened with the shortcuts in the new version of Android Studio, my autopilot is not working anymore. New shortcuts for almost everything. Am I the only one with this issue? even the official Android Page is not updated. [link] [comments] | ||
How do apps secure their authentication scheme? Posted: 28 Jun 2020 02:12 PM PDT I recently started learning about user authentication, so things like sessions, JWT, OAuth, etc. I noticed that for a lot of account based apps (mainly apps like Snapchat, Facebook, etc.) I'm never logged out on my Android device. I'm assuming they use a token based authentication scheme and if I'm never logged out does that mean the token never expires? Is it stored in local storage? Aren't there security concerns with this approach? I would like to hear your thoughts as maybe I'm misunderstanding this issue. [link] [comments] | ||
Is there a documentation guide for writing comments in Kotlin on Android Studio? Posted: 28 Jun 2020 02:10 PM PDT I'm currently working on an Android app using Kotlin. When I used to write programs in Java on Eclipse, I followed this Javadoc guide for writing comments. I'm struggling to find a guide like this for Kotlin or a guide for writing comments in Android Studio. Does anyone know of anything similar to Javadoc that I should follow for creating an app in Kotlin? Or is there a general standard for how comments should be structured in Android Studio? [link] [comments] | ||
A small take into clean architecture Posted: 29 Jun 2020 01:14 AM PDT After spending multiple years on a legacy project, now i got some free time to work more with the new android components and architectures. I'm looking for some feedback, because i would like to present this to my colleagues in order to start migrating slowly to view models, live data, a proper repository for data instead of a huge "manager", and other new android "goodies". As i mentioned, feedback is much appreciated. Thanks in advance :) edit: forgot to post the link (dumb): https://github.com/daroltidan/clean-architecture [link] [comments] | ||
Microsoft releases its Defender antivirus on Android first public preview Posted: 28 Jun 2020 01:50 PM PDT
| ||
Charting library recomendation Posted: 28 Jun 2020 08:50 AM PDT Hey! I want to have a few simple line graphs in my app. Trying to decide between Spark and MPAndroidChart. Any real life experiences? Any other recommended library? Thanks! [link] [comments] | ||
Posted: 28 Jun 2020 11:57 AM PDT I am a web developer with 0 knowledge about Android. On the web, we have the Network tab built inside browsers to record activity. How is this done on Android if I want to see the requests/responses from an app that is already running on my phone? For example, if I have an app that fetches a YouTube video and displays it. How can I view that request to the YouTube servers, and the response that returns? Thank you. [link] [comments] | ||
What you guys think about New Google Play Console Layout? Posted: 28 Jun 2020 10:59 PM PDT I guess it's more detailed and helpful for better insight. Checkout and share your reviews. [link] [comments] | ||
Posted: 28 Jun 2020 11:48 AM PDT Is it possible nowadays to develop an app with user generated content? I mean if some user uploads copyrighted content and content owner files a DMCA notice then Google suspends app and you can't do anything. If it happens at website you just remove this specific content but this is not enough for Google. [link] [comments] | ||
I´m 14 and I made a small Game App to improve my C# skills Posted: 28 Jun 2020 01:06 PM PDT Hello! I created an App within a week. It´s a just for fun project, I would like to know if you like it :) This is an PC only version, but i will upload an APK soon. [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