AndroidManifest.xml and tests in Android Studio
问题 I have a basic Android project with an application sources directory and tests sources directory set up by the Android Project template. I have read that Android tests uses an Androidmanifest.xml specific to the running tests in which we have to specify the instrumentation type and the target package: <instrumentation android:name="android.test.InstrumentationTestRunner" android:targetPackage="com.mypackage.app" /> In Android Studio,I can run tests with android tests configuration without