Skip to content
Snippets Groups Projects
Commit 8a2b43ee authored by akwizgran's avatar akwizgran
Browse files

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

parent 2f7e2e16
No related branches found
No related tags found
No related merge requests found
......@@ -8,16 +8,16 @@
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
<application android:label="@string/app_name" >
<activity
android:name=".Briar"
android:name=".HelloWorldActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service android:name=".BriarService" android:exported="false" >
<service android:name=".HelloWorldService" android:exported="false" >
<intent-filter>
<action android:name="net.sf.briar.BriarService" />
<action android:name="net.sf.briar.HelloWorldService" />
</intent-filter>
</service>
</application>
......
......@@ -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);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment