Register Hello & Welcome to Andriodtablets.net, is this your first visit?

How to Get a Working Google Market

This is a discussion on How to Get a Working Google Market within the Sylvania Tablets forums, part of the Top Minor Android Tablet Brands category; bigwooly, Thanks for the instruction in this thread. I also receive the green screen, but the menu screen bypasses it. I have the market loaded ...


Page 3 of 16 FirstFirst 1 2 3 4 5 13 ... LastLast
Results 21 to 30 of 159
Thanks Tree4Thanks

Thread: How to Get a Working Google Market

  1. #21
    Junior Member Achievements:
    7 days registered 31 days registered 3 months registered Tagger Second Class 100 Experience Points

    Member #
    7912
    Join Date
    Dec 2010
    Posts
    6
    bigwooly,

    Thanks for the instruction in this thread. I also receive the green screen, but the menu screen bypasses it.

    I have the market loaded and I can browse apps to download, but every app I try says "download unsuccessful". I am going to try to recover and try again. I think I may have mistakenly upgraded to 2.02 prior to following your instruction.

    Thanks again.

  2. # ADS
    Circuit advertisement
    Join Date
    Always
    Posts
    Many

  3. #22
    Senior Member
    Points: 2,333, Level: 29
    Level completed: 22%, Points required for next Level: 117
    Overall activity: 2.0%
    Achievements:
    7 days registered 31 days registered 3 months registered 100 Experience Points 250 Experience Points

    Member #
    7466
    Join Date
    Nov 2010
    Posts
    124
    Thanked
    7 times
    Points
    2,333
    Level
    29
    2.02 wipes this off the device anyways and you have to reapply it.

    it sounds like your androidID didn't get injected properly try running this in either adb or terminal on the device

    adb shell sqlite3 /data/data/com.google.android.googleapps/databases/gls.db "select * from meta";
    if you run it in terminal take away the adb shell part

    if this returns a 0 or anything that isn't an exact match to yours then you need to redo the step to inject your android ID you pulled from your emulator

    Code:
    adb shell sqlite3  /data/data/com.google.android.googleapps/databases/gls.db "update meta  set intvalue='ANDROID_ID_HERE' where name='androidId'";
    don't forget to replace the 'ANDROID_ID_HERE' with your androidID you do need to leave the ' in front and behind the number
    Last edited by bigwooly; 01-04-2011 at 01:31 PM.

  4. #23
    Junior Member Achievements:
    7 days registered 31 days registered 3 months registered 100 Experience Points 250 Experience Points

    Member #
    11741
    Join Date
    Jan 2011
    Location
    Unioin City, GA
    Posts
    3
    Device
    Sylvania SYNET7LP
    Thank you big time!

    I got the Sylvania because budget/features, and I haven't been sorry - but wanted the market... Once I got past the sqlite3 problem, with <> adb pull /data/data/com.google.android.googleapps /databases/accounts.db <> and <> sqlite3.exe accounts.db "select * from meta"; <> to get my androidid all was golden. Everything else worked as described, and my market experience has been great!

    I am running the LiveHome launcher from the Android Market, and I like it a lot better than the stock one. Previously I had been using other markets and side-loading apps, but the real thing is the best.

    Thanks again.

  5. #24
    Junior Member
    Points: 980, Level: 16
    Level completed: 80%, Points required for next Level: 20
    Overall activity: 0%
    Achievements:
    1 year registered 500 Experience Points 250 Experience Points 100 Experience Points 3 months registered

    Member #
    9757
    Join Date
    Dec 2010
    Location
    Conroe, Tx
    Posts
    11
    Points
    980
    Level
    16
    Device
    research
    I've got everything working except when I try to download anything from the market it sits at "starting download". I've tried every solution that is on the Google Android support forum with no luck. Any suggestions? I've checked my Android ID and it is the same as the one I wrote down. I've also changed the ID to a new one with no luck.

  6. #25
    Junior Member Achievements:
    7 days registered 31 days registered 3 months registered 100 Experience Points 250 Experience Points

    Member #
    13800
    Join Date
    Jan 2011
    Location
    PA
    Posts
    2
    Device
    Sylvania
    Ablepharous, I have the same problem - when I try to download any app, it gets struck at "starting download". I've tried the reset and reinstall at least 3 times - to no avail. Someone suggested that I create a new gmail account instead of an existing one - but, it doesn't work.
    Did anyone successfully overcome this problem in this tablet?
    Btw, did you try to download the market apps in a public wifi? I haven't tried this. But, I did look in my router configuration for any blocked firewalls, ports, etc but couldn't find anything that could cause this.
    Any help would be highly appreciated.

  7. #26
    Senior Member
    Points: 98,377, Level: 100
    Level completed: 0%, Points required for next Level: 0
    Overall activity: 2.0%
    Achievements:
    50000 Experience Points 1 year registered 25000 Experience Points 10000 Experience Points 5000 Experience Points
    Awards:
    Downloads

    Member #
    10570
    Join Date
    Dec 2010
    Posts
    627
    Thanked
    171 times
    Points
    98,377
    Level
    100
    Device
    Sylvania SYNET7LP

    Market clear cache

    Found these steps somewhere along the way that worked for me.

    If you're having trouble getting the Android Market to work, regardless of what firmware your running, this should fix it! Mine also updated to the Newer version of the Market.

    Go to Settings/Applications/Manage Applications
    Press Menu/ filter/All

    1. Checkin Service -clear data
    2. Download Manager -clear data
    3. Market -clear cache
    4. Reboot

    Let us know if this does the trick for you, if so it should be a FAQ

  8. #27
    Junior Member
    Points: 980, Level: 16
    Level completed: 80%, Points required for next Level: 20
    Overall activity: 0%
    Achievements:
    1 year registered 500 Experience Points 250 Experience Points 100 Experience Points 3 months registered

    Member #
    9757
    Join Date
    Dec 2010
    Location
    Conroe, Tx
    Posts
    11
    Points
    980
    Level
    16
    Device
    research
    cfrockit: Tried all of those steps didn't work.

    Joesat78: Haven't tried on a public wi-fi yet, might have to make a trip to McDonalds.

  9. #28
    Senior Member
    Points: 2,333, Level: 29
    Level completed: 22%, Points required for next Level: 117
    Overall activity: 2.0%
    Achievements:
    7 days registered 31 days registered 3 months registered 100 Experience Points 250 Experience Points

    Member #
    7466
    Join Date
    Nov 2010
    Posts
    124
    Thanked
    7 times
    Points
    2,333
    Level
    29
    Quote Originally Posted by bigwooly View Post
    2.02 wipes this off the device anyways and you have to reapply it.

    it sounds like your androidID didn't get injected properly try running this in either adb or terminal on the device



    if you run it in terminal take away the adb shell part

    if this returns a 0 or anything that isn't an exact match to yours then you need to redo the step to inject your android ID you pulled from your emulator

    Code:
    adb shell sqlite3  /data/data/com.google.android.googleapps/databases/gls.db "update meta  set intvalue='ANDROID_ID_HERE' where name='androidId'";
    don't forget to replace the 'ANDROID_ID_HERE' with your androidID you do need to leave the ' in front and behind the number
    @ joesat78
    and
    Ablepharous

    an invalid android id is the most likely cause of this issue. Also if you don't reboot the tablet after injecting the id it will do what you are describing. (i used do this alot the process is long and painful and it seems i always forget to reboot)

    as i stated in a previous post somewhere else in the sylvania forums my son stepped on my sylvania after being done with "angeeeee birdiessss" and broke the digitizer portion of the touchscreen so my tablet can now only be used with a keyboard and a mouse connected. I'll try to keep up with this thread as best as i can but if it takes me a few days to respond i apologize.

    let me know if you get it working. the steps listed work if followed step by step. skip nothing or you will most likely end up with a non-working market.

  10. #29
    Member
    Points: 792, Level: 14
    Level completed: 92%, Points required for next Level: 8
    Overall activity: 0%
    Achievements:
    7 days registered 31 days registered 3 months registered 100 Experience Points 250 Experience Points

    Member #
    7655
    Join Date
    Nov 2010
    Posts
    40
    Thanked
    4 times
    Points
    792
    Level
    14
    Quote Originally Posted by bigwooly View Post
    @ joesat78
    and
    Ablepharous

    an invalid android id is the most likely cause of this issue. Also if you don't reboot the tablet after injecting the id it will do what you are describing. (i used do this alot the process is long and painful and it seems i always forget to reboot)

    as i stated in a previous post somewhere else in the sylvania forums my son stepped on my sylvania after being done with "angeeeee birdiessss" and broke the digitizer portion of the touchscreen so my tablet can now only be used with a keyboard and a mouse connected. I'll try to keep up with this thread as best as i can but if it takes me a few days to respond i apologize.

    let me know if you get it working. the steps listed work if followed step by step. skip nothing or you will most likely end up with a non-working market.
    I agree. I had several issues that prevented me from getting market to work. 1st off I used an app called Android ID Changer on my Android phone, but it gave me the Hexadecimal number instead of the decimal so it would not work. Also, not rebooting after injecting the ID held me up. After I corrected both of these issues, life has been a lot better. I did revert back to the factory image each time I tried a new ID as well.

  11. #30
    Junior Member Achievements:
    7 days registered 31 days registered 3 months registered 100 Experience Points 250 Experience Points

    Member #
    14663
    Join Date
    Jan 2011
    Posts
    23
    Device
    SYLVANIA 7" MINI TABLET

    Angry Darn

    What do you use to input the codes. Do you use Terminal Emulator? If so, where did you get it?


 
