[android-developers] Re: How to disable the security/permission check?

2008-11-20 Thread blues
We need to target as more markets as we can. So we need to work on those phones already out from the carriers. Could you please pass this information to other people in Google. We do need a way to turn off security for this kind of enterprise software scenario. So more phones will be sold,

[android-developers] Re: How to disable the security/permission check?

2008-11-19 Thread Mark Murphy
blues wrote: May I know if this is a way to disable the security/permission check? I don't believe there is one. This is a enterprise project so we have the full control of all the phones. We don't need the market to distribute the software. I need to share the user id of phone by doing

[android-developers] Re: How to disable the security/permission check?

2008-11-19 Thread goat
I believe you could do this by building the entire system image from source. That way, everything is signed with your certificate and the check on sharedUserId to make sure the certificates are the same shouldn't fail. source.android.com On Nov 19, 6:41 am, Mark Murphy [EMAIL PROTECTED] wrote:

[android-developers] Re: How to disable the security/permission check?

2008-11-19 Thread blues
The userId phone is already on the phone and some packages are signed under this Id. The thing is I need to share with those. I hope I don't need to build the whole Andorid source and take the risk of brick the device. On Nov 19, 4:41 am, Mark Murphy [EMAIL PROTECTED] wrote: blues wrote: May

[android-developers] Re: How to disable the security/permission check?

2008-11-19 Thread Mark Murphy
blues wrote: The thing is I need to share with those. If you're referring to built-in Android applications, in theory you should be using whatever sort of public APIs those packages are supporting (e.g., ContentProvider, a service's AIDL, Intents). What else are you looking to share with

[android-developers] Re: How to disable the security/permission check?

2008-11-19 Thread blues
My goal is to call those RIL methods in the internal RIL.java. Since I don't have access to it on the phone, I endup with copying the RIL.java and several other internal java files into my project. Now the problem is I am not able to connect to the local socket since it needs uid radio. On Nov