From 35803ee3b4362248489db1dd1fc6d483f3c3ee65 Mon Sep 17 00:00:00 2001 From: Xavier Ducrohet Date: Fri, 2 Mar 2012 13:57:08 -0800 Subject: More fixes to the test projects. - add eclipse files for a bunch of them - package name refactoring to match the folder structure somehow (more need this) - updated the javaproject to have an extra java project and to have code that access java resources to test packaging too. Change-Id: Ie13842c1b891e495e04d8a157a12cac9db13f30e --- .../android/tests/basicProjectWithJava/Main.java | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 testapps/javaProjectTest/app/src/com/android/tests/basicProjectWithJava/Main.java (limited to 'testapps/javaProjectTest/app/src/com/android/tests/basicProjectWithJava/Main.java') diff --git a/testapps/javaProjectTest/app/src/com/android/tests/basicProjectWithJava/Main.java b/testapps/javaProjectTest/app/src/com/android/tests/basicProjectWithJava/Main.java deleted file mode 100644 index eb6be25..0000000 --- a/testapps/javaProjectTest/app/src/com/android/tests/basicProjectWithJava/Main.java +++ /dev/null @@ -1,22 +0,0 @@ -package com.android.tests.basicProjectWithJava; - -import com.android.tests.basicJavaProject.Foo; - -import android.app.Activity; -import android.os.Bundle; -import android.widget.TextView; - -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); - - Foo foo = new Foo(); - - TextView tv = (TextView) findViewById(R.id.text); - tv.setText("basicProjectWithJava\nvalue from java project:" + foo.getRandomFoo()); - } - -} \ No newline at end of file -- cgit v1.1