Page 3 of 16 FirstFirst 1 2 3 4 5 13 ... LastLast

Sponsors:

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

Similar Threads

  1. Google and HTC Working On a Chrome OS Tablet
    By JimMariner in forum HTC Tablets
    Replies: 7
    Last Post: 02-24-2012, 11:34 AM
  2. Google Voice and Skype Working on Tab
    By MaxTcee in forum Samsung Galaxy Tab
    Replies: 28
    Last Post: 04-23-2011, 05:22 PM
  3. Working market fix>?
    By bL33d in forum Augen Gentouch
    Replies: 1
    Last Post: 12-06-2010, 05:23 PM
  4. Google working on eBook store, Google Editions
    By Admin in forum Android Tablet News
    Replies: 0
    Last Post: 12-01-2010, 11:19 AM
  5. Haipad M701 Market not working
    By lawstudent2013 in forum Telechips TCC8902 Tablets
    Replies: 3
    Last Post: 11-26-2010, 08:33 PM

Search tags for this page

android emulator slide keyboard open to continue
,
get android market on tablet
,
google market not working
,
google market on sylvania tablet
,
how to get a working google market
,

how to get android market on sylvania tablet

,

how to get google market on tablet

,
how to get market on android tablet
,
slide keyboard open to continue android emulator
,
sylvania tablet android market
,

sylvania tablet google market

,
ugly market hack
Click on a term to search our sites for related topics.
Powered by vBulletin® Version 4.1.11
Copyright © 2012 vBulletin Solutions, Inc. All rights reserved.
Android Tablets.net is not affiliated or associated with Google, Android Project or any of the device manufacturers listed on this site.
We are simply an enthusiast site.
All times are GMT -5. The time now is 11:05 AM.