PPCGeeks Forums HTC Arrive HTC HD2 HTC Thunderbolt HTC Touch Pro 2 HTC Evo 4G HTC Evo 3D Samsung Galaxy S II Motorola Droid X Apple iPhone Blackberry
Go Back   PPCGeeks > Android > Android Motorola Devices > Moto Droid
Register Community Search

Notices


Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 02-23-2010, 11:25 AM
banden's Avatar
Droidgeek
Offline
Pocket PC: Rooted MotoDroid w/mish mash of ROMs
Carrier: Verizon
 
Join Date: Nov 2009
Posts: 479
Reputation: 985
banden knows their stuffbanden knows their stuffbanden knows their stuffbanden knows their stuffbanden knows their stuffbanden knows their stuffbanden knows their stuffbanden knows their stuff
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
How to: Access 2.1 Apps in Market (on 2.0.1 ROM)

This is only for Rooted Moto Droids.

If you are looking to access some of the 2.1 apps such as Google Earth or you want to add some of the extra Live Wallpapers on the market place you will need to tweak your ROM a bit.

Not: DroidMod's ROM already has this in place. But other roms like steve's or AdamZ's you may need to do this extra step.


1. You should have 'Root Explorer' and if you don't, now is the time to buy it from the market place. It's like Astro, only geared towards rooted android phones.

2. Open Root Explorer

3. Navigate to /system/

4. Tap the button at the top "Mount R/W"

5. Long press on the file "build.prop" then select "Open in Text Editor"

6. Using the DPad on the keyboard move the curse down a few rows to the row that say:


ro.build.version.sdk=6

And change it to say:

ro.build.version.sdk=7

7. Tap the menu button and select 'Save & Exit'

8. You should now be back in the system folder, tap the button 'Mount R/O'

9. You're done, but you should restart the phone for good measure.


Now you can download and user 2.1 goodies from the market! Have fun!
__________________
The 'THanKs' button: use it, love it.

Last edited by banden; 02-23-2010 at 11:29 AM.
Reply With Quote
This post has been thanked 3 times.
  #2 (permalink)  
Old 02-23-2010, 12:32 PM
nerdherd's Avatar
Regular 'Geeker
Offline
Pocket PC: Motorola Droid
Carrier: Verizon
 
Join Date: Jun 2009
Posts: 252
Reputation: 165
nerdherd is keeping up the good worknerdherd is keeping up the good work
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: How to: Access 2.1 Apps in Market (on 2.0.1 ROM)

Thanks for the tip banden!

For those that don't have Root Explorer (and are cheap like me), you can also do this just using adb.

Plug your phone into the computer, make sure USB debugging is enabled, and DON'T mount the memory card. Open the command prompt and type the following (replace C:\somewhere with the folder you want to use):

Code:
adb shell
su
mount -o remount,rw -t yaffs2 /dev/block/mtdblock4 /system
exit
exit
adb pull system/build.prop C:\somewhere
Go to the folder you chose above (C:\somewhere), open the build.prop file with notepad and change line 6 to:

Code:
ro.build.version.sdk=7
Save the file, then go back to your command prompt and do this (once again put in the actual directory after C:\):

Code:
adb push C:\something\build.prop system/          
adb shell
su
mount -o remount,ro -t yaffs2 /dev/block/mtdblock4 /system
exit
exit
adb reboot
That's it! I'm no linux or Android expert, but that worked for me!

Last edited by nerdherd; 02-23-2010 at 02:29 PM.
Reply With Quote
This post has been thanked 2 times.
  #3 (permalink)  
Old 02-23-2010, 12:42 PM
rolijen's Avatar
PPCGeeks Regular
Offline
Pocket PC: Motorola DROID
Carrier: Verizon
 
Join Date: Jul 2009
Posts: 83
Reputation: 80
rolijen is becoming a great contributor
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: How to: Access 2.1 Apps in Market (on 2.0.1 ROM)

Quote:
Originally Posted by nerdherd View Post
Thanks for the tip banden!

For those that don't have Root Explorer (and are cheap like me), you can also do this just using adb.

Plug your phone into the computer, make sure USB debugging is enabled, and DON'T mount the memory card. Open the command prompt and type the following (replace C:\somewhere with the folder you want to use):

Code:
adb shell
su
mount -o remount,rw -t yaffs2 /dev/block/mtdblock4 /system
exit
exit
adb pull system/build.prop C:\somewhere
Go to the location you chose above, open the build.prop file with notepad and change line 6 to:

Code:
ro.build.version.sdk=7
Once that's done go back to your command prompt and do this (once again put in the actual directory after C:\):

Code:
adb push C:\something\build.prop system/          
adb shell
su
mount -o remount,ro -t yaffs2 /dev/block/mtdblock4 /system
exit
exit
adb reboot
That's it! I'm no linux or Android expert, but that worked for me!
Thanks nerdherd. The live wallpapers are pretty cool.
__________________
Rolijen

For those about to rock (We salute you)
Reply With Quote
  #4 (permalink)  
Old 02-23-2010, 01:04 PM
tvandyck7's Avatar
Regular 'Geeker
Offline
Pocket PC: Moto Droid 2
Carrier: Verizon
Location: New Mexico
 
Join Date: Apr 2009
Posts: 445
Reputation: 270
tvandyck7 is becoming a PPCGeeks regulartvandyck7 is becoming a PPCGeeks regulartvandyck7 is becoming a PPCGeeks regular
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: How to: Access 2.1 Apps in Market (on 2.0.1 ROM)

