diff options
author | Xavier Ducrohet <xav@android.com> | 2012-04-18 16:54:55 -0700 |
---|---|---|
committer | Xavier Ducrohet <xav@android.com> | 2012-04-20 13:43:53 -0700 |
commit | dedd7eacb4e82ff09cc00516ad4ab5edd9f9bab5 (patch) | |
tree | 36fee2660856de7bec3600d4ae398a5e4724d4de /testapps | |
parent | 622512420652f1622a8d0ca9b64845e2a0288aa9 (diff) | |
download | sdk-dedd7eacb4e82ff09cc00516ad4ab5edd9f9bab5.zip sdk-dedd7eacb4e82ff09cc00516ad4ab5edd9f9bab5.tar.gz sdk-dedd7eacb4e82ff09cc00516ad4ab5edd9f9bab5.tar.bz2 |
Manifest merger in Ant build.
This merges the manifest of the libraries into the application's
manifest.
Change-Id: I425e7b75f71d3f50c6422cdb62bb5ec6811ce99d
Diffstat (limited to 'testapps')
4 files changed, 17 insertions, 20 deletions
diff --git a/testapps/testProjectTest/app/AndroidManifest.xml b/testapps/testProjectTest/app/AndroidManifest.xml index 821ae78..41e6b82 100644 --- a/testapps/testProjectTest/app/AndroidManifest.xml +++ b/testapps/testProjectTest/app/AndroidManifest.xml @@ -9,15 +9,6 @@ <application android:icon="@drawable/ic_launcher" android:label="@string/app_name" > - <activity - android:name="com.android.tests.testprojecttest.lib.LibActivity" - android:label="@string/app_name" > - <intent-filter> - <action android:name="android.intent.action.MAIN" /> - - <category android:name="android.intent.category.LAUNCHER" /> - </intent-filter> - </activity> </application> </manifest>
\ No newline at end of file diff --git a/testapps/testProjectTest/lib/AndroidManifest.xml b/testapps/testProjectTest/lib/AndroidManifest.xml index f8cc83d..b8bc11c 100644 --- a/testapps/testProjectTest/lib/AndroidManifest.xml +++ b/testapps/testProjectTest/lib/AndroidManifest.xml @@ -6,4 +6,15 @@ <uses-sdk android:minSdkVersion="15" /> + <application> + <activity + android:name="com.android.tests.testprojecttest.lib.LibActivity" + android:label="@string/app_name" > + <intent-filter> + <action android:name="android.intent.action.MAIN" /> + <category android:name="android.intent.category.LAUNCHER" /> + </intent-filter> + </activity> + </application> + </manifest>
\ No newline at end of file diff --git a/testapps/testProjectTest/lib/res/values/strings.xml b/testapps/testProjectTest/lib/res/values/strings.xml new file mode 100644 index 0000000..fdb2272 --- /dev/null +++ b/testapps/testProjectTest/lib/res/values/strings.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + + <string name="app_name">TestProjectTest-lib</string> + +</resources>
\ No newline at end of file diff --git a/testapps/testProjectTest/testlib/AndroidManifest.xml b/testapps/testProjectTest/testlib/AndroidManifest.xml index acfe650..93b02e4 100644 --- a/testapps/testProjectTest/testlib/AndroidManifest.xml +++ b/testapps/testProjectTest/testlib/AndroidManifest.xml @@ -13,17 +13,6 @@ --> <application android:label="testProjectTest-testlib"> <uses-library android:name="android.test.runner" /> - - <activity - android:name="com.android.tests.testprojecttest.lib.LibActivity" - android:label="@string/app_name" > - <intent-filter> - <action android:name="android.intent.action.MAIN" /> - - <category android:name="android.intent.category.LAUNCHER" /> - </intent-filter> - </activity> - </application> <!-- |