aboutsummaryrefslogtreecommitdiffstats
path: root/testapps/libWithLibTest/basicProjectWithLib
diff options
context:
space:
mode:
Diffstat (limited to 'testapps/libWithLibTest/basicProjectWithLib')
-rw-r--r--testapps/libWithLibTest/basicProjectWithLib/.classpath9
-rw-r--r--testapps/libWithLibTest/basicProjectWithLib/.project33
-rw-r--r--testapps/libWithLibTest/basicProjectWithLib/AndroidManifest.xml21
-rw-r--r--testapps/libWithLibTest/basicProjectWithLib/build.properties17
-rw-r--r--testapps/libWithLibTest/basicProjectWithLib/project.properties12
-rw-r--r--testapps/libWithLibTest/basicProjectWithLib/res/values/strings.xml4
6 files changed, 96 insertions, 0 deletions
diff --git a/testapps/libWithLibTest/basicProjectWithLib/.classpath b/testapps/libWithLibTest/basicProjectWithLib/.classpath
new file mode 100644
index 0000000..29e2115
--- /dev/null
+++ b/testapps/libWithLibTest/basicProjectWithLib/.classpath
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+ <classpathentry kind="src" path="src"/>
+ <classpathentry kind="src" path="gen"/>
+ <classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
+ <classpathentry kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
+ <classpathentry kind="lib" path="/basicLibWithJar/libs/basicJar.jar"/>
+ <classpathentry kind="output" path="bin"/>
+</classpath>
diff --git a/testapps/libWithLibTest/basicProjectWithLib/.project b/testapps/libWithLibTest/basicProjectWithLib/.project
new file mode 100644
index 0000000..4b74bbd
--- /dev/null
+++ b/testapps/libWithLibTest/basicProjectWithLib/.project
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>basicProjectWithLib</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <buildCommand>
+ <name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <buildCommand>
+ <name>org.eclipse.jdt.core.javabuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <buildCommand>
+ <name>com.android.ide.eclipse.adt.ApkBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>com.android.ide.eclipse.adt.AndroidNature</nature>
+ <nature>org.eclipse.jdt.core.javanature</nature>
+ </natures>
+</projectDescription>
diff --git a/testapps/libWithLibTest/basicProjectWithLib/AndroidManifest.xml b/testapps/libWithLibTest/basicProjectWithLib/AndroidManifest.xml
new file mode 100644
index 0000000..4870542
--- /dev/null
+++ b/testapps/libWithLibTest/basicProjectWithLib/AndroidManifest.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="com.android.tests.basicprojectwithlib"
+ android:versionCode="1"
+ android:versionName="1.0">
+ <application android:icon="@drawable/icon" android:label="@string/full_app_name">
+ <activity android:name="com.android.tests.basiclib.Main" android:label="@string/basicLib_name">
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
+ <activity android:name="com.android.tests.basiclibwithjar.Main" android:label="@string/basicLibWithJar_name">
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
+ </application>
+ <uses-sdk android:minSdkVersion="15" />
+</manifest>
diff --git a/testapps/libWithLibTest/basicProjectWithLib/build.properties b/testapps/libWithLibTest/basicProjectWithLib/build.properties
new file mode 100644
index 0000000..ee52d86
--- /dev/null
+++ b/testapps/libWithLibTest/basicProjectWithLib/build.properties
@@ -0,0 +1,17 @@
+# This file is used to override default values used by the Ant build system.
+#
+# This file must be checked in Version Control Systems, as it is
+# integral to the build system of your project.
+
+# This file is only used by the Ant script.
+
+# You can use this to override default values such as
+# 'source.dir' for the location of your java source folder and
+# 'out.dir' for the location of your output folder.
+
+# You can also use it define how the release builds are signed by declaring
+# the following properties:
+# 'key.store' for the location of your keystore and
+# 'key.alias' for the name of the key to use.
+# The password will be asked during the build when you use the 'release' target.
+
diff --git a/testapps/libWithLibTest/basicProjectWithLib/project.properties b/testapps/libWithLibTest/basicProjectWithLib/project.properties
new file mode 100644
index 0000000..a418b0a
--- /dev/null
+++ b/testapps/libWithLibTest/basicProjectWithLib/project.properties
@@ -0,0 +1,12 @@
+# This file is automatically generated by Android Tools.
+# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
+#
+# This file must be checked in Version Control Systems.
+#
+# To customize properties used by the Ant build system use,
+# "build.properties", and override values to adapt the script to your
+# project structure.
+
+# Project target.
+target=android-15
+android.library.reference.1=../basicLib
diff --git a/testapps/libWithLibTest/basicProjectWithLib/res/values/strings.xml b/testapps/libWithLibTest/basicProjectWithLib/res/values/strings.xml
new file mode 100644
index 0000000..bdca683
--- /dev/null
+++ b/testapps/libWithLibTest/basicProjectWithLib/res/values/strings.xml
@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+ <string name="full_app_name">basicProjectWithLib</string>
+</resources>