Android-dev.it Community

 
Annunci

:arrow: Benvenuto!, se non sei ancora un utente registrato: puoi registrati qui, oppure effettua il login
:arrow: Apri un forum sul tuo nuovo smartphone Android e collabora con noi! (dettagli)

www.agendadigitale.org
Image


Sponsor
It is currently Thu May 24, 2012 9:22 am

All times are UTC + 1 hour


 Topics   Replies   Views   Last post 
No new posts Applicazione per gestire SMS

by filippo729 on Wed May 23, 2012 9:39 pm in Sviluppo e programmazione in Android

0

19

Wed May 23, 2012 9:39 pm

filippo729

No new posts На интернет-витрине

by popowahgjfghjoiuyt on Sat May 19, 2012 2:25 pm in Amministrazione

0

18

Sat May 19, 2012 2:25 pm

popowahgjfghjoiuyt

No new posts Apri un forum sul tuo nuovo smartphone Android!

[ Go to page: 1, 2, 3 ]

by ReattileGar on Fri May 18, 2012 5:27 pm in Amministrazione

27

12556

Fri May 18, 2012 5:27 pm

ReattileGar

No new posts Новый: базы для хрумера - профессиональный софт для СЕО.

by Renatafe on Fri May 18, 2012 3:14 pm in Amministrazione

0

27

Fri May 18, 2012 3:14 pm

Renatafe

No new posts Pace is undoubtedly the vital affordable Jerseys Wholesale d

by barnettmmolive2012 on Wed May 16, 2012 7:36 am in Amministrazione

1

49

Wed May 16, 2012 7:36 am

barnettmmolive2012




Post new topic Reply to topic  [ 7 posts ] 
Author Message
 Post subject: Quante tempo ci vuole per pubblicare app su Android Market?
PostPosted: Sun Nov 28, 2010 12:41 pm 
Offline
User avatar

Joined: Sun Nov 28, 2010 12:40 pm
Posts: 4
Cellulare Android: HTC Tattoo
Operatore: 3
Punti Android: ?
Salve a tutti,
spero di essere nella sezione corretta.
Volevo chiedere una informazione:
Ho pubblicato la mia app sul market venerdì sera.
Su G**gle già è reperibile e alcuni siti gia la trovano.
Se faccio la ricerca sul market col nome o col package mi dice che non è stata trovata.
E' normale?


Top
 Profile  
 
 Post subject: Re: Quante tempo ci vuole per pubblicare app su Android Market?
PostPosted: Mon Nov 29, 2010 10:39 am 
Offline
User avatar

Joined: Thu Dec 27, 2007 7:09 pm
Posts: 659
Cellulare Android: HTC Dream
Operatore: TIM
Punti Android: 758
Ciao,
no non è normale: sei sicuro di aer impostato API level in modo corretto ?
Se come compatibilità hai impostato una versione minima di Android troppo recente, quando accedi al Market con uno smartphone "non compatibile", la app non psunta fuori..

_________________
***URLs are hidden from guests, please register and login to view the hyperlink***


Top
 Profile  
 
 Post subject: Re: Quante tempo ci vuole per pubblicare app su Android Market?
PostPosted: Mon Nov 29, 2010 11:11 am 
Offline
User avatar

Joined: Sun Nov 28, 2010 12:40 pm
Posts: 4
Cellulare Android: HTC Tattoo
Operatore: 3
Punti Android: ?
Nel Manifest ho messo minSDK "2" e non la vedono i tattoo (android 1.6)...
Aggiungo che mi sono accorto di aver usato le API 1.6 ma nel manifest c'è minSdkVersion 2.
E' forse troppo bassa la versione 2?

Oltretutto volevo sapere se posso uploadare l'apk nuova anche senza modificare i campi version.
Grazie.


Last edited by andrax on Mon Nov 29, 2010 11:36 am, edited 1 time in total.

Top
 Profile  
 
 Post subject: Re: Quante tempo ci vuole per pubblicare app su Android Market?
PostPosted: Mon Nov 29, 2010 11:35 am 
Offline
User avatar

