Android :: Uploading Apps To Market Invalid Icon Image Size
Mar 5, 2010
I'm trying to upload my first application, but when I select the apk file, I get the following message:
The icon for your application is not valid. Please use a 48x48 PNG.
The file was created in Fireworks, and is a 48x48 24 bit image named appicon.png.
Anyone know of any reason why I would still get this message?
View 1 Replies
Oct 28, 2010
I have made my own app with App inventor but i can't upload it to the market i payed the 25$ so.. did that go to total waste?I found a guide cus i know there is a problem with the icon or something here is the site that i found a guide on : http://www.androidworld.it/forum/app-inventor-91/[how-]-publish-app-created-app-inventor-android-market-4597/Could some one who know how to fix this problem maybe help me or make a Youtube video like How to.so i can see how you do.Please i know there is some way to upload it.
View 11 Replies
View Related
Aug 10, 2010
I saw my friends iphone and I like the size of their icon.
I know there's few apps to make IC screen looks like iphone but, I just want my icon bigger. Is there any apps for this? Also, is there any apps that can replace Launcher Pro Plus?
View 1 Replies
View Related
Nov 16, 2010
I have an ImageView which I want to always be the same size. If the image is smaller than the view, I'd like it to be centred in the view. If the Image is larger than the view then I'd like it scaled down - with aspect ratio preserved.I've had several attempts at this myself
View 2 Replies
View Related
Nov 14, 2009
The following works fine on a G1 but gives an error on the Samsung Galaxy. I was hoping cross-platform support would be better than this. See error below.
private final static int RATE = 44100; private final static int CHANNEL_MODE = AudioFormat.CHANNEL_CONFIGURATION_MONO; private final static int ENCODING = AudioFormat.ENCODING_PCM_16BIT; private AudioRecord recorder_; public boolean open() { int bufferSize = 4 * AudioRecord.getMinBufferSize(RATE, CHANNEL_MODE, ENCODING); recorder_ = new AudioRecord(AudioSource.MIC, RATE, CHANNEL_MODE, ENCODING, bufferSize);
last line gives the following on the Samsung Galaxy phone: 11-14 19:04:07.507: ERROR/AndroidRuntime(7617): java.lang.IllegalArgumentException: Invalid audio buffer size.
View 5 Replies
View Related
May 1, 2009
We've rebuilt a couple of our apps with the 1.5 SDK (but targeting 1.1).
The Market seems to have a bit of trouble with the background of the icons. They appear correctly (with transparent backgrounds) on the desktop, and they appear correctly when the app is downloaded from the Market and installed on the device.
However, they appear on black (not transparent) backgrounds in the Market uploader web page, and in the Market application on the device.
It looks to me as though the Market has a problem when it extracts the icon from the .apk at upload time, with .apks built by the 1.5 SDK.
View 2 Replies
View Related
Sep 23, 2010
So I'm loading images from a web service, but the size of the images are sometimes smaller or bigger than other images and the visualization looks silly when I put them in a ListView in android. I'd like to fix the size of my ImageView so that it only shows a portion of the image if it's larger than a preset amount. I've tried everything I can think of setting the setMaxWidth/setMaxHeight, setting the scale type to centerCrop, using ClipableDrawable wrapping my BitmapDrawable, setting using Drawable.setBounds(). I've tried setting in the XML and programmatically, but neither worked. I'm very surprised setting max width/height didn't do anything. Below is the XML I'm using ImageView definition in my layout file
View 1 Replies
View Related
Jan 22, 2009
if size of image is larger than or smaller than specified display size (on screen), then it is automatically, compressed and stretched resp by android run time or require to handle by explicitly.
View 2 Replies
View Related
Sep 23, 2010
I have an application that requires that some images are uploaded to the device and replaced when the image changes.
For example, the first time the application is opened it goes ot the server and downloads some images, then the second time it verifies if there are new images to be downloaded, if there are it downloads them.
What could be the best approach to store the images on the device? creating a file folder for the application and a content provider?
View 2 Replies
View Related
Dec 14, 2010
I uploaded a couple of pics I had taken with my Evo on Androidforums and when I did I notice everyones pics in the thread were allot bigger than my pics.I had the 5.3 widescreen turned on and they told me to take it off. I did and tried taking new pics and seeing the results. The pictures did come out a a bit bigger but when I tried resizing them in photobucket the quality would be effected which makes no sense since 8m is goog enough to make a huge poster whith amazing quality.
There was also people with much bigger pics than the ones I had resized and made as big as photobucket let me and they were perfect high quality while mine which were smaller were loosing quality.
View 11 Replies
View Related
Apr 24, 2009
I completed my apk, and about to publish my apk up to the market.
when I load my apk, this stuff just pops up :"Market requires the minSdkVersion to be set in AndroidManifest.xml. The server could not process your apk. Try again."
I'm pretty sure I did set minSDKversion "2" right now I'm stuck...
View 2 Replies
View Related
Jul 2, 2010
I want to upload image to IIS server using c# web service.I have written the web method for this as follows...
code...
here the web method is taking argument as byte[] .I have convert the sdcard image to byte[] but when i am passing it as an URL paramete it is not working .I have also tried by converting the byte[] array to base64 strig still it is not working.
Can any one tell me how to upload image to IIS server using c# web service.
View 2 Replies
View Related
Mar 31, 2010
I m uploading my apk for 1st time on market and getting Error:The server could not process your apk.
Try . My manifest file is:-
CODE:..............
View 2 Replies
View Related
Oct 21, 2010
I've just added LVL and server-based licensing into my (as-yet unpublished) app.It appears that the license testing requires that the app exist in the Android Market.Is there a way to "publish" an app to the Market but keep it hidden while I test?
View 7 Replies
View Related
Apr 20, 2010
Can I upload content(can be anytype jpg/png) other than apk onto android market so that the application could download the content at the first run.
View 2 Replies
View Related
Apr 13, 2012
I need to create an app which will upload image and some details to a web. How it can be done?
View 6 Replies
View Related
May 10, 2009
In response to a request over here: http://bit.ly/E1Qqm
This is some sample code for uploading an image to the web, as part of a multipart message. It assumes that the photo is stored on the SD card as "photo.jpg". You'll need to download and add a couple of jar files to the project's built path - commons-httpclient.jar and httpcomponents-client-4.0-alpha4.
It is working on my device. However (big caveats here) - it's much slower than I would like, and much slower than other applications I've installed that upload photos. It also feels hacky - e.g. the way the background thread communicates problems with the upload to the main thread using variables. I'm sure there must be a neater way to do it.
If you figure out a way to improve the code,
code:............
View 5 Replies
View Related
Oct 6, 2010
I uploaded an upgrade to my application and opened it again to see if everything is correct or not. I was surprised to see 8 screen shots instead of 2. I deleted 6 images and save it. but when ever I reopen I see 8 images. When I tried to download updated version of my app on my device thorough Android Market, it kept crashing. Did any one else faced same problem? version of the last upgrade is 4.
View 3 Replies
View Related
Oct 4, 2010
Just now i have developed an application and now i am ready to upload it on Android market,
but when i am trying to upload, it showing the following error messages:
Market does not accept apk signed with the debug certificate. Create a new certificate that is valid for atleast 50 years. Market requires that the certificated used to sign the apk be Valid until at least October 22, 2033. Create a new Certificate. how do able to upload the APK file on Android market successfully.
View 1 Replies
View Related
May 16, 2014
My webpage has images that upload to the phone when the page is viewed and dropped when the page is closed. I do this to reduce mobile device memory requirements. I use a path that points at the image location and name.
Sadly image does not load on Android devices. However everything works fine on blackberry, i-phone, i-pad etc. Usually Apple is the most restrictive device.
What is different about Android that prevents the external images loading?
View 1 Replies
View Related
Jun 24, 2010
I have been struggling with uploading my application to android market. I keep getting the same old "The server could not process your apk. Try again.". I tried for hours to change and modify my AndroidManifest.xml file but no luck.
Here is my my AndroidManifest.xml:
CODE:............
View 2 Replies
View Related
Dec 3, 2009
I wanted to give my app is too long for the small icon. However looking at the market, I notice that other people have got around this by giving a longer name to the app that appears on the market list, and a shorter name to the app itself once it is installed.
For example, the is a calculator app called "RealCalc Scientific Calculator" but when you install it it just appears as "Calculator".
How do I go about this? Does the market ask you for an app name when you upload, where you can put anything you like?
Also, what about the actual .apk filename - is that important, and have any bearing on the name that appears when someone downloads the app?
View 6 Replies
View Related
Nov 17, 2010
Any good YouTube uploading apps?
View 3 Replies
View Related
Apr 29, 2010
I had an edited png for the market icon in the vending apk but when I applied my edited png's to Ivans rom with the market fix it seems to have changed the icon back to the original market Icon. When I first loaded the rom it showed my edited png for the market icon but after my first reboot it seems to change the icon back to the original. I assume that the market is updating upon reboot so I pulled the vending apk off my phone and my edited png's are still there but its still showing the original market icon. Anybody else with an edited market icon notice this or any ideas of why its going back to original? I have tried this a couple times and it always updates after first reboot...
View 1 Replies
View Related
Feb 10, 2009
I have created a custom icon bar in Android using the XML layout creator, using a RadioGroup within a LinearLayout (XML included below). Each RadioButton within the RadioGroup has a custom drawable (with checked and unchecked states) as its android:button attribute. The Linear layout is itself within a RelativeLayout so that it can appear at an arbitrary position on the screen (as a side bar, in this instance).The drawables are 55 pixels wide, and the android:layout_width attribute of all these views is "wrap_content".When I make this component visible, aligned to the bottom-left of the screen, only about three-quarters of the RadioButton image widths are visible. Setting the layout_width of the RelativeLayout to "fill_parent" rectifies this and causes the full button to appear.However this means that the button group consumes click events across the entire width of the screen. How can I make the entire button appear, and have only the area of the button respond to clicks? Hard-coding the width of the drawable is not a particularly desirable solution.<RelativeLayout android:id="@+id/RelativeLayout01" android:layout_width ="wrap_content" android:layout_height="wrap_content"> <LinearLayout android:id="@+id/LinearLayout02" android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="vertical" android:layout_alignParentBottom="true" android:layout_alignParentLeft="true" android:layout_below ="@+id/LinearLayout01" android:visibility="invisible"><RadioGroup android :id ="@+id/ RadioGroup01" android:layout_height="wrap_content" android:checkedButton="@+id/RB01" android:layout_width="fill_parent">
<RadioButton android:id="@+id/RB01" android:layout_width="fill_parent" android:layout_height="wrap_content" android:button="@drawable/DR01"/><RadioButton android:id="@+id/RB02" android:layout_width="fill_parent" android:layout_height="wrap_content" android:button="@drawable/DR02"/>
<RadioButton android:id="@+id/RB03" android:layout_width="fill_parent" android:layout_height="wrap_content" android:button="@drawable/DR03"/> <RadioButton android:id="@+id/RB04" android:layout_width="fill_parent" android:layout_height="wrap_content" android:button="@drawable/DR04"/> </RadioGroup></LinearLayout>
View 2 Replies
View Related
Feb 17, 2010
I found some informations about size of icons on developers' guide. But on 480x800 resolution, i couldn't find any information about that.
Is there any formats or recomanded size of icons on 480x800
320x480 screen's icon size : 48x48 480x800 screen's icon size?
View 2 Replies
View Related
Jan 25, 2010
When i am uploading my application in android market it showing below error
The file is invalid:ERROR:dump failed because no AndroidManifest.xml found.
When i am unzip apk file there i found AndoridManifest.xml file.
View 1 Replies
View Related
Jan 10, 2014
It is a month or two now that I can't update any paid app, as the APK sent is invalid!
I have the latest Play Store and Play Store Services apps on SGS2 v4.1.2 stock rom.
I tried deleting both data and cache of both, I uninstalled the old app and also tried downgrading both Play Store App, but nothing worked.
I found that the APK files I receive for paid apps are not standard zip files, they seem corrupted or encrypted: can this be?
View 4 Replies
View Related
Dec 29, 2009
Is there a simple weather widget that will display the current temperature on my home screen in a small size, like the size of a single icon? Something like what's on the Multimedia screen would be great. I don't want future weather, radar or maps... just the current temperature.
View 3 Replies
View Related
Feb 15, 2010
I have created the launcher icon(48x48 px) for 320x480 screen resolution and it's working fine. but while using same icon in WVGA854(480x854 px) it's displaying small compare to other default launcher icon. i want to know, what is the size of High Density WVGA854 launcher icon?
View 1 Replies
View Related