I downloaded some more live WP's last night and they have the touch interaction working. The live earth wallpaper is pretty cool. It has realtime earth views (day/night) as well as every planet and the moon. You even have the option of showing the moon orbit around the earth which adds alot to it.
Reply With Quote
  #5 (permalink)  
Old 02-23-2010, 02:19 PM
nerdherd's Avatar
Regular 'Geeker
Offline
Pocket PC: Motorola Droid
Carrier: Verizon
 
Join Date: Jun 2009
Posts: 252
Reputation: 165
nerdherd is keeping up the good worknerdherd is keeping up the good work
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: How to: Access 2.1 Apps in Market (on 2.0.1 ROM)

Or better yet, you can make it be the Death Star!
Reply With Quote
  #6 (permalink)  
Old 02-23-2010, 07:35 PM
Adrynalyne's Avatar
The Pusher
Offline
Pocket PC: Samsung Omnia i910
Carrier: Verizon
 
Join Date: Dec 2008
Posts: 3,788
Reputation: 7240
Adrynalyne is a trusted member of the communityAdrynalyne is a trusted member of the communityAdrynalyne is a trusted member of the communityAdrynalyne is a trusted member of the communityAdrynalyne is a trusted member of the communityAdrynalyne is a trusted member of the communityAdrynalyne is a trusted member of the communityAdrynalyne is a trusted member of the communityAdrynalyne is a trusted member of the communityAdrynalyne is a trusted member of the communityAdrynalyne is a trusted member of the community
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: How to: Access 2.1 Apps in Market (on 2.0.1 ROM)

Keep in mind that this hack is neat but:

1. Will block certain apps from showing up in the market. One for example, would be DroidRootHelper. Pro shows up though.

2. The apps that are blocked on the market also will not work on your Droid, and will actually disappear from the app launcher drawer.
Reply With Quote
This post has been thanked 3 times.
  #7 (permalink)  
Old 02-23-2010, 11:06 PM
banden's Avatar
Droidgeek
Offline
Pocket PC: Rooted MotoDroid w/mish mash of ROMs
Carrier: Verizon
Threadstarter
 
Join Date: Nov 2009
Posts: 479
Reputation: 985
banden knows their stuffbanden knows their stuffbanden knows their stuffbanden knows their stuffbanden knows their stuffbanden knows their stuffbanden knows their stuffbanden knows their stuff
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: How to: Access 2.1 Apps in Market (on 2.0.1 ROM)

Quote:
Originally Posted by Adrynalyne View Post
Keep in mind that this hack is neat but:

1. Will block certain apps from showing up in the market. One for example, would be DroidRootHelper. Pro shows up though.

2. The apps that are blocked on the market also will not work on your Droid, and will actually disappear from the app launcher drawer.
So then how does the DroidMod ROM get around that?
Reply With Quote
  #8 (permalink)  
Old 02-24-2010, 12:27 AM
Adrynalyne's Avatar
The Pusher
Offline
Pocket PC: Samsung Omnia i910
Carrier: Verizon
 
Join Date: Dec 2008
Posts: 3,788
Reputation: 7240
Adrynalyne is a trusted member of the communityAdrynalyne is a trusted member of the communityAdrynalyne is a trusted member of the communityAdrynalyne is a trusted member of the communityAdrynalyne is a trusted member of the communityAdrynalyne is a trusted member of the communityAdrynalyne is a trusted member of the communityAdrynalyne is a trusted member of the communityAdrynalyne is a trusted member of the communityAdrynalyne is a trusted member of the communityAdrynalyne is a trusted member of the community
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: How to: Access 2.1 Apps in Market (on 2.0.1 ROM)

As far as I know, it doesn't.
Reply With Quote
  #9 (permalink)  
Old 02-24-2010, 11:58 AM
nerdherd's Avatar
Regular 'Geeker
Offline
Pocket PC: Motorola Droid
Carrier: Verizon
 
Join Date: Jun 2009
Posts: 252
Reputation: 165
nerdherd is keeping up the good worknerdherd is keeping up the good work
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: How to: Access 2.1 Apps in Market (on 2.0.1 ROM)

Good info Adrynalyne. So would this basically just get rid of the apps aimed specifically at the Droid? All the apps that I use seem to be available fortunately.
Reply With Quote
  #10 (permalink)  
Old 02-24-2010, 09:17 PM
Adrynalyne's Avatar
The Pusher
Offline
Pocket PC: Samsung Omnia i910
Carrier: Verizon
 
Join Date: Dec 2008
Posts: 3,788
Reputation: 7240
Adrynalyne is a trusted member of the communityAdrynalyne is a trusted member of the communityAdrynalyne is a trusted member of the communityAdrynalyne is a trusted member of the communityAdrynalyne is a trusted member of the communityAdrynalyne is a trusted member of the communityAdrynalyne is a trusted member of the communityAdrynalyne is a trusted member of the communityAdrynalyne is a trusted member of the communityAdrynalyne is a trusted member of the communityAdrynalyne is a trusted member of the community
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: How to: Access 2.1 Apps in Market (on 2.0.1 ROM)

Depends on how it was coded.
Reply With Quote
Reply

  PPCGeeks > Android > Android Motorola Devices > Moto Droid


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT -4. The time now is 12:44 AM.


Powered by vBulletin® ©2000 - 2024, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.6.0
©2012 - PPCGeeks.com