Java Code Examples for org.robolectric.AndroidManifest#setPackageName()
The following examples show how to use
org.robolectric.AndroidManifest#setPackageName() .
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: RobolectricGradleTestRunner.java From android-alltest-gradle-sample with GNU General Public License v2.0 | 6 votes |
@Override protected AndroidManifest getAppManifest(Config config) { //String appRoot = "D:\\TmpCodingProjects\\TripComputer\\app\\src\\main\\"; String appRoot = "../app/src/main/"; String manifestPath = appRoot + "AndroidManifest.xml"; String resDir = appRoot + "res"; String assetsDir = appRoot + "assets"; AndroidManifest manifest = createAppManifest(Fs.fileFromPath(manifestPath), Fs.fileFromPath(resDir), Fs.fileFromPath(assetsDir)); // If you change the package - don't forget to change the build.gradle and the AndroidManifest.xml manifest.setPackageName("com.soagrowers.android"); // Robolectric is already going to look in the 'app' dir ... // so no need to add to package name return manifest; }
Example 2
Source File: MapzenTestRunner.java From open with GNU General Public License v3.0 | 5 votes |
/** * Uses custom manifest as workaround to maintain backward compatibility with library projects * that do not yet include the <code><application/></code> tag in AndroidManifest.xml. * <p /> * See https://github.com/robolectric/robolectric/pull/1309 for more info. */ @Override protected AndroidManifest createAppManifest(FsFile manifestFile, FsFile resDir, FsFile assetsDir) { AndroidManifest manifest = new MapzenAndroidManifest(manifestFile, resDir, assetsDir); String packageName = System.getProperty("android.package"); manifest.setPackageName(packageName); return manifest; }
Example 3
Source File: MapzenTestRunner.java From open with GNU General Public License v3.0 | 5 votes |
@Override protected AndroidManifest getAppManifest(Config config) { String manifestProperty = System.getProperty("android.manifest"); if (config.manifest().equals(Config.DEFAULT) && manifestProperty != null) { String resProperty = System.getProperty("android.resources"); String assetsProperty = System.getProperty("android.assets"); AndroidManifest androidManifest = new AndroidManifest( Fs.fileFromPath(manifestProperty), Fs.fileFromPath(resProperty), Fs.fileFromPath(assetsProperty)); androidManifest.setPackageName("com.mapzen.open"); return androidManifest; } return super.getAppManifest(config); }