Android :: Possible To Hide Application Permissions From User?

Jul 11, 2010

I am wanting to know if a developer has the ability to choose not to display the permissions needed for an app they create. For an example if there is a note taking app in the market that says no permissions needed, but in reality, it does have "internet access"capabilities not shown to the user/downloader, Is it possible for App permissions to be hidden and not displayed to the user? Can someone explain to me the process on assigning and displaying permissions on android apps?

Android :: Possible to Hide Application Permissions from User?


Android :: Any Way To Hide Certain Application Permissions / Inbuilt File Manager?

Jul 3, 2010

I was wondering, is there anyway a developer can hide or exclude a certain app permissions from being seen by Android market users? And are the permissions for an app controlled or regulated by Google? Another question I have - Is there anyway to restrict PDF files from opening in the default browser? This is a problem when I am on a search engine and accidentally click a link that's a pdf file- I don't want pdf's downloaded without asking me permission atleast. And my last question, is there a way to view current extensions that are installed in the browser.? Where is androids inbuilt file manager? Does uninstalling an application completely take off everything related to that app from your phone?

View 2 Replies View Related

Android :: Can Custom Read - Write Permissions Effect User Acceptance Of An Application

Apr 29, 2010

I have two published apps that are pretty targeted to the user collecting their personal medical data (like Blood Pressure, etc.) and then, eventually sending it somewhere, if they choose.

I decided to put Read/Write permission on my ContentProvider, so if another app comes along that wants to the access that content, the user will be warned. The permission that is required is declared in my apps.

