Page 5 of 9

App converted to new builder a mess

Posted: Sun Mar 24, 2013 6:43 am
by Barbara

When I look at my app in the new builder it says I use permissions read & write call log, but I can't see these permissions listed in eclipse, are they called something else there?

These are permissions the app store wants removed


App converted to new builder a mess

Posted: Mon Mar 25, 2013 8:19 am
by Maryna Brodina

Hello! These permissions are called WRITE_CALL_LOG and READ_CALL_LOG, but "If your app uses the READ_CONTACTS permission and both your minSdkVersion and targetSdkVersion values are set to 15 or lower, the system implicitly grants your app this permission. If you don't need this permission, be sure your targetSdkVersion is 16 or higher.

If your app uses the WRITE_CONTACTS permission and both your minSdkVersion and targetSdkVersion values are set to 15 or lower, the system implicitly grants your app this permission. If you don't need this permission, be sure your targetSdkVersion is 16 or higher."

More information here http://developer.android.com/referenc...


App converted to new builder a mess

Posted: Mon Mar 25, 2013 8:54 am
by Barbara

Where and how do I set minsdkversion and targetsdkversion


App converted to new builder a mess

Posted: Mon Mar 25, 2013 8:59 am
by Maryna Brodina

Project--App Settings--Android Binary


App converted to new builder a mess

Posted: Mon Mar 25, 2013 12:10 pm
by Barbara

Yeah so my min and target are 2.2 so why is the app store seeing me requiring write call log and read call log and, I see these permissions in the new builder in my converted app, but I am not seeing these permissions in eclipse. Sorry I am confused as usual :)


App converted to new builder a mess

Posted: Mon Mar 25, 2013 12:39 pm
by Maryna Brodina

In Eclipse you can see only permissions you added manually. You didn't add that permissions, but they were added automatically (because you've set target version to 2.2) - "If you don't need this permission, be sure your targetSdkVersion is 16 or higher. "

Android 4.2.x - corresponding version is 17 in Eclipse
Android 4.1 - 16
Android 4.0.3 - 4.0.4 - 15

Set target version to 4.1


App converted to new builder a mess

Posted: Tue Mar 26, 2013 3:06 am
by Barbara

Thanks Marina.

I have another question, Amazon app store rejected my app as they said you can see sensitive login info in plain text. I did some research on this and found the only real way is to use ssl. Can I do this in an apk? If not is there another option, has any one else come across this issue?


App converted to new builder a mess

Posted: Tue Mar 26, 2013 8:47 am
by Maryna Brodina

Hi,

Can do this in an apk yes, you can do that. You recive all your data (including login) from your site. You would need to set your site and all addresses in requests to https.


App converted to new builder a mess

Posted: Tue Mar 26, 2013 9:01 pm
by Emmz

Barbara. I have just started implementing SSL on my design.
SSL certificates are not cheap so be sure to get what you need only.
I'm using a self-signed server certicicate while testing. I have read about phonegap having problems with this type of certificate thou. Mostly on Android...


App converted to new builder a mess

Posted: Wed Mar 27, 2013 5:02 am
by Barbara

Can I solve the issue just by calling https in rest service. I thought my login page had to be called with https for this to work properly. I am probably confused.