Change SWE app properties back to stock Android
- Changed project package name from com.android.swe.browser
back to com.android.browser along with code references to
old package name.
- Changes to AndroidManifest making it conform closer to stock
browser manifest.
- Changed app and apk name back to Browser.
Change-Id: I778ee1d1197bd50bd4a4850eef6d1d7f4ef0ad0b
diff --git a/tests/AndroidManifest.xml b/tests/AndroidManifest.xml
index 68144e2..cb1ffc7 100644
--- a/tests/AndroidManifest.xml
+++ b/tests/AndroidManifest.xml
@@ -16,7 +16,7 @@
<!-- 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="com.android.swe.browser.tests">
+ package="com.android.browser.tests">
<!-- We add an application tag here just so that we can indicate that
this package needs to link against the android.test library,
@@ -28,14 +28,14 @@
<!--
This declares that this app uses the instrumentation test runner targeting
the package of com.android.email. To run the tests use the command:
- "adb shell am instrument -w com.android.swe.browser.tests/android.test.InstrumentationTestRunner"
+ "adb shell am instrument -w com.android.browser.tests/android.test.InstrumentationTestRunner"
-->
<instrumentation android:name="android.test.InstrumentationTestRunner"
- android:targetPackage="com.android.swe.browser"
+ android:targetPackage="com.android.browser"
android:label="Tests for Browser."/>
- <instrumentation android:name="com.android.swe.browser.BrowserLaunchPerformance"
- android:targetPackage="com.android.swe.browser"
+ <instrumentation android:name="com.android.browser.BrowserLaunchPerformance"
+ android:targetPackage="com.android.browser"
android:label="Browser Launch Performance">
</instrumentation>