When the user installs my apps, they are also given a warning that the app requires that permission (even though it's the one that declares it), and it shows up in the Marketplace also.

The question is: Is it possible that the permission acceptance part of installing my app could be putting customers off? I don't know what other's acceptance rate is, but mine is around 50% of customers who download it have active installs.

View 5 Replies View Related

Motorola Droid X :: Hide Superuser Permissions Icon

Sep 22, 2010

I forgot to unroot before hitting the OTA. Although I lost root in the process, I still have the SuperUser Permissions icon in my app tray. Is there a way to hide the icon without having to root and remove it manually?

View 8 Replies View Related

Android :: How To Hide User Dictionary? (Suggested Words On Keyboard)

Jun 26, 2009

How can I hide the suggested words or turn off auto complete for the virtual keyboard?

View 9 Replies View Related

General :: Android 4.2.2 - Hide Or Change User Agent For Exchange?

Apr 29, 2013

I bought a Galaxy S4 wit Android 4.2.2 preinstalled. In my Company we are allowed to sync with Active Sync/Exchange our Mails, Contacs and Calendar. But we are only allowed to use it with Windows Mobile and iOS!

The Sync with my Galaxy works perfect but when I check the sync protocoll in my Outlook Web Access Account they will see that I am syncing a Android device.

Is it possible to hide or change the User Agent for Exchange?

View 1 Replies View Related

Android :: Hide Application From Application List

Nov 1, 2010

Is there any way to hide an application icon from Android applications list ? The application should be downloaded from Market and opened some GUI for configuring my application. I don't want to see any icon of my application in applications list. User should not be able to run it.

By the way I know some way:
remove this line from manifest
<category android:name="android.intent.category.LAUNCHER" />

But it is not worked for me, because the GUI is not shown.

View 6 Replies View Related

Android :: Hide An Application From Application List

Nov 1, 2010

Is there any way to hide an application icon from Android applications list ? The application should be downloaded from Market and opened some GUI for configuring my application. I don't want to see any icon of my application in applications list. User should not be able to run it.

By the way I know some way:
remove this line from manifest
category android:name="android.intent.category.LAUNCHER"

But it is not worked for me, because the GUI is not shown.

View 2 Replies View Related

Android :: Hide One Application In Application Menu

Jul 10, 2010

I am new to this Android application Programing. I need to know the thing that, disable and hiding of one application from application menu list. instead of deleting the entire application, that need to do some other changes to hide and disabling any application from menu list.

View 2 Replies View Related

Android :: Permissions To Be Set For An MMS Receiver Application

Jun 28, 2009

I have found the solution to this problem, the issue was I was also supposed to add the data tag:<data android:mimeType="application/vnd.wap.mms-message" />.Can someone provide some sample code to access the contents of the MMS message received.

View 2 Replies View Related

Android :: Permissions With Application Signing?

Sep 3, 2010

I have an application which has some of it's activities restricted via my own permission. The permission is published in the manifest of the application A and a second application B should request this permission and then be able to call an activity from app A. Both applications belong to me and are signed with the same certificate (they share the same keystore and alias/password from it). Application A gets granted the permission but app B gets never granted the permission! Logcat tells me about this during the installation and the app crashes with an security exception when trying to start the activity from app A. What the heck am I doing wrong? Could it be something with the application signing? Please help me, I'm totally out of ideas.

View 3 Replies View Related

Android :: Application Requires Permissions To Set Internet

Oct 15, 2010

I have a question about a simple application, the only permission that i have set is Internet, because it's a simple application that reads something on the net. Anyway, the app requires to me (when i install it) three permissions, Internet, SD Storage and Phone usage.

Anyone knows why happens this?

View 2 Replies View Related

Android :: Adjusting Application Permissions Real Time

Feb 25, 2010

I know you can apply Permissions for Applications on it's manifest.xml file. What I want to know is, can those Permissions be adjusted by the Applications on the fly?Here's my reason: say I have an application that is allowed to do "x", "y", and "z" (SMS, sockets, etc) Permissions. Now lets say I have a logical "user" that connects to this Application, and I want that user to only be able to do "x" and "y", but not "z" Permissions. It would be nice to have the Android Framework handle that instead of having a bunch of "if's" in the App code.

View 1 Replies View Related

Android :: Compile Droid Application With System Permissions?

Aug 30, 2010

I need to compile an application with system permissions in order to use target application com.android.settings. For now while I try to run my apk I get the error message

Test run failed: Permission Denial:
starting instrumentation
ComponentInfo{com.jayway.test/android.test.InstrumentationTestRunner}
from pid=354, uid=354 not allowed
because package com.jayway.test does
not have a signature matching the
target com.android.settings

How can I compile my application with system permissions?

View 1 Replies View Related

Android :: Application Compatible With System Assigned Permissions Automatically

Apr 7, 2010

I've noticed a troubling issue with app permissions. It seems that after installing, some apps that didn't ask for these two permissions:
Storage: modify/delete SD card contents
Phone calls: read phone state and identity
will magically acquire them after install! These apps do not ask for these permissions during install, nor do their Market pages disclose that they need them. After looking through many logcat messages during an install, I found this:
04-07 03:23:08.973,I,PackageParser,1016,com.some.app.nam e.here: compat added android.permission.WRITE_EXTERNAL_STORAGE android.permission.READ_PHONE_STATE

Digging around, I found this online:
Android permissions: Phone Calls: read phone state and identity - Stack Overflow. It seems that an app that is compatible with systems earlier than 1.6 will automatically be assigned those two permissions. If a developer is willing to make their app compatible only with 1.6+ systems, they can change their app's manifest:
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="4" />
and when users on 1.6+ devices install the app, those two extra permissions won't show up.

I bet a lot of app developers don't know this, and therefore their apps will seems to acquire those two permissions magically. Users will install those apps, see the two extra permissions when they inspect the app security setting and be very puzzled. They'll probably think the app is malware and uninstall it. I've contacted some app developer about this issue, so that they can (hopefully) fix their app so it doesn't look like malware. Unfortunately, until all legit apps are fixed, it'll be hard to distinguish amongst apps that have those permissions, which app actually needs those permissions, which apps need fixing, and which apps are malware.

View 2 Replies View Related

Android :: Hide Application In Home Dinamically

Jun 10, 2009

I want to know if there is a way or workaround to hide an application to be shown in the Home activity, but doing this dynamically from my own app code.

View 3 Replies View Related

Android :: Any Application To Hide Text Messages?

Aug 9, 2010

I was wondering if there was such an app that will allow u to hide text messages from a certain person in your contacts so when someone else would go through my phone they were unable to see any txt from there?

View 4 Replies View Related

Android :: How To Hide Application Icon From Desktop?

Jul 6, 2010

I defined an application which is only used from my other application. So I would like to hide the icon of this application, so that the user can't see it on the desktop of his phone (or how do you call the thing where all apps are listed?). My manifest file looks the following way:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="xyz.games.pacman.controller" android:versionCode="1" android:versionName="1.0">
<uses-permission android:name="android.permission.BLUETOOTH"/>
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".PacmanGame" android:label="@string/app_name" android:screenOrientation="portrait"> <intent-filter>
<action android:name="pacman.intent.action.Launch" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> </activity>
<receiver android:name="xyz.games.pacman.network.MessageListener">
<intent-filter> <action android:name="xyz.games.pacman.controller.BROADCAST" />
</intent-filter> </receiver> </application> <uses-sdk android:minSdkVersion="7" /> </manifest>

I already read this question:
http://stackoverflow.com/questions/1063604/how-to-hide-an-application-icon-in-android-emulator
But if I just remove the line
<category android:name="android.intent.category.DEFAULT" />
in my manifest, the activity isn't working at all (ActivityNotFoundException in the calling activity). I already tried android.intent.category.EMBEDDED but this doesn't work too. In the Internet I found CommonsWare answer http://osdir.com/ml/Android-Developers/2010-06/msg03617.html that it can be done using PackageManager. Unfortunately, it isn't explained how exactly and I couldn't find a solution by browsing the PackageManager API.

View 3 Replies View Related

Hide App Icon From Android Application List

Nov 1, 2010

Is there any way to hide an application icon from Android applications list ? The application should be downloaded from Market and opened some GUI for configuring my application. I don't want to see any icon of my application in applications list. User should not be able to run it.

By the way I know some way:remove this line from manifest <category android:name="android.intent.category.LAUNCHER" /> But it is not worked for me, because the GUI is not shown.

View 16 Replies View Related

General :: Find File Permissions Of Application?

Jan 31, 2014

how to find permissions a given application has. Each app is run as a certain user, so wouldn't finding the file permissions of an app be the same as finding the file permissions of a user? On Linux/Unix there is the find command but I don't know of any alternative command that is available on android. I am running KitKat 4.4.2 kernal 3.40-gadb2201.

View 3 Replies View Related

Android :: Any Application / Widget To Auto Hide Dock?

Sep 7, 2010

Is there an app/widget that will auto-hide the dock like the Windows taksbar that will either work in conjunction with LauncherPro or have its own dock?

View 9 Replies View Related

Android : Way To Hide Application's Icon From Main Menu?

Jun 24, 2010

I want to hide my application icon from main menu at the run time. I believe that a filter with category Launcher in the application's manifest file is responsible for the application's presence in the main menu. Is there any way to change the category at run time? or any other way to hide the icon from main menu?

View 4 Replies View Related

General :: Hide Root / Su From Another Application?

Jun 15, 2011

My company has a policy for our company email application (Good) that doesn't allow the application to run if a phone is rooted. Brilliant, the application is password protected and has remote wipe capabilities, but that still isn't enough for them! Which means I'm stuck carrying two phones around. I would like to either hide superuser/su/root from the phone when I'm not needing the escalated rights, or just block it from seeing it completely.

I'm currently running (about to upgrade to a new ROM, but not sure which):
Samsung Galaxy S Captivate
MODEL #: SAMSUNG-SGH-I897
FIRMWARE: 2.2
BASEBAND VERSION: I897UCJI6
KERNEL VER: 2.6.32.9
BUILD #: COGNITION.V2.3B8

One last thought if I can get this accomplished. I might be that I might be looking to get the new Samsung Infuse 4g (AT&T), since I'd finally be consolidating to 1 phone.

View 9 Replies View Related

General :: App Update Permissions - Any Way To Restrict Permissions?

Jul 23, 2012

The permissions say that you must agree to allow them to delete files from your storage including your SD card; must agree to allow them to extract any information from your phone, etc. In other words they can do any thing they want with your phone and the data in it.

Is there any way to not grant these permissions and still get updates?

View 2 Replies View Related

General :: Hide Application Permanently From Recent Apps History In ICS?

Jun 8, 2012

New feature of ICS, "Recent Apps with thumbnails" is a privacy concern for me. As it shows my personal text messages in the thumbnail to people whom i handover my device. I have already locked message application but still ICS is able to capture a screenshot of it and displays it in Recent App history. Is there a way to bypass an application from Recent apps history?

View 1 Replies View Related

Android :: Keep User Logged In To Application?

Jan 2, 2010

When a user logs in to my online android application, I want to store a cookie on the user's phone so that he doesn't have to log in to the application on subsequent visits from the same phone.

View 2 Replies View Related

Android :: Hiding Application From User

Aug 13, 2009

I want to start my application when phone start and after that i do not want that user can know that my application is running. Is there any way i can do it ? In phone when we press home screen for some times it display all running application.I do not want my application to display in that list.Is there any way to do it

View 5 Replies View Related

Android :: How To Know When User Launches Application

Apr 8, 2010

I want to play a video when the main activity launches from the appicon.

Application.onCreate() is not always called and Activity.onResume/ onCreate is called to many times (e.g. when user goes back from child activity).

How can I do this?

View 5 Replies View Related

Android :: Store User Settings In Application

Apr 24, 2009

I am creating an application which connects to the server using username/password and I would like to enable the option "Save password" so the user wouldn't have to type the password each time the application starts. I was trying to do it with Shared Preferences but am not sure if this is the best solution. I would appreciate any suggestion on how to store user values/settings in Android application.

View 4 Replies View Related

Android :: Query User List Of Application

Apr 28, 2010

I find a web site (http://www.appbrain.com/), it can tell me which users download my application, and their device type. However it list 10 users at most.

I wanna know which devices type that my application was running. Does anybody could tell me, how to get the user list? and how to get their device type.

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved