Class names were out of date after merging changes from Afsnit repo.

This commit is contained in:
akwizgran
2012-10-31 00:10:05 +00:00
parent 2f7e2e16cf
commit 8a2b43eee6
2 changed files with 4 additions and 4 deletions

View File

@@ -13,7 +13,7 @@ public class HelloWorldActivity extends Activity {
TextView text = new TextView(this);
text.setText("Hello world");
setContentView(text);
Intent intent = new Intent("net.sf.briar.AfsnitService");
Intent intent = new Intent("net.sf.briar.HelloWorldService");
startService(intent);
}
}