aboutsummaryrefslogtreecommitdiffstats
path: root/testapps/aidlTest/mainProject/AndroidManifest.xml
diff options
context:
space:
mode:
authorXavier Ducrohet <xav@android.com>2012-06-01 18:28:08 -0700
committerXavier Ducrohet <xav@android.com>2012-06-05 14:41:24 -0700
commit665f681e4881a7472f8ebcb7c4fb9a6771aada29 (patch)
tree74e5b5a85b6d6ee61e53d9e596b0d07db0c3902b /testapps/aidlTest/mainProject/AndroidManifest.xml
parentea3f581acc01a02550df1137b3adcd8ea5755852 (diff)
downloadsdk-665f681e4881a7472f8ebcb7c4fb9a6771aada29.zip
sdk-665f681e4881a7472f8ebcb7c4fb9a6771aada29.tar.gz
sdk-665f681e4881a7472f8ebcb7c4fb9a6771aada29.tar.bz2
Projects can now access aidl files from their libraries.
Library projects now copy their aidl files into bin/aidl. Aidl is now called with this import path for all referenced library projects. Also added a test project. Change-Id: I7f94489e87450be67a16ed7198f85b8b472f5025
Diffstat (limited to 'testapps/aidlTest/mainProject/AndroidManifest.xml')
-rw-r--r--testapps/aidlTest/mainProject/AndroidManifest.xml19
1 files changed, 19 insertions, 0 deletions
diff --git a/testapps/aidlTest/mainProject/AndroidManifest.xml b/testapps/aidlTest/mainProject/AndroidManifest.xml
new file mode 100644
index 0000000..f7315b0
--- /dev/null
+++ b/testapps/aidlTest/mainProject/AndroidManifest.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="com.android.tests.aidl.main"
+ android:versionCode="1"
+ android:versionName="1.0" >
+
+ <application android:label="@string/app_name" >
+ <activity
+ android:name="com.android.tests.aidl.main.MyActivity"
+ 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