Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save daniloercoli/b139cf077b23b04bd9355a63ce5a4f6b to your computer and use it in GitHub Desktop.
Save daniloercoli/b139cf077b23b04bd9355a63ce5a4f6b to your computer and use it in GitHub Desktop.
Manifest changes to enable Tests running
@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- package name must be unique so suffix with "tests" so package loader doesn't ignore us -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
package="com.wordpress.notereader.tests"
android:versionCode="1"
android:versionName="1.0">
@@ -13,13 +12,4 @@
<uses-library android:name="android.test.runner" />
</application>
<uses-permission android:name="android.permission.INTERNET" />
- <!--
- This declares that this application uses the instrumentation test runner targeting
- the package of com.wordpress.notereader. To run the tests use the command:
- "adb shell am instrument -w com.wordpress.notereader.tests/android.test.InstrumentationTestRunner"
- -->
- <instrumentation android:name="android.test.InstrumentationTestRunner"
- android:targetPackage="com.wordpress.notereader"
- android:label="Tests for com.wordpress.notereader"
- tools:replace="android:targetPackage, android:label"/>
</manifest>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment