• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Recent content by bgarr33434

  1. bgarr33434

    Connect my Turntable to my phone speakers

    My turntable is a bluetooth 4.2 broadcasting device looking for speakers to connect to. My android phone is also a bluetooth broadcasting device, with built in speakers. I want to route the turntable bluetooth output to my phone speakers. How do I get my phone to look like a receiver, not a...
  2. bgarr33434

    Can't find sink devices

    I'm trying to adapt https://github.com/heb-dtc/Mirroir-app for an apk I need, but the section that looks for existing miracast sink devices is not working at all. The section that I believe is the search section is posted below. Many thanks for any help here! package com.flo.miroir; import...
  3. bgarr33434

    Help Fatal exception permissons

    Here's my runtime compile error. any help would be great! E/AndroidRuntime: FATAL EXCEPTION: pool-1-thread-1 Process: com.samsung.multiscreen.msf20.photoshare, PID: 2591 java.lang.SecurityException: Permission Denial: reading com.android.providers.media.MediaProvider uri...
  4. bgarr33434

    Migrating from API 28 to API 21

    Looking for some guidance on how I take an app that was written for API 28, with appropriate versions of Gradle, Support and SDK, and make it work on Android 5, API 21. Not sure where to even start, as I have tried simply replacing the build information and get all of link failures.
  5. bgarr33434

    Countdown Timer that you can pass startup arguments to

    I want to be able to launch a countdown timer from my Xamarin Android appication, and pass to it the parameters. For example, if the app is named "XTimer", then I would instantiate the timer start("XTimer", 30 seconds) so it would start up and immediately start counting down 30 seconds. Of...