fixing manifest imports and giving androidTest its own dedicated manifest

This commit is contained in:
Adam Brown 2022-09-12 16:15:03 +01:00
parent 0c469ae079
commit 1d50bbdbda
3 changed files with 11 additions and 5 deletions

View File

@ -15,8 +15,6 @@
android:name="com.facebook.flipper.android.diagnostics.FlipperDiagnosticActivity"
android:exported="true" />
<!-- Used for UI tests to display the BiometricPrompt. It's normal that it appears as an error. -->
<activity android:exported="false" android:name=".features.pin.lockscreen.tests.LockScreenTestActivity" />
</application>
</manifest>

View File

@ -14,7 +14,7 @@
<application>
<receiver
android:name=".fdroid.receiver.OnApplicationUpgradeOrRebootReceiver"
android:name="im.vector.app.fdroid.receiver.OnApplicationUpgradeOrRebootReceiver"
android:exported="false">
<intent-filter>
<action android:name="android.intent.action.MY_PACKAGE_REPLACED" />
@ -23,12 +23,12 @@
</receiver>
<receiver
android:name=".fdroid.receiver.AlarmSyncBroadcastReceiver"
android:name="im.vector.app.fdroid.receiver.AlarmSyncBroadcastReceiver"
android:enabled="true"
android:exported="false" />
<service
android:name=".fdroid.service.GuardAndroidService"
android:name="im.vector.app.fdroid.service.GuardAndroidService"
android:exported="false"
tools:ignore="Instantiatable" />

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application>
<activity android:name=".features.pin.lockscreen.tests.LockScreenTestActivity" />
</application>
</manifest>