aboutsummaryrefslogtreecommitdiff
path: root/testapps/javaProjectTest/lib2
diff options
context:
space:
mode:
Diffstat (limited to 'testapps/javaProjectTest/lib2')
-rw-r--r--testapps/javaProjectTest/lib2/.classpath9
-rw-r--r--testapps/javaProjectTest/lib2/.project33
-rw-r--r--testapps/javaProjectTest/lib2/AndroidManifest.xml21
-rw-r--r--testapps/javaProjectTest/lib2/libs/android-support-v4.jarbin247894 -> 0 bytes
-rw-r--r--testapps/javaProjectTest/lib2/proguard-project.txt20
-rw-r--r--testapps/javaProjectTest/lib2/project.properties15
-rw-r--r--testapps/javaProjectTest/lib2/res/drawable-hdpi/ic_launcher.pngbin4147 -> 0 bytes
-rw-r--r--testapps/javaProjectTest/lib2/res/drawable-ldpi/ic_launcher.pngbin1723 -> 0 bytes
-rw-r--r--testapps/javaProjectTest/lib2/res/drawable-mdpi/ic_launcher.pngbin2574 -> 0 bytes
-rw-r--r--testapps/javaProjectTest/lib2/res/layout/main.xml13
-rw-r--r--testapps/javaProjectTest/lib2/res/values/strings.xml4
-rw-r--r--testapps/javaProjectTest/lib2/src/com/android/tests/javaprojecttest/lib2/Lib2.java33
-rw-r--r--testapps/javaProjectTest/lib2/src/com/android/tests/javaprojecttest/lib2/Lib2.txt1
-rw-r--r--testapps/javaProjectTest/lib2/src/com/android/tests/javaprojecttest/lib2/Main.java15
14 files changed, 0 insertions, 164 deletions
diff --git a/testapps/javaProjectTest/lib2/.classpath b/testapps/javaProjectTest/lib2/.classpath
deleted file mode 100644
index 3cdb2e00f..000000000
--- a/testapps/javaProjectTest/lib2/.classpath
+++ /dev/null
@@ -1,9 +0,0 @@
-<?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 combineaccessrules="false" exported="true" kind="src" path="/javaProjectTest-javaProject"/>
- <classpathentry kind="output" path="bin/classes"/>
-</classpath>
diff --git a/testapps/javaProjectTest/lib2/.project b/testapps/javaProjectTest/lib2/.project
deleted file mode 100644
index 63d7a48d1..000000000
--- a/testapps/javaProjectTest/lib2/.project
+++ /dev/null
@@ -1,33 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<projectDescription>
- <name>javaProjectTest-Lib2</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/javaProjectTest/lib2/AndroidManifest.xml b/testapps/javaProjectTest/lib2/AndroidManifest.xml
deleted file mode 100644
index 10d4a001b..000000000
--- a/testapps/javaProjectTest/lib2/AndroidManifest.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.android.tests.javaprojecttest.lib2"
- android:versionCode="1"
- android:versionName="1.0" >
-
- <application
- android:icon="@drawable/ic_launcher"
- android:label="@string/app_name" >
- <activity
- android:name="com.android.tests.javaprojecttest.lib2.Main"
- 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/javaProjectTest/lib2/libs/android-support-v4.jar b/testapps/javaProjectTest/lib2/libs/android-support-v4.jar
deleted file mode 100644
index d006198e6..000000000
--- a/testapps/javaProjectTest/lib2/libs/android-support-v4.jar
+++ /dev/null
Binary files differ
diff --git a/testapps/javaProjectTest/lib2/proguard-project.txt b/testapps/javaProjectTest/lib2/proguard-project.txt
deleted file mode 100644
index f2fe1559a..000000000
--- a/testapps/javaProjectTest/lib2/proguard-project.txt
+++ /dev/null
@@ -1,20 +0,0 @@
-# To enable ProGuard in your project, edit project.properties
-# to define the proguard.config property as described in that file.
-#
-# Add project specific ProGuard rules here.
-# By default, the flags in this file are appended to flags specified
-# in ${sdk.dir}/tools/proguard/proguard-android.txt
-# You can edit the include path and order by changing the ProGuard
-# include property in project.properties.
-#
-# For more details, see
-# http://developer.android.com/guide/developing/tools/proguard.html
-
-# Add any project specific keep options here:
-
-# If your project uses WebView with JS, uncomment the following
-# and specify the fully qualified class name to the JavaScript interface
-# class:
-#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
-# public *;
-#}
diff --git a/testapps/javaProjectTest/lib2/project.properties b/testapps/javaProjectTest/lib2/project.properties
deleted file mode 100644
index 36f15941e..000000000
--- a/testapps/javaProjectTest/lib2/project.properties
+++ /dev/null
@@ -1,15 +0,0 @@
-# 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 edit
-# "ant.properties", and override values to adapt the script to your
-# project structure.
-#
-# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
-#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
-
-# Project target.
-target=android-15
-android.library=true
diff --git a/testapps/javaProjectTest/lib2/res/drawable-hdpi/ic_launcher.png b/testapps/javaProjectTest/lib2/res/drawable-hdpi/ic_launcher.png
deleted file mode 100644
index 8074c4c57..000000000
--- a/testapps/javaProjectTest/lib2/res/drawable-hdpi/ic_launcher.png
+++ /dev/null
Binary files differ
diff --git a/testapps/javaProjectTest/lib2/res/drawable-ldpi/ic_launcher.png b/testapps/javaProjectTest/lib2/res/drawable-ldpi/ic_launcher.png
deleted file mode 100644
index 1095584ec..000000000
--- a/testapps/javaProjectTest/lib2/res/drawable-ldpi/ic_launcher.png
+++ /dev/null
Binary files differ
diff --git a/testapps/javaProjectTest/lib2/res/drawable-mdpi/ic_launcher.png b/testapps/javaProjectTest/lib2/res/drawable-mdpi/ic_launcher.png
deleted file mode 100644
index a07c69fa5..000000000
--- a/testapps/javaProjectTest/lib2/res/drawable-mdpi/ic_launcher.png
+++ /dev/null
Binary files differ
diff --git a/testapps/javaProjectTest/lib2/res/layout/main.xml b/testapps/javaProjectTest/lib2/res/layout/main.xml
deleted file mode 100644
index b79cddb17..000000000
--- a/testapps/javaProjectTest/lib2/res/layout/main.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- >
-<TextView
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="Hello World, Main"
- />
-</LinearLayout>
-
diff --git a/testapps/javaProjectTest/lib2/res/values/strings.xml b/testapps/javaProjectTest/lib2/res/values/strings.xml
deleted file mode 100644
index 549e4ea50..000000000
--- a/testapps/javaProjectTest/lib2/res/values/strings.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
- <string name="app_name">Main</string>
-</resources>
diff --git a/testapps/javaProjectTest/lib2/src/com/android/tests/javaprojecttest/lib2/Lib2.java b/testapps/javaProjectTest/lib2/src/com/android/tests/javaprojecttest/lib2/Lib2.java
deleted file mode 100644
index 5831cb2d1..000000000
--- a/testapps/javaProjectTest/lib2/src/com/android/tests/javaprojecttest/lib2/Lib2.java
+++ /dev/null
@@ -1,33 +0,0 @@
-package com.android.tests.javaprojecttest.lib2;
-
-import java.io.BufferedReader;
-import java.io.IOException;
-import java.io.InputStream;
-import java.io.InputStreamReader;
-
-public class Lib2 {
-
- public static String getContent() {
- InputStream input = Lib2.class.getResourceAsStream("Lib2.txt");
- if (input == null) {
- return "FAILED TO FIND Lib2.txt";
- }
-
- BufferedReader reader = null;
- try {
- reader = new BufferedReader(new InputStreamReader(input, "UTF-8"));
-
- return reader.readLine();
- } catch (IOException e) {
- } finally {
- if (reader != null) {
- try {
- reader.close();
- } catch (IOException e) {
- }
- }
- }
-
- return "FAILED TO READ CONTENT";
- }
-}
diff --git a/testapps/javaProjectTest/lib2/src/com/android/tests/javaprojecttest/lib2/Lib2.txt b/testapps/javaProjectTest/lib2/src/com/android/tests/javaprojecttest/lib2/Lib2.txt
deleted file mode 100644
index 3ba8e357a..000000000
--- a/testapps/javaProjectTest/lib2/src/com/android/tests/javaprojecttest/lib2/Lib2.txt
+++ /dev/null
@@ -1 +0,0 @@
-SUCCESS from Lib2 \ No newline at end of file
diff --git a/testapps/javaProjectTest/lib2/src/com/android/tests/javaprojecttest/lib2/Main.java b/testapps/javaProjectTest/lib2/src/com/android/tests/javaprojecttest/lib2/Main.java
deleted file mode 100644
index 14598969a..000000000
--- a/testapps/javaProjectTest/lib2/src/com/android/tests/javaprojecttest/lib2/Main.java
+++ /dev/null
@@ -1,15 +0,0 @@
-package com.android.tests.javaprojecttest.lib2;
-
-import android.app.Activity;
-import android.os.Bundle;
-
-public class Main extends Activity
-{
- /** Called when the activity is first created. */
- @Override
- public void onCreate(Bundle savedInstanceState)
- {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.main);
- }
-}