mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-16 20:59:54 +01:00
Class names were out of date after merging changes from Afsnit repo.
This commit is contained in:
@@ -8,16 +8,16 @@
|
|||||||
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
|
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
|
||||||
<application android:label="@string/app_name" >
|
<application android:label="@string/app_name" >
|
||||||
<activity
|
<activity
|
||||||
android:name=".Briar"
|
android:name=".HelloWorldActivity"
|
||||||
android:label="@string/app_name" >
|
android:label="@string/app_name" >
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="android.intent.action.MAIN" />
|
<action android:name="android.intent.action.MAIN" />
|
||||||
<category android:name="android.intent.category.LAUNCHER" />
|
<category android:name="android.intent.category.LAUNCHER" />
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
</activity>
|
</activity>
|
||||||
<service android:name=".BriarService" android:exported="false" >
|
<service android:name=".HelloWorldService" android:exported="false" >
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="net.sf.briar.BriarService" />
|
<action android:name="net.sf.briar.HelloWorldService" />
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
</service>
|
</service>
|
||||||
</application>
|
</application>
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ public class HelloWorldActivity extends Activity {
|
|||||||
TextView text = new TextView(this);
|
TextView text = new TextView(this);
|
||||||
text.setText("Hello world");
|
text.setText("Hello world");
|
||||||
setContentView(text);
|
setContentView(text);
|
||||||
Intent intent = new Intent("net.sf.briar.AfsnitService");
|
Intent intent = new Intent("net.sf.briar.HelloWorldService");
|
||||||
startService(intent);
|
startService(intent);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user