My App does not qualify for use of the requested permissions (SMS) Google new policy (Ionic 3)
We reviewed your request and found that your app, does not qualify for use of the requested permissions for the following reasons:
The declared feature {Default SMS}
is allowed; however we determined it to be unnecessary for the core functionality of your app.
Default SMS [READ_SMS, SEND_SMS, WRITE_SMS, RECEIVE_SMS, RECEIVE_WAP_PUSH, RECEIVE_MMS]
I use the <uses-permission android:name="android.permission.SEND_SMS" />
to share the app via SMS (send a text and a link to the website ), whats the work arround?
Thanks

|
show 1 more comment
We reviewed your request and found that your app, does not qualify for use of the requested permissions for the following reasons:
The declared feature {Default SMS}
is allowed; however we determined it to be unnecessary for the core functionality of your app.
Default SMS [READ_SMS, SEND_SMS, WRITE_SMS, RECEIVE_SMS, RECEIVE_WAP_PUSH, RECEIVE_MMS]
I use the <uses-permission android:name="android.permission.SEND_SMS" />
to share the app via SMS (send a text and a link to the website ), whats the work arround?
Thanks

Sharing the app via SMS means sending theGooglePlay
link of your app in SMS right?
– Kavin Prabhu
Jan 2 at 11:18
@KavinPrabhu it send a text and a link to the website
– Kevin Dias
Jan 2 at 11:19
1
Then you can achieve that viaImplicitIntent
itself right? Rather than you sending the message from your application you can invoke the app in the device which can do it!
– Kavin Prabhu
Jan 2 at 11:28
@KavinPrabhu yes i see your point here , but im using ionic 3 , i will try to make a bridge thanks
– Kevin Dias
Jan 2 at 11:31
I believe that shouldn't be a problem, refer ionicframework.com/docs/native/web-intent this may help you
– Kavin Prabhu
Jan 2 at 11:34
|
show 1 more comment
We reviewed your request and found that your app, does not qualify for use of the requested permissions for the following reasons:
The declared feature {Default SMS}
is allowed; however we determined it to be unnecessary for the core functionality of your app.
Default SMS [READ_SMS, SEND_SMS, WRITE_SMS, RECEIVE_SMS, RECEIVE_WAP_PUSH, RECEIVE_MMS]
I use the <uses-permission android:name="android.permission.SEND_SMS" />
to share the app via SMS (send a text and a link to the website ), whats the work arround?
Thanks

We reviewed your request and found that your app, does not qualify for use of the requested permissions for the following reasons:
The declared feature {Default SMS}
is allowed; however we determined it to be unnecessary for the core functionality of your app.
Default SMS [READ_SMS, SEND_SMS, WRITE_SMS, RECEIVE_SMS, RECEIVE_WAP_PUSH, RECEIVE_MMS]
I use the <uses-permission android:name="android.permission.SEND_SMS" />
to share the app via SMS (send a text and a link to the website ), whats the work arround?
Thanks


edited Jan 8 at 18:26
Kevin Dias
asked Jan 2 at 11:12


