Updating sample plugin to test java class loading.

This commit is contained in:
Derek Sollenberger
2009-11-09 15:38:58 -05:00
parent e458201d1a
commit b4a23918d3
5 changed files with 55 additions and 5 deletions

View File

@@ -0,0 +1,11 @@
package com.android.sampleplugin;
public class BackgroundTest {
public BackgroundTest() {}
public int addInt(int x, int y) {
return x + y;
}
}