diff options
author | Xavier Ducrohet <xav@android.com> | 2012-03-02 13:57:08 -0800 |
---|---|---|
committer | Xavier Ducrohet <xav@android.com> | 2012-03-02 14:19:12 -0800 |
commit | 35803ee3b4362248489db1dd1fc6d483f3c3ee65 (patch) | |
tree | bd26c3f561390247b9af0eac7b26ff3c947d5502 /testapps/jarCheckTests2/lib2/src/com/android | |
parent | 81c5fb5448a6342cb3bb29ea501fccf95573288c (diff) | |
download | sdk-35803ee3b4362248489db1dd1fc6d483f3c3ee65.zip sdk-35803ee3b4362248489db1dd1fc6d483f3c3ee65.tar.gz sdk-35803ee3b4362248489db1dd1fc6d483f3c3ee65.tar.bz2 |
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
Diffstat (limited to 'testapps/jarCheckTests2/lib2/src/com/android')
-rw-r--r-- | testapps/jarCheckTests2/lib2/src/com/android/tests/libwithsupport2/MyActivity.java | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/testapps/jarCheckTests2/lib2/src/com/android/tests/libwithsupport2/MyActivity.java b/testapps/jarCheckTests2/lib2/src/com/android/tests/libwithsupport2/MyActivity.java new file mode 100644 index 0000000..fc97aa7 --- /dev/null +++ b/testapps/jarCheckTests2/lib2/src/com/android/tests/libwithsupport2/MyActivity.java @@ -0,0 +1,15 @@ +package com.android.tests.libwithsupport2; + +import android.app.Activity; +import android.os.Bundle; + +public class MyActivity extends Activity +{ + /** Called when the activity is first created. */ + @Override + public void onCreate(Bundle savedInstanceState) + { + super.onCreate(savedInstanceState); + setContentView(R.layout.main); + } +} |