BlackBerry Forums Support Community
              

Closed Thread
 
Thread Tools
Old 10-13-2008, 06:26 AM   #1
josimapi
New Member
 
Join Date: Oct 2008
Model: 8820
PIN: N/A
Carrier: Vodafone
Posts: 7
Default Best way of changing application permissions

Please Login to Remove!

Hello,

I know this has been answered many times in the forums, but I just wanted to know if the next piece of code is a good way to check and change the permissions of my application.

Code:
	public static void changeApplicationPermissions() {		
		try {
			Vector vNewPermissions;
			for(int i=0; i < 3; i++)
			{
				vNewPermissions = this.checkApplicationPermissions();
				if(vNewPermissions != null)				
					this.modifyApplicationPermissions(vNewPermissions);					
				
				if((vNewPermissions != null) && (i == 2))
				{
					BBUtilities.launchDialogScreen("MyApplication is not able to work because it doesn't have enough permissions to work correctly." +
					"\MyApplication will be closed.");					
					System.exit(0);
				}
				else
					break;
			}				
		} catch (final MyApplication e1) {
			UiApplication.getUiApplication().invokeLater(new Runnable() {
				public void run() {
					Dialog.alert(e1.getMessage());
					System.exit(0);
				}
			});
			return;
		} catch (Exception e) {
			System.out.println(e.getMessage());
		}
	}
	
	public static final Vector checkApplicationPermissions() throws MyApplicationException
	{		
		try
		{			
			ApplicationPermissions permissions = ApplicationPermissionsManager.getInstance().getApplicationPermissions();
			Vector permissionsToChange = null;			
			int[] p;						
			int i;			
			
			p = new int[] { ApplicationPermissions.PERMISSION_AUTHENTICATOR_API,
							ApplicationPermissions.PERMISSION_CHANGE_DEVICE_SETTINGS,
							ApplicationPermissions.PERMISSION_CODE_MODULE_MANAGEMENT,
							ApplicationPermissions.PERMISSION_EMAIL,
							ApplicationPermissions.PERMISSION_EVENT_INJECTOR,
							ApplicationPermissions.PERMISSION_EXTERNAL_CONNECTIONS,							
							ApplicationPermissions.PERMISSION_FILE_API,
							ApplicationPermissions.PERMISSION_INTERNAL_CONNECTIONS,
							ApplicationPermissions.PERMISSION_HANDHELD_KEYSTORE,
							ApplicationPermissions.PERMISSION_LOCAL_CONNECTIONS,
							ApplicationPermissions.PERMISSION_PHONE	
						};		
			
			for(i = 0; i< p.length; i++)
			{				
				if(permissions.containsPermissionKey(p[i]))					
					if(permissions.getPermission(p[i]) != ApplicationPermissions.VALUE_ALLOW)
					{
						if(permissionsToChange == null)
							permissionsToChange = new Vector();						
						permissionsToChange.addElement(new Integer(p[i]));
					}
			}
			
			return permissionsToChange;
			
		}catch (Exception e) {		
			throw new MyApplicationException("MyApplication doesn't have enough permissions to work correctly.\MyApplication will be closed."+e.getMessage());
		}
	}	

	public static final boolean modifyApplicationPermissions(Vector vNewPermissions) throws MyApplicationException
	{		
		try{
			ApplicationPermissions permissions = ApplicationPermissionsManager.getInstance().getApplicationPermissions();
			for(int i = 0 ; i < vNewPermissions.size(); i++)
				permissions.addPermission(((Integer)vNewPermissions.elementAt(i)).intValue());				
			return ApplicationPermissionsManager.getInstance().invokePermissionsRequest(permissions);
		}catch (Exception e) {
			throw new MyApplicationException("MyApplication doesn't have enough permissions to work correctly.\MyApplication will be closed.");
		}		
	}
Do you think is better to change the permissions when the user launches the application than letting the BB prompts the user when a resource without permission is going to be used?

Does someone know which is the best way of doing this? Because I still don't have this clear enough and haven't found info related with it...

Thank you!
Offline  
Old 10-15-2008, 05:30 AM   #2
josimapi
New Member
 
Join Date: Oct 2008
Model: 8820
PIN: N/A
Carrier: Vodafone
Posts: 7
Default

I cannot believe that nobody has done something similar to this, my only question is how should I change permissions of the application. With my solution I have a bug because for those permissions that I don't want to be allowed BB automatically change them to DENY, which is a bit weird...

Am I doing something wrong?
Offline  
Closed Thread



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


Transistor S8050 S8550 J201 2SC1815 2SC945 2SA733 S9012 S9014 KSP10 TO-92 picture

Transistor S8050 S8550 J201 2SC1815 2SC945 2SA733 S9012 S9014 KSP10 TO-92

$4.90



100PCS Transistor NSC TO-92 2N5460 picture

100PCS Transistor NSC TO-92 2N5460

$31.51



FOUR HG 2SC1969 Transistors USA SELLER  Direct Mitsubishi Replace picture

FOUR HG 2SC1969 Transistors USA SELLER Direct Mitsubishi Replace

$24.99



10PCS Transistor TO-3PF 2SC5929 C5929 picture

10PCS Transistor TO-3PF 2SC5929 C5929

$36.94



TO-92 Assortment NPN PNP DIY kit 15 value 600pcs Transistor  picture

TO-92 Assortment NPN PNP DIY kit 15 value 600pcs Transistor

$11.52



MOSFET - IRF540N 100V 33A - Transistor for Arduino Pi TT picture

MOSFET - IRF540N 100V 33A - Transistor for Arduino Pi TT

$49.72







Copyright © 2004-2016 BlackBerryForums.com.
The names RIM © and BlackBerry © are registered Trademarks of BlackBerry Inc.