Android Dev - Weekly Who's Hiring Thread - March 15, 2021 |
- Weekly Who's Hiring Thread - March 15, 2021
- Kotlin Multiplatform — A panacea for mobile app development?
- My first app (I am 16 and new to android dev so sorry if it's not that polished) I am waiting for it to be reviewed on google console right now. It's an app which has some little text tools it's called TEXT
- compose-remember-preference - Jetpack Compose library for remembering State persistently
- Fonibo App Suspended by Google (mistakenly)
- Copying file on android 11
- My works for Android Dev Challenge Jetpack Compose (So far)
- Is there a way of passing the NDEF message to a string?
- Absolute file path in Android 11 (API 30). logcat -f logs
- Compile less with SOLID
- Is it common to save sensitive Cache data inside /data/data/com.app?
- How to add display of QR code information using augmented reality
- App publishing and null supprt from playstore
- Android Image Loading *without* a Library - Common Interview Question
- How could I implement all these theme configurations?
- why passing list.size * 2 +1 to this code makes the adapter circular?
- How to prevent element/view from moving when adding constraints?
- How does internal test build update distribution work
- NEED SOME HELP HERE!
- Android app as a web browser for mobile website
Weekly Who's Hiring Thread - March 15, 2021 Posted: 15 Mar 2021 07:00 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] | ||
Kotlin Multiplatform — A panacea for mobile app development? Posted: 15 Mar 2021 02:48 AM PDT
| ||
Posted: 14 Mar 2021 03:00 PM PDT
| ||
compose-remember-preference - Jetpack Compose library for remembering State persistently Posted: 15 Mar 2021 06:00 AM PDT
| ||
Fonibo App Suspended by Google (mistakenly) Posted: 14 Mar 2021 09:06 AM PDT
| ||
Posted: 15 Mar 2021 07:30 AM PDT I am trying to copy a file from my app's own folder that I create using getExternalFilesDir() to a folder that I created using media store. Both folders created successfully, but when I try to copy the file I get "No such file or directory" even though the file is literary right there. Anyone knows why this is happening? I have looked all over the internet, but I can't find a solution. [link] [comments] | ||
My works for Android Dev Challenge Jetpack Compose (So far) Posted: 15 Mar 2021 03:40 AM PDT I want to share the works I did so far for Android dev challenge jetpack compose. I just start learning Jetpack Compose when the challenge started, it's been a fun / challenge experience.
Build a puppy adoption app! The app should contain an overview screen that displays a list of puppies, and a detail screen showing each puppy's details. I learned about layout, list, text and navigation. Here is the GitHub repository: https://github.com/vsay01/android-dev-challenge-compose-puppy-adoption
Create a working, single screen countdown timer. I learned about state and animation. Here is the GitHub repository: https://github.com/vsay01/android-android-dev-challenge-compose-count-down-timer
Be the fastest to implement a set of designs provided by us. The designs will be posted here when the challenge starts. I picked up the design for Americas-friendly, wetrade. I learned about the theming, layout, navigation and also the way that Jetpack Composes help speeds up the UI development. The development needs to accounted for both light and dark themes. Here is the GitHub repository: https://github.com/vsay01/android-dev-challenge-compose-wetrade (Note: When I have time, I'll work on other two designs) There are awesome designs for this challenge that other did, you can search twitter with #AndroidDevChallenge. Happy learning and let me know what you think. [link] [comments] | ||
Is there a way of passing the NDEF message to a string? Posted: 15 Mar 2021 05:40 AM PDT Hey guys,so I have an NFC tag that stores a URL and I am building an android app that reads that tag and starts the app to the Main activity. After that I have a WebView that displays that website. My problem here is, each tag has a different url/path (lets say they are clothing items and each point to a product on the website). How do I get the NDEF message from the tag (the url) and pass it to that parameter of the webview? Thank your for your help, here I will leave my code. I have followed the android documentation on NFC both, basic and advanced, googled every page and searched everything on reddit, however I could not find any answer... This is my Main Activity, the one that opens as soon as it reads the tag: // Pending intent for NFC intent foreground dispatch. // Used to read all NDEF tags while the app is running in the foreground. private var nfcPendingIntent: PendingIntent? = null // Optional: filter NDEF tags this app receives through the pending intent. //private var nfcIntentFilters: Array<IntentFilter>? = null private val KEY_LOG_TEXT = "logText" override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.activity_main) val rawMessage = intent.getParcelableArrayExtra(NfcAdapter.EXTRA_NDEF_MESSAGES) rawMessage?.let { return rawMessage.map { it as NdefMessage }.toTypedArray() } val empty = byteArrayOf() val record = NdefRecord(NdefRecord.TNF_UNKNOWN, empty, empty, empty) val msg = NdefMessage(arrayOf(record)) intent.putExtra("msg", msg) return arrayOf(msg) } if(NfcAdapter.ACTION_NDEF_DISCOVERED == intent.action) { val nDefMessages = getNDefMessages(intent) nDefMessages[0].records?.let { it.forEach { it?.payload.let { it?.let { return String(it) } } } } } else { return "Touch NFC tag to read data" } } return "Touch NFC tag to read data" } } This is the webview activity: I want to pass the NDEF message to myWebVIew.loadUrl(). Is there a way of doing so? Thank you for your help. [link] [comments] | ||
Absolute file path in Android 11 (API 30). logcat -f logs Posted: 15 Mar 2021 05:16 AM PDT Hi there, I have logging feature in app. It writes logs to file and user can send it by email with attached file. To get logs into file I use runtime command, which writes logcat logs to file: Now when target API is 30 it stop working due to new limitations. Questions:
[link] [comments] | ||
Posted: 14 Mar 2021 11:24 AM PDT
| ||
Is it common to save sensitive Cache data inside /data/data/com.app? Posted: 15 Mar 2021 03:00 AM PDT I am pentesting a crypto exchange app (I am a noob), and find tons of PII and session cookies in my /data/data/[com.app] directory. I am so confused to see so many sensitive data that I start to doubt if this is really a safe practice. Really appreciate if someone can explain this to me. To me, as long as the user doesn't root the device, everything should be fine? [link] [comments] | ||
How to add display of QR code information using augmented reality Posted: 15 Mar 2021 01:12 AM PDT
| ||
App publishing and null supprt from playstore Posted: 15 Mar 2021 12:22 AM PDT
| ||
Android Image Loading *without* a Library - Common Interview Question Posted: 14 Mar 2021 08:08 PM PDT
| ||
How could I implement all these theme configurations? Posted: 14 Mar 2021 05:10 PM PDT So I'm working on a new project, and the designer has specified a couple different items to be themeable across the app:
These two mixed with the necessity to implement light and dark modes, and I'm a bit stuck on the implementation. If I create a theme in I'm looking for a solution that doesn't require creating separate themes for each of the 50 potential configurations a user could choose (especially when the difference across themes is only two fields). That seems like a funky code solution. Really seems like there is an obvious option I'm not seeing... or should I just get to typing out these themes? [link] [comments] | ||
why passing list.size * 2 +1 to this code makes the adapter circular? Posted: 14 Mar 2021 02:18 PM PDT I am currently trying to make an both direction auto scrollable recycler view. after trying some failed attempts , i searched the internet and came across this code: ``` class InfiniteLoopAdapter(private val itemList: List<String>) : RecyclerView.Adapter<ImageViewHolder>() { } ``` Sorry this may seem to be a code review, but i really hope someone could answer me ans I wish to learn more about this approach. This is simply a recycler view of strings which is somehow scrolling back to 0th position after the last 4th position. I know we can make a recyclerview infinite by returning Int.MAX from getItemCount() but this won't be making it infinite. it uses some tricks via linear layout manager that i don't understand.
[link] [comments] | ||
How to prevent element/view from moving when adding constraints? Posted: 14 Mar 2021 08:53 PM PDT Hi, I'm new to android dev. When I go to add constraints to a view like a button, it moves the element in the direction of the constraint. How do I prevent this/turn it off? [link] [comments] | ||
How does internal test build update distribution work Posted: 14 Mar 2021 04:48 PM PDT Specifically with updates. When I push a new update it seems like I have to Uninstaller and reinstall for it to update to the new version. Is this just how it works or am I doing something wrong? Thanks [link] [comments] | ||
Posted: 14 Mar 2021 07:50 PM PDT
| ||
Android app as a web browser for mobile website Posted: 14 Mar 2021 02:42 PM PDT Are there any apps that are just a web browser that points to a mobile website? Wondering how viable it is to basically just make your app with javascript. I'm sure there's some limitations in terms of device access and it wouldn't be available without network connectivity but I'm curious. [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