|
Android example source code file (AndroidManifest.tests.template)
The AndroidManifest.tests.template Android example source code<?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" package="PACKAGE.tests" android:versionCode="1" android:versionName="1.0"> <!-- We add an application tag here just so that we can indicate that this package needs to link against the android.test library, which is needed when building test cases. --> <application> <uses-library android:name="android.test.runner" /> </application> <!-- This declares that this application uses the instrumentation test runner targeting the package of PACKAGE. To run the tests use the command: "adb shell am instrument -w PACKAGE.tests/android.test.InstrumentationTestRunner" --> <instrumentation android:name="android.test.InstrumentationTestRunner" android:targetPackage="PACKAGE" android:label="Tests for ACTIVITY_NAME"/> </manifest> Other Android examples (source code examples)Here is a short list of links related to this Android AndroidManifest.tests.template source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.