Java Code Examples for com.android.SdkConstants#ANDROID_TEST_RUNNER_LIB

The following examples show how to use com.android.SdkConstants#ANDROID_TEST_RUNNER_LIB . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: PlatformTarget.java    From java-n-IDE-for-Android with Apache License 2.0 2 votes vote down vote up
/**
 * Currently always return a fixed list with "android.test.runner" in it.
 * <p/>
 * TODO change the fixed library list to be build-dependent later.
 * {@inheritDoc}
 */
@Override
public String[] getPlatformLibraries() {
    return new String[] { SdkConstants.ANDROID_TEST_RUNNER_LIB };
}
 
Example 2
Source File: PlatformTarget.java    From javaide with GNU General Public License v3.0 2 votes vote down vote up
/**
 * Currently always return a fixed list with "android.test.runner" in it.
 * <p/>
 * TODO change the fixed library list to be build-dependent later.
 * {@inheritDoc}
 */
@Override
public String[] getPlatformLibraries() {
    return new String[] { SdkConstants.ANDROID_TEST_RUNNER_LIB };
}