If I set the following in the Manifest manually and then make the AndroidManifest file "read-only", the service seems to be running fine:
I'd like to avoid keeping the AndroidManifest file "read-only" while developing so I have tried the following in the manifest editor:
"com.kct.bluetooth_demo" is part of my wrapper.
As a test, SetApplicationAttribute works fine with "com.kct.bluetooth_demo" and apparently, the module is found:
I guess it is something stupid but I cannot get it to work in the manifest editor. Any help/ideas?
<service android:name="com.kct.bluetooth_demo.KCTBluetoothService"/>
I'd like to avoid keeping the AndroidManifest file "read-only" while developing so I have tried the following in the manifest editor:
but I get an error as follows:SetServiceAttribute(com.kct.bluetooth_demo, android:name, "KCTBluetoothService")
Error parsing manifest script:
Module com.kct.bluetooth_demo not found (Manifest Editor)
"com.kct.bluetooth_demo" is part of my wrapper.
As a test, SetApplicationAttribute works fine with "com.kct.bluetooth_demo" and apparently, the module is found:
SetApplicationAttribute(android:name, "com.kct.bluetooth_demo.KCTApp")
I guess it is something stupid but I cannot get it to work in the manifest editor. Any help/ideas?