Re: [android-developers] AppStore emulation tools?

2014-01-15 Thread Marina Cuello
If you are not satisfied by how adb install works, you could try installing by sending the apk by e-mail or downloading it into the device / emulator you are using to test and install it from there. It does ask for permissions and that kind of stuff. Marina On Sun, Jan 12, 2014 at 10:17 AM,

Re: [android-developers] AppStore emulation tools?

2014-01-12 Thread smoogli
I would like to identify exact behavior of installing several apps. e.g., does installation fail or succeed, and which prompts are shown in each case. On Friday, January 10, 2014 11:52:52 PM UTC+2, TreKing wrote: On Fri, Jan 10, 2014 at 7:48 AM, smoogli roy.be...@gmail.comjavascript: wrote:

Re: [android-developers] AppStore emulation tools?

2014-01-12 Thread smoogli
On Sunday, January 12, 2014 1:20:49 PM UTC+2, smoogli wrote: I would like to identify exact behavior of installing several apps. e.g., does installation fail or succeed, and which prompts are shown in each case. more specifically, I would like to experiment with permissions during

Re: [android-developers] AppStore emulation tools?

2014-01-12 Thread Michael Banzon
I don't understand the problem. Installation usually don't do anything special - I haven't encountered anything that doesn't happen with adb install as well. Regarding the permissions - the user is prompted to accept the permissions. On updates new ones are highlighted. You need only to install

Re: [android-developers] AppStore emulation tools?

2014-01-12 Thread smoogli
thanks, tried adb install but it does not prompt and interact with the user. e.g., when adding a permission to the app, it does not prompt with OK, accepted I would like to verify interaction with users in various scenarios. -- You received this message because you are subscribed to the Google

Re: [android-developers] AppStore emulation tools?

2014-01-12 Thread Michael Banzon
As a wrote: I don't understand the problem. During installation from Google Play the user is prompted to accept every permission your app require. This process has nothing to do with your app. It doesn't happen in your code - and it might not even happen (depending on the store app). What is

Re: [android-developers] AppStore emulation tools?

2014-01-12 Thread TreKing
On Sun, Jan 12, 2014 at 7:17 AM, smoogli roy.ben.ha...@gmail.com wrote: I would like to verify interaction with users in various scenarios. As Michael indicated, your question doesn't really make sense. There aren't various scenarios, there is one: app install starts, user is prompted with

Re: [android-developers] AppStore emulation tools?

2014-01-12 Thread smoogli
what happens when the app requests a permission that does not appear on the device? e.g., com.thirdparty.FOO -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To

Re: [android-developers] AppStore emulation tools?

2014-01-12 Thread TreKing
On Sun, Jan 12, 2014 at 1:34 PM, smoogli roy.ben.ha...@gmail.com wrote: what happens when the app requests a permission that does not appear on the device? More than likely, the same thing. You can easily test this for yourself.

[android-developers] AppStore emulation tools?

2014-01-10 Thread smoogli
How can one test actual installation of applications? AFAIK, the Android simulator in ADT does not even have the AppStore integrated. is there another emulator with AppStore integrated? is there a way to test it with the SDK? cheers! -- You received this message because you are subscribed to

Re: [android-developers] AppStore emulation tools?

2014-01-10 Thread TreKing
On Fri, Jan 10, 2014 at 7:48 AM, smoogli roy.ben.ha...@gmail.com wrote: How can one test actual installation of applications? What do you mean by actual installation of applications? - TreKing