Kevin DiasKevin Dias
465415
465415
Sharing the app via SMS means sending theGooglePlay
link of your app in SMS right?
– Kavin Prabhu
Jan 2 at 11:18
@KavinPrabhu it send a text and a link to the website
– Kevin Dias
Jan 2 at 11:19
1
Then you can achieve that viaImplicitIntent
itself right? Rather than you sending the message from your application you can invoke the app in the device which can do it!
– Kavin Prabhu
Jan 2 at 11:28
@KavinPrabhu yes i see your point here , but im using ionic 3 , i will try to make a bridge thanks
– Kevin Dias
Jan 2 at 11:31
I believe that shouldn't be a problem, refer ionicframework.com/docs/native/web-intent this may help you
– Kavin Prabhu
Jan 2 at 11:34
|
show 1 more comment
Sharing the app via SMS means sending theGooglePlay
link of your app in SMS right?
– Kavin Prabhu
Jan 2 at 11:18
@KavinPrabhu it send a text and a link to the website
– Kevin Dias
Jan 2 at 11:19
1
Then you can achieve that viaImplicitIntent
itself right? Rather than you sending the message from your application you can invoke the app in the device which can do it!
– Kavin Prabhu
Jan 2 at 11:28
@KavinPrabhu yes i see your point here , but im using ionic 3 , i will try to make a bridge thanks
– Kevin Dias
Jan 2 at 11:31
I believe that shouldn't be a problem, refer ionicframework.com/docs/native/web-intent this may help you
– Kavin Prabhu
Jan 2 at 11:34
Sharing the app via SMS means sending the
GooglePlay
link of your app in SMS right?– Kavin Prabhu
Jan 2 at 11:18
Sharing the app via SMS means sending the
GooglePlay
link of your app in SMS right?– Kavin Prabhu
Jan 2 at 11:18
@KavinPrabhu it send a text and a link to the website
– Kevin Dias
Jan 2 at 11:19
@KavinPrabhu it send a text and a link to the website
– Kevin Dias
Jan 2 at 11:19
1
1
Then you can achieve that via
ImplicitIntent
itself right? Rather than you sending the message from your application you can invoke the app in the device which can do it!– Kavin Prabhu
Jan 2 at 11:28
Then you can achieve that via
ImplicitIntent
itself right? Rather than you sending the message from your application you can invoke the app in the device which can do it!– Kavin Prabhu
Jan 2 at 11:28
@KavinPrabhu yes i see your point here , but im using ionic 3 , i will try to make a bridge thanks
– Kevin Dias
Jan 2 at 11:31
@KavinPrabhu yes i see your point here , but im using ionic 3 , i will try to make a bridge thanks
– Kevin Dias
Jan 2 at 11:31
I believe that shouldn't be a problem, refer ionicframework.com/docs/native/web-intent this may help you
– Kavin Prabhu
Jan 2 at 11:34
I believe that shouldn't be a problem, refer ionicframework.com/docs/native/web-intent this may help you
– Kavin Prabhu
Jan 2 at 11:34
|
show 1 more comment
2 Answers
2
active
oldest
votes
If I understand correctly you want SMS as a feature but not a requirement.
I think what you wanted to do is add uses-feature declarations with android:required="false"
.
From android docs
When you declare
android:required="false"
for a feature, it means that the application prefers to use the feature if present on the device, but that it is designed to function without the specified feature, if necessary.
add a comment |
Solved by removing <uses-permission android:name="android.permission.SEND_SMS" />
and calling a intent to open the Native Device Sms App
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54005281%2fmy-app-does-not-qualify-for-use-of-the-requested-permissions-sms-google-new-po%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
If I understand correctly you want SMS as a feature but not a requirement.
I think what you wanted to do is add uses-feature declarations with android:required="false"
.
From android docs
When you declare
android:required="false"
for a feature, it means that the application prefers to use the feature if present on the device, but that it is designed to function without the specified feature, if necessary.
add a comment |
If I understand correctly you want SMS as a feature but not a requirement.
I think what you wanted to do is add uses-feature declarations with android:required="false"
.
From android docs
When you declare
android:required="false"
for a feature, it means that the application prefers to use the feature if present on the device, but that it is designed to function without the specified feature, if necessary.
add a comment |
If I understand correctly you want SMS as a feature but not a requirement.
I think what you wanted to do is add uses-feature declarations with android:required="false"
.
From android docs
When you declare
android:required="false"
for a feature, it means that the application prefers to use the feature if present on the device, but that it is designed to function without the specified feature, if necessary.
If I understand correctly you want SMS as a feature but not a requirement.
I think what you wanted to do is add uses-feature declarations with android:required="false"
.
From android docs
When you declare
android:required="false"
for a feature, it means that the application prefers to use the feature if present on the device, but that it is designed to function without the specified feature, if necessary.
answered Jan 2 at 11:19
DocDoc
8721417
8721417
add a comment |
add a comment |
Solved by removing <uses-permission android:name="android.permission.SEND_SMS" />
and calling a intent to open the Native Device Sms App
add a comment |
Solved by removing <uses-permission android:name="android.permission.SEND_SMS" />
and calling a intent to open the Native Device Sms App
add a comment |
Solved by removing <uses-permission android:name="android.permission.SEND_SMS" />
and calling a intent to open the Native Device Sms App
Solved by removing <uses-permission android:name="android.permission.SEND_SMS" />
and calling a intent to open the Native Device Sms App
edited Jan 21 at 12:29
answered Jan 2 at 16:50


Kevin DiasKevin Dias
465415
465415
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54005281%2fmy-app-does-not-qualify-for-use-of-the-requested-permissions-sms-google-new-po%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Sharing the app via SMS means sending the
GooglePlay
link of your app in SMS right?– Kavin Prabhu
Jan 2 at 11:18
@KavinPrabhu it send a text and a link to the website
– Kevin Dias
Jan 2 at 11:19
1
Then you can achieve that via
ImplicitIntent
itself right? Rather than you sending the message from your application you can invoke the app in the device which can do it!– Kavin Prabhu
Jan 2 at 11:28
@KavinPrabhu yes i see your point here , but im using ionic 3 , i will try to make a bridge thanks
– Kevin Dias
Jan 2 at 11:31
I believe that shouldn't be a problem, refer ionicframework.com/docs/native/web-intent this may help you
– Kavin Prabhu
Jan 2 at 11:34