Fix QLL and add change notes with tests

This commit is contained in:
Lukas Abfalterer
2025-03-05 10:23:35 +01:00
parent a3749530d6
commit c9b75afc2a
5 changed files with 23 additions and 3 deletions

View File

@@ -5,5 +5,10 @@
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
<reveicer android:name=".EmptyReceiverXml">
<intent-filter>
<action android:name"android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
</application>
</manifest>
</manifest>

View File

@@ -0,0 +1,9 @@
package test;
import android.content.Intent;
import android.content.Context;
import android.content.BroadcastReceiver;
class EmptyReceiverXml extends BroadcastReceiver {
@Override
public void onReceive(Context ctx, Intent intent) { }
}