aboutsummaryrefslogtreecommitdiff
path: root/robolectric/src/test/resources/TestAndroidManifestWithAppComponentFactory.xml
blob: cbda17e65b6ca64414b49bf22c459e96d97de9c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="org.robolectric">
  <uses-sdk android:targetSdkVersion="18"/>

  <application
      android:appComponentFactory="org.robolectric.CustomAppComponentFactory">
    <receiver
        android:name=".CustomConstructorReceiverWrapper$CustomConstructorWithOneActionReceiver">
      <intent-filter>
        <action android:name="org.robolectric.ACTION_CUSTOM_CONSTRUCTOR"/>
      </intent-filter>
    </receiver>
    <receiver
      android:name=".CustomConstructorReceiverWrapper$CustomConstructorWithEmptyActionReceiver" />
  </application>
</manifest>