[android-developers] Re: New app doesnt show in Google Play

2013-04-03 Thread ankit the OPIUM
If you are making multiple same tags in xml file it will take only first 
tag and behave same. This is applicable for development also. just give it 
a try give  

intent-filter
action android:name=android.intent.action.MAIN /

category android:name=android.intent.category.LAUNCHER /
/intent-filter
for two activities in you application. you app will launch the first 
activity only not the second one.

BR,
Ankit the opium

On Monday, 1 April 2013 14:44:42 UTC+5:30, bergstr wrote:

 Hello,

 I have just released a new tablet-only app to the Play store. I can search 
 from a desktop browser, and use the URL to see the market entry and install 
 the app from my tablet devices (Nexus 7 and 10). However, when I open the 
 play store on one of the tablets and do a search for any of the most used 
 keywords, or even for the title of the app, there are ZERO results? What is 
 happening here? The app has been there for some 18 hours now..

 thanks
 chris


-- 
-- 
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 unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] Re: New app doesnt show in Google Play

2013-04-03 Thread bergstr
as I posted earlier, the uses-permission element can be repeated, and all 
will be used, as in

uses-permission android:name=android.permission.INTERNET /
uses-permission android:name=android.permission.ACCESS_WIFI_STATE /
uses-permission 
android:name=android.permission.CHANGE_WIFI_MULTICAST_STATE /
uses-permission android:name=android.permission.ACCESS_NETWORK_STATE 
/

also, the Google Play bug lies in the fact that web store and app behave 
differently, and that there is no validation anywhere

-- 
-- 
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 unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] Re: New app doesnt show in Google Play

2013-04-03 Thread bob
His first tag was this:

*supports-screens android:smallScreens=false/*

If it took only the first tag, I would expect it to ban only small screens. 
 That's not what it was doing.

Thanks.



On Wednesday, April 3, 2013 8:18:45 AM UTC-5, ankit the OPIUM wrote:

 If you are making multiple same tags in xml file it will take only first 
 tag and behave same. This is applicable for development also. just give it 
 a try give  

 intent-filter
 action android:name=android.intent.action.MAIN /

 category android:name=android.intent.category.LAUNCHER 
 /
 /intent-filter
 for two activities in you application. you app will launch the first 
 activity only not the second one.

 BR,
 Ankit the opium

 On Monday, 1 April 2013 14:44:42 UTC+5:30, bergstr wrote:

 Hello,

 I have just released a new tablet-only app to the Play store. I can 
 search from a desktop browser, and use the URL to see the market entry and 
 install the app from my tablet devices (Nexus 7 and 10). However, when I 
 open the play store on one of the tablets and do a search for any of the 
 most used keywords, or even for the title of the app, there are ZERO 
 results? What is happening here? The app has been there for some 18 hours 
 now..

 thanks
 chris



-- 
-- 
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 unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.