0
I’m with a question to give permission to perform tests on an android application.
I created a case of test but the next one appears on the console:
does not specify a android.test.Instrumentationtestrunner Instrumentation or does not declare uses-library android.test.Runner in its Androidmanifest.xml
I went to the archive AndroidManifest.xml
of the application and introduced the code:
<instrumentation android:name="android.test.InstrumentationTestRunner"
android:targetPackage="com.voxar.cameraapp"
android:label="your tests label" />
and put:
<uses-library android:name="android.test.runner" />
As suggested in stackoverflow.with
How to solve mistakes so I can start the tests?