Mifare Classic & Ultralight Extension

If you want a “quick” fix, I got it working. You have to add android:exported="true" to the AndroidManifest.xml like said here: Android 12 changes - #2 by Anke

I did this the following way:

  1. Build and download your APK to your PC.

  2. Download and open the program APK editor studio: APK Editor for PC and Mac – APK Editor Studio

  3. In APK editor open your APK file.

  4. In the left screen select the tab “File System”.

  5. Click on “AndroidManifest.xml”

  6. In my case, add android:exported="true" to the line
    <activity android:launchMode="singleTask" android:name=".Screen1">
    so you get:
    <activity android:launchMode="singleTask" android:exported="true" android:name=".Screen1">

  7. In the top-bar click “save-APK”.

  8. Now try it out if it works.

Thit works for me, hope it helps.