mirror of
https://github.com/github/codeql.git
synced 2026-04-30 19:26:02 +02:00
Fix QLL and add change notes with tests
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -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) { }
|
||||
}
|
||||
Reference in New Issue
Block a user