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:name="com.facebook.flipper.android.diagnostics.FlipperDiagnosticActivity"
android:exported="true" /> 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> </application>
</manifest> </manifest>

View File

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