Joined: Thu Dec 27, 2007 7:09 pm
Posts: 659
Cellulare Android: HTC Dream
Operatore: TIM
Punti Android: 758
andrax wrote:
Nel Manifest ho messo minSDK "2" e non la vedono i tattoo (android 1.6)...
E' forse troppo bassa la versione 2?

Molte app non sono viste dai Tattoo per la risoluzione dello schermo.. verifica quella!

_________________
***URLs are hidden from guests, please register and login to view the hyperlink***


Top
 Profile  
 
 Post subject: Re: Quante tempo ci vuole per pubblicare app su Android Market?
PostPosted: Mon Nov 29, 2010 11:53 am 
Offline
User avatar

Joined: Sun Nov 28, 2010 12:40 pm
Posts: 4
Cellulare Android: HTC Tattoo
Operatore: 3
Punti Android: ?
Come risoluzione non ho messo niente.
Che valore mi consigli e quale parametro è?
Non lo trova nemmeno il Samsung Corby (android 2.1). I nuovi HTC invece si...
:bang:

Ps.: Comunque l'ho debuggato su Tattoo da Eclipse.


Top
 Profile  
 
 Post subject: Re: Quante tempo ci vuole per pubblicare app su Android Market?
PostPosted: Mon Nov 29, 2010 3:31 pm 
Offline
User avatar

Joined: Thu Dec 27, 2007 7:09 pm
Posts: 659
Cellulare Android: HTC Dream
Operatore: TIM
Punti Android: 758
Allora è sicuramente dovuto al fatto che sia l'HTC Tattoo sia il Samsung Corby hanno uno schermo da 2.8 pollici e supportano solo la risoluzione QVGA (240 x 320 pixel).
Come spiegato nel blog dei developers Android (***URLs are hidden from guests, please register and login to view the hyperlink***), Android supporta tre classi di device dal punto di vista delle dimensioni dello schermo: Small (es. Tattoo), Normal (es. Dream) e Large (es. tablet come il Galaxy Tab). Mentre i tablet con schermo grande possono visualizzare le applicazioni concepite per gli schermi normali, i device con schermo da 2.8 pollici non sono considerati "compatibili" con le applicazioni standard, a meno che sul Manifest.xml non sia esplicitamente dichiarato che l'applicazione funziona anche per questi device.

Quindi leggi qui cosa devi inserire sul Manifest.xml per dichiarare esplicitamente che la tua app funziona anche sui device con schermo Small: ***URLs are hidden from guests, please register and login to view the hyperlink***

In poche parole, se hai testato la tua app e pensi che vada bene dapertutto, ecco coda devi dicharare sul Manigest.xml
Code:
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
  ...
  <supports-screens
          android:largeScreens="true"
          android:normalScreens="true"
          android:smallScreens="true"
          android:anyDensity="true" />
  ...
</manifest>

_________________
***URLs are hidden from guests, please register and login to view the hyperlink***


Top
 Profile  
 
 Post subject: Re: Quante tempo ci vuole per pubblicare app su Android Market?
PostPosted: Mon Nov 29, 2010 3:46 pm 
Offline
User avatar

Joined: Sun Nov 28, 2010 12:40 pm
Posts: 4
Cellulare Android: HTC Tattoo
Operatore: 3
Punti Android: ?
Ho inserito quel codice perché nel frattempo avevo trovato nella documentazione qualcosa di simile.
Ho fatto l'upload circa mezz'ora fa ma sul tattoo continua a non trovarmela.
:bang: :bang: :bang:
Ecco il manifest:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.pos**.*"
android:versionCode="3"
android:versionName="1.0">
<supports-screens
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true" />
<application android:icon="@drawable/icon" android:label="@string/app_name" android:theme ="@style/CustomTheme" android:debuggable="false">
<activity android:name=".Start"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="Login"></activity>
<activity android:name="MenuPrincipale"></activity>
...
<activity android:name="CustomWindow"></activity>
</application>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.CAMERA"></uses-permission>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"></uses-permission>
<uses-sdk android:minSdkVersion="4" />
</manifest>


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 7 posts ] 

All times are UTC + 1 hour


Who is online

Users browsing this forum: No registered users and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
cron
SitemapIndex SitemapIndex RSS Feed RSS Feed Channel list Channel list
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
phpBB SEO

All trademarks and logos used in this site are of properties of their respective owners.