Android :: Request To Google And Releasing Paid App From Different Country
Nov 5, 2009
I am planning to release my app (which i have been pllanning to do so for quite a few time now, waiting for the expansion of google checkout to happen).I am from India and I am planning to release the application using my friends UK Bank account.Is this advisable? Are there any things that I should take care of?Also is there any chance of google expanding the google checkout or in introducing new payout options like paypal?I have been waiting for the support for quite sometime and I am very much depressed on the issue that google is still not expanding the services, ive sent numerous mails to them asking for atleast the estimated release date but in vain.
Its been nearly an yeaar since android is relmore than an year since android phones have been released and still there is such slow progress. iPhones allows developers from most of the countries to publish their apps and customers from any country can buy the same, i think they can even do it through itunes.I think this is going to hurt the progress and development of android big time. If apple can do it why not google? I have been expecting some response from google atleast on the estimated date, so that we can plan accordingly.
View 2 Replies
Jun 4, 2009
We have a paid app in the market place, we would like to release a demo of the paid app. I was hoping we could just recompile w/ the same package name, but apparently that does not work. I have tried manually changing package name etc, but it is a chore, and it seems that several things that automatically happen in eclipse cause more harm than good when renaming the package name. Which brings me to my next question. If having a new package name is the only way to accomplish this. Is there an easy way to fork the paid app, where keeping the changes synchronized is easier? Some kind of Source Control?
View 6 Replies
View Related
Oct 14, 2010
I want to sell an application developed by me, but this service is not supported in my country (Romania).
So I want to ask a friend of mine who lives in a country (France or US) where selling paid applications is possible to help me with this.
Now I don't know exactly what to tell him about the process:
What is required by his side ? A bank account or a credit card ? How the money are transferred to him ? What exactly Google checks to verify if the developer is in one of the supported countries ?
View 1 Replies
View Related
Jul 8, 2010
this Android code worked fine before, but i'm having problems for some reason. here is the request i'm trying to make: https://www.google.com/reader/api/0/token. i'm getting 400:Bad Request as a response, and i'm not sure why. isn't this the correct URL for requesting a token? the auth token is being passed as a header in all requests now, and i can request feed list, and it works just fine, so there's nothing wrong with the auth code. what gives? in addition, i can request a token in a normal browser, like Chrome, and get a token as a response body. so the request itself is not the problem. i just can't figure out what is wrong with my requests in code...
View 1 Replies
View Related
May 22, 2010
I will be releasing two applications soon, one for my company and one for me. Publishing app on my own is straightforward, but I'm not sure which account to use for the company.What practice do you use in your company?I only see one solution, creating a special google account like android@company.com shared by the company Android devs.
View 1 Replies
View Related
Apr 24, 2012
I want to send international sms.... is there any app that can send free international sms to any country from any country?
View 3 Replies
View Related
Jun 14, 2010
I have fairly large map overlay that I am displaying over the google maps data but would still like to see the country/state/province lines through my overlay (so the lines would essentially be on top of my overlay).
As I understand, these lines are simply polygons drawn over the maps. Is there any way to access these? If so, how do I get them to show up through my overlay images?
View 1 Replies
View Related
Jun 28, 2013
I recently bought a galaxy s4 , but the play store is so boring wth all the weird apps judging that my location is in the middle east. i experienced the same problem when i bought the lumia 920 and the solution was simply changing my location to the US to get access to all the goodies in the play store is there a way of changing my location on the galaxy s4 so that i can enjoy my play store?
View 2 Replies
View Related
Apr 7, 2014
I am in another country temporarily and I can only see Spanish books.
My wallet has a UK card and I added addresses, deleted cache, nothing works. How can I fix this?
View 4 Replies
View Related
Jan 24, 2013
I just got a Galaxy S3 yesterday and the first time I turned it on I used my work wifi connection. This operates via a proxy which makes any website think I'm in another country (varies from country to country depending which server has the least load).
Unfortunately, now whenever I do a Google search it defaults to google.de. I only connected to the work wifi when I turned it on, since then I've been acessing at home or using my 3G connection. I live in England so this is very annoying.
Is there any way I can stop Google going to the German site? I tried clearing everything in the browser but this didn't work.
Bit of further info: If I go to Settings > Google > Search, there is a tick-box that says "Search on google.com" and underneath that it says "Using www.google.com instead of your local domain (www.google.de)".
There has to be a way of changing that setting, surely!
View 1 Replies
View Related
Feb 22, 2013
I am in India. I tried to order the Google Nexus 4 from the Google Play Store using my office machine, which connects to the net using a US proxy. However, I cancelled my order later. Now the Play Store on my current phone shows all US content and I am forbidden from installing India only apps. The country in my Google Account still shows India and so does my address in Google Wallet (I had deleted the US addresses that I had obtained from a package forwarding service).
View 3 Replies
View Related
May 20, 2010
I am a photographer with various jobs left and right and I would really appreciate if anyone has a Google Voice invite. It would help me stay organized and would be be a god sent for every other reason you can think of.
View 2 Replies
View Related
Apr 7, 2010
I got a GV number and am planning on using it for free texting.
However, if I tell people that I changed my number and tell them to call/text on my GV number, will it charge anything extra?
I understand that if the call is forwarded to my VZW number, I'll still be charged my monthly minutes, but nothing more, correct?
Also, I had my brother call the GV number and it prompted him to say his name and then forwarded the call to my VZW number, asking me to accept or decline. To me, this seems awfully similar to a collect call. I did change the settings though so that callers do not have to say their names and their calls go straight through.
Basically, I guess what I'm asking is would I be risking anything [money] by telling people to use my GV number for all calls/texts/etc? Or should I just give everyone two numbers, my VZW for calling and GV for texting?
View 20 Replies
View Related
Jul 25, 2009
I would like to know that does google provides any paid support for android developer so that developer can progress fast and they have to do less searching.
View 3 Replies
View Related
Aug 17, 2012
I am developing an Android app for a website. I'm trying to get some information from the website by sending a cookie using a HttpGet request. I don't know where I am going wrong with the request. I am using AsyncTask to send the request to the server. The request also uses a token which I receive when I login to the webpage. All this is clear in the code below. This is part of the process in the doInBackground() function of the Asynctask:
BufferedReader in = null;
JSONObject token = Login.getToken(); // Token received after login, used in the cookie
try {
r = token.get("session_token").toString();
} catch (JSONException e) {
// TODO Auto-generated catch block
e.printStackTrace();
[code]...
View 1 Replies
View Related
Aug 21, 2013
I own a Xiaomi MI2S, running MIUI-3.8.16 @ Android version 4.1.1.JRO03L with Baseband version CEFWMAZM-2.0.128 017.
From my phone provider (Tele2) i have to dial a 1 (one) before my PIN-code when traveling abroad.
The code is accepted, I can be called and i can send and receive SMS messages.
However i cannot make phone-calls...
The error (?) is "DIAL request modified to SS request" and (very short) "not connected"
View 2 Replies
View Related
Sep 8, 2010
On Wed, Sep 8, 2010 at 6:29 AM, cool.manish <mannishga...@gmail.com> wrote: > I get to know that displaying map in some other application is a paid > thing and we need to create a key using which we can get it. Is this true for Android application also?
View 4 Replies
View Related
Mar 21, 2010
Something happened that should've never happened and now I have to make a new google account and try to rebuild everything. Gmail, igoogle, voice, etc. I did some poking around, but it seems no one has ever asked about any way of transferring paid apps from one google account to another. Is this possible, or am I now $20+ in the hole on apps I can no longer use on top of everything else that has happened? For some reason, google flags things that the built-in search can't catch. Transfer Paid Apps to a New Phone?
View 10 Replies
View Related
Aug 19, 2010
i just got my EVO the beginning of the month. I have no problem downloading free apps from the "market" however I can't seem to download apps that need to be paid for. The message says there's a server error. But this has been going on for weeks. Someone on the internet suggested to someone who has the same problem as I do to go to "Google Checkout" on the computer and that should do the trick. Well that hasn't worked for me either.
View 1 Replies
View Related
Aug 8, 2010
Happy droid user on Nexus One. Thinking about playing around with one of those cheap android tablets. If I logon to that tablet with my google account, will it mess up my N1 and existing account/settings? Also what happens with my apps? can I download the ones I've paid for again (onto the new device)? etc.
View 8 Replies
View Related
Feb 22, 2010
this question is now obsolete, as Android Market includes much more countries and such services as PayPal Mobile Payments Library are available.I'd like to sell my Android application, but I live in Poland and in my country* Android Market supports only free apps (we cannot sell and we cannot buy too).What is the best way to sell application in such situation? I can accept PayPal money transfers, but I don't know how to distribute APK package without exposing it to getting pirated. Did someone tried it already and succeeded? you may be surprised, paid apps are supported only in 12 countries worldwide.
View 3 Replies
View Related
Sep 28, 2012
How do one move (paid) apps to a new phone and new Google-account?
View 1 Replies
View Related
Jun 1, 2010
I just encountered the space issue on my Desire due to having too many apps installed and i am considering rooting. However i heard that HTC are possibly releasing Android 2.2 with Sense UI beofr ethe end of the month. If i root my desire will i lose the ability to get this update?
View 1 Replies
View Related
Sep 9, 2009
i dont know if i understand how gc releases physical memory lets assume that physical mem is divided into 4kB pages.i allocate 2000 objects each 2kB long.lets assume they are allocated one after another in physical memory then i release every even object 0, 2, 4 etc.so i released 1000 objects x 2kB.how many physical pages will be released to other processes?
View 2 Replies
View Related
Aug 20, 2010
I understand that the system may kill the activity without calling onDestroy(). Say I have a MediaPlayer that runs even when it's not visible, I would be releasing the player in onDestroy() method.Now, if the system decides to kill the activity after calling onPause() and never called onDestroy(), what does it mean for my MediaPlayer? Is it ever released? This is bigger problem for Camera since I think it requires to be released for other activities to use it.
View 1 Replies
View Related
Oct 26, 2010
If I publish an update to my app on the Android Market, will the app only "patch" (or only update changes to current application) or will it just replace the old application with the updated one?The reason is because for my app I need the user to retain some information (such as a database) on their phone that is gathered from the user on the app's first setup and not have to ask the user to repopulate this data on every update.
View 3 Replies
View Related
Jul 21, 2009
Los Angles, CA.,-July 20, 2009 mAPPn just released new themes for aHome users this summer.If you're a golf fun, check out the golf theme! You're gonna love it for sure! It's based around golfing where the icons are realistic golf balls. Everything is custom made including tabs, dock, icons and clock.If you're a sci-fi lover, try out the Sliver Orbs! It Keeps a nice futuristic look while has a pretty clean minimalistic look to your phone.If you want to try something cool and different, download the Pixel theme ASAP! The great 8-bit look from the past makes this theme extremely unique from all the other themes in android market.If you like Asian culture, mAPPn's new "Asian" theme is definitely your first choice. Al the icons, dock, tabs and clock are custom made from Asian style items, such as abacus,tea port, writing brush and Biwa.
View 1 Replies
View Related
Jul 9, 2010
the least painful way to somehow continue releasing new versions to my users? I can't sign with the old keys anymore.
View 4 Replies
View Related
Feb 21, 2010
Is there any way at all where you can find in which country the phone is currently in, let's say if I travel to Spain can I in code know this information somehow. Using GPS is not good for me, but I know the phone recognizes where it is, but I don't know if I can access that info in code...
View 2 Replies
View Related
Sep 28, 2010
Sony Ericsson's Mini Display For Android Phones Looks Like An iPod Nano.It says it will available in Q4 this year.Possible motive for delaying the update? Probably not.But the 2.1 update will most likely come out in Q4 because in my opinion, why release an accessory for your phone that won't even work >.>But this seems kinda pointless unless your phone is on silent or is in a backpack/purse where you can't hear it.
View 3 Replies
View Related