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


OEM Battery for MacBook Pro 17

OEM Battery for MacBook Pro 17" A1309 A1297 Early 2009 Mid 2009 2010 MC226

$36.90



NEW OEM Battery A1466 A1369 A1496 A1405 A1377 A1466 for MacBook Air 13 inch picture

NEW OEM Battery A1466 A1369 A1496 A1405 A1377 A1466 for MacBook Air 13 inch

$31.90



NEW OEM A1618 Battery for Apple MacBook Pro 15” Retina 99.5Wh A1398 Mid 2015 picture

NEW OEM A1618 Battery for Apple MacBook Pro 15” Retina 99.5Wh A1398 Mid 2015

$43.90



iPhone 13 12 11 PRO MAX XR XS 8/7/6 Fast Charger USB Data Cable cord 10 feet/3M picture

iPhone 13 12 11 PRO MAX XR XS 8/7/6 Fast Charger USB Data Cable cord 10 feet/3M

$4.99



A1618 NEW OEM Battery for MacBook Pro 15

A1618 NEW OEM Battery for MacBook Pro 15" Retina A1398 Mid 2015 020-00079

$43.90



Genuine A1417 OEM Battery Apple Macbook Pro 15 Retina A1398 Mid 2012 Early 2013 picture

Genuine A1417 OEM Battery Apple Macbook Pro 15 Retina A1398 Mid 2012 Early 2013

$37.90







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