Am i able to just include services (2rd-party service which extends android.app.servide)
I just need to include two of them and be able to start them.
I already included the service-modules into a library and used the ,anifestentries as shown in the example-app
Both i just need to start from within my library or directly from b4a. But how do i start them?
The Services are included in the manifest like this
The Services are inside my library.jar (compiled with slc)
I just need to include two of them and be able to start them.
I already included the service-modules into a library and used the ,anifestentries as shown in the example-app
B4X:
public class MyService extends Service {
B4X:
public class BluetoothLeService extends Service {
Both i just need to start from within my library or directly from b4a. But how do i start them?
The Services are included in the manifest like this
B4X:
AddManifestText(
<service
android:name="com.example.uhfreader816ubt.BluetoothLeService"
android:enabled="true" >
</service>
<service
android:name="com.example.uhfreader816ubt.MyService"
android:enabled="true"
android:exported="true" >
</service>
)