OK i did a quick test on this.
I modified the provided jar file to store values passed in the onBind Intent into 2 static variables. (stAppID and stAppVer) and print them out when a certain method is called on the service
When binding to the service each app passes in different values with the Intent.
If the service is indeed shared between applications I would expect 2 things:
- Process id is the same when statics
are printed.
- After both apps have
bound to the service subsequent
calls to the method which prints the
static variables should print out
the same value.
Here is the log output from my test.
E/******** ServiceTest *********( 744): ***********************************************
E/******** ServiceTest *********( 744): ***********************************************
E/******** ServiceTest *********( 744): Thread = main
E/******** ServiceTest *********( 744): stAppID = APP AAAAAAAAAAAAA
E/******** ServiceTest *********( 744): stAppVer = VER AAAAAAAAAAAAA
E/******** ServiceTest *********( 744): ***********************************************
E/******** ServiceTest *********( 744): ***********************************************
D/dalvikvm( 744): GC freed 4963 objects / 267800 bytes in 100ms
D/dalvikvm( 778): GC freed 2640 objects / 151400 bytes in 105ms
I/ActivityManager( 578): Starting activity: Intent { flags=0x10100000 comp={com.a.service.test/com.a.service.test.TrackingSample} }
W/InputManagerService( 578): Window already focused, ignoring focus gain of: com.android.internal.view.IInputMethodClient$Stub$Proxy@4370dac0
I/ActivityManager( 578): Starting activity: Intent { flags=0x10100000 comp={com.b.service.test/com.b.service.test.TrackingSample} }
W/InputManagerService( 578): Window already focused, ignoring focus gain of: com.android.internal.view.IInputMethodClient$Stub$Proxy@436f7760
D/MMT ( 778): Creating new last event timestamp record for UIApplicationWillTerminateNotification
D/MMT ( 778): Run closed
D/MMT ( 778): Run started
E/******** ServiceTest *********( 778): ***********************************************
E/******** ServiceTest *********( 778): ***********************************************
E/******** ServiceTest *********( 778): Thread = main
E/******** ServiceTest *********( 778): stAppID = APP BBBBBBBBBBBBBBB
E/******** ServiceTest *********( 778): stAppVer = VER BBBBBBBBBBBBBBB
E/******** ServiceTest *********( 778): ***********************************************
E/******** ServiceTest *********( 778): ***********************************************
E/******** ServiceTest *********( 744): ***********************************************
E/******** ServiceTest *********( 744): ***********************************************
E/******** ServiceTest *********( 744): Thread = main
E/******** ServiceTest *********( 744): stAppID = APP AAAAAAAAAAAAA
E/******** ServiceTest *********( 744): stAppVer = VER AAAAAAAAAAAAA
E/******** ServiceTest *********( 744): ***********************************************
E/******** ServiceTest *********( 744): ***********************************************
D/dalvikvm( 744): GC freed 836 objects / 131136 bytes in 86ms
As can be seen from this. Neither of the required conditions have held true therefore I conclude that the service is not being shared between applications. (the process ID is the number in parenthesis just before the colon in each log line)
This makes sense when you think about it.
How can the operating system decide that the repackaged jars contain the same version of the service. There is no version metadata declared on an Android service.
Another problem is this service makes use of a database. If that database was shared among applications that would be a security risk.