Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

App rejected by playstore #40

Closed
arsalanImtiaz455 opened this issue Oct 12, 2021 · 19 comments
Closed

App rejected by playstore #40

arsalanImtiaz455 opened this issue Oct 12, 2021 · 19 comments
Assignees
Labels
enhancement New feature or request

Comments

@arsalanImtiaz455
Copy link

arsalanImtiaz455 commented Oct 12, 2021

In my app only storage related function is choose file and upload on server ,this library use All storage permission so app rejected on play store cause of android.permission.MANAGE_EXTERNAL_STORAGE this. I sent Google video of where we are using external storage. is there any solution?

Is there possible if we can use this library without this permission?
here is another issue but I didn't get any help #38

@akashmi
Copy link
Member

akashmi commented Oct 12, 2021

@arsalanImtiaz455
#38 (comment)
Please see this comment.
if you want to use photos and video only, then no need to put android.permission.MANAGE_EXTERNAL_STORAGE permission into the manifest.xml file. please try it by removing permission from your code.

@arsalanImtiaz455
Copy link
Author

but we are accessing Documents as well

@akashmi
Copy link
Member

akashmi commented Oct 12, 2021

Currently, we didn't provide support to access other documents without using android.permission.MANAGE_EXTERNAL_STORAGE permission.

and to access that permission you need to submit a request to google.

for now, I'm keeping your suggestion in the backlog for feature updates.

@akashmi akashmi added the enhancement New feature or request label Oct 12, 2021
@arsalanImtiaz455
Copy link
Author

Currently, we didn't provide support to access other documents without using android.permission.MANAGE_EXTERNAL_STORAGE permission.

and to access that permission you need to submit a request to google.

for now, I'm keeping your suggestion in the backlog for feature updates.

i requested but they ask me a very solid reason why am i using this and they rejected again

@reena210990
Copy link

Currently, we didn't provide support to access other documents without using android.permission.MANAGE_EXTERNAL_STORAGE permission.
and to access that permission you need to submit a request to google.
for now, I'm keeping your suggestion in the backlog for feature updates.

i requested but they ask me a very solid reason why am i using this and they rejected again

@arsalanImtiaz455 found any solution for this problem?

@arsalanImtiaz455
Copy link
Author

Currently, we didn't provide support to access other documents without using android.permission.MANAGE_EXTERNAL_STORAGE permission.
and to access that permission you need to submit a request to google.
for now, I'm keeping your suggestion in the backlog for feature updates.

i requested but they ask me a very solid reason why am i using this and they rejected again

@arsalanImtiaz455 found any solution for this problem?

no @reena210990 I was accessing documents using lassi after many tries I stop using lassi for documents and used another solution.

@reena210990
Copy link

Currently, we didn't provide support to access other documents without using android.permission.MANAGE_EXTERNAL_STORAGE permission.
and to access that permission you need to submit a request to google.
for now, I'm keeping your suggestion in the backlog for feature updates.

i requested but they ask me a very solid reason why am i using this and they rejected again

@arsalanImtiaz455 found any solution for this problem?

no @reena210990 I was accessing documents using lassi after many tries I stop using lassi for documents and used another solution.

@arsalanImtiaz455 can you please help me how to solve this problem?

@arsalanImtiaz455
Copy link
Author

Currently, we didn't provide support to access other documents without using android.permission.MANAGE_EXTERNAL_STORAGE permission.
and to access that permission you need to submit a request to google.
for now, I'm keeping your suggestion in the backlog for feature updates.

i requested but they ask me a very solid reason why am i using this and they rejected again

@arsalanImtiaz455 found any solution for this problem?

no @reena210990 I was accessing documents using lassi after many tries I stop using lassi for documents and used another solution.

@arsalanImtiaz455 can you please help me how to solve this problem?

yes why not.
can you please tell me exact scenario why you are using MANAGE_EXTERNAL STORAGE ?
are you trying to access documents that's why you are using this permission ?

@reena210990
Copy link

In my app only storage related function is choose file and upload on server ,this library use All storage permission so app rejected on play store cause of android.permission.MANAGE_EXTERNAL_STORAGE this. I sent Google video of where we are using external storage. is there any solution?

Is there possible if we can use this library without this permission? here is another issue but I didn't get any help #38

@arsalanImtiaz455 "In my app only storage related function is choose file and upload on server" for same process I have used lassi

@reena210990
Copy link

@arsalanImtiaz455 I want to choose pdf file from storage and upload on server.

@arsalanImtiaz455
Copy link
Author

@arsalanImtiaz455 I want to choose pdf file from storage and upload on server.

should I send you code that I am using to select PDF ?

@arsalanImtiaz455
Copy link
Author

@arsalanImtiaz455 Yes please and please tell me now your app accepted by google play store ?

yes

@reena210990
Copy link

@arsalanImtiaz455 Yes please and please tell me now your app accepted by google play store ?

yes

please guide me how to solve and have you used MANAGE_EXTERNAL STORAGE permission in your code?

@arsalanImtiaz455
Copy link
Author

arsalanImtiaz455 commented Dec 29, 2021

@arsalanImtiaz455 Yes please and please tell me now your app accepted by google play store ?

here you can specify what type of document you want to select
private fun browseDocuments()
{
val intent = Intent(Intent.ACTION_OPEN_DOCUMENT)
intent.addCategory(Intent.CATEGORY_OPENABLE)
intent.type = "/"
val mimetypes = arrayOf(
"application/vnd.openxmlformats-officedocument.wordprocessingml.document",
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
"application/vnd.openxmlformats-officedocument.presentationml.presentation",
"application/vnd.rar", "text/plain", "application/vnd.rar", "application/zip",
"application/msword", "application/pdf"
)
intent.putExtra(Intent.EXTRA_MIME_TYPES, mimetypes)
startActivityForResult(intent, PICK_FILE_RESPONSE)
}

@arsalanImtiaz455
Copy link
Author

@arsalanImtiaz455 Yes please and please tell me now your app accepted by google play store ?

yes

please guide me how to solve and have you used MANAGE_EXTERNAL STORAGE permission in your code?

no I removed it from my app's manifest

@reena210990
Copy link

@arsalanImtiaz455 Thank you so much 👍

@arsalanImtiaz455
Copy link
Author

@arsalanImtiaz455 Thank you so much 👍

my pleasure
sorry I was busy.

@sanjay-mi
Copy link
Collaborator

Hello @arsalanImtiaz455 @reena210990

We have released new version of Lassi v0.4.0
In this version we have given support of file picker(System default view) without manage external storage permission.
For more details please read README.md

Thank you

@arsalanImtiaz455
Copy link
Author

arsalanImtiaz455 commented Mar 3, 2022 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

4 participants