View Single Post
Old 01-02-2011, 09:56 AM   #103
Icewyng
Addict
Icewyng has a spectacular aura aboutIcewyng has a spectacular aura aboutIcewyng has a spectacular aura aboutIcewyng has a spectacular aura aboutIcewyng has a spectacular aura aboutIcewyng has a spectacular aura aboutIcewyng has a spectacular aura aboutIcewyng has a spectacular aura aboutIcewyng has a spectacular aura aboutIcewyng has a spectacular aura aboutIcewyng has a spectacular aura about
 
Icewyng's Avatar
 
Posts: 238
Karma: 4039
Join Date: Jun 2010
Location: Quebec, Canada
Device: Pocketbook 301+, Pocketbook IQ
Quote:
Originally Posted by Coredump-EE View Post
FWIW I got the Market to work by

1. Adding my Google account via signed_YouTube.apk

2. Inserting an andriodId borrowed from my phone

Code:
adb shell sqlite3 /data/data/com.google.android.googleapps/databases/gls.db "update meta set intvalue='YOUR_NUMBER_HERE' where name='androidId'";

3. Pushing a modified build.prop

Code:
adb pull /system/build.prop
sed '/nocheckin/d' build.prop > /tmp/build.prop
echo "ro.config.nocheckin=no" >> /tmp/build.prop
sed 's/^.*ro.build.fingerprint.*$/ro\.build\.fingerprint=verizon\/voles\/sholes\/sholes:2\.1-update1\/ESE81\/29593:user\/release-keys/' /tmp/build.prop > build.prop
adb push build.prop /system

4. Pushing a modified packages.xml

Code:
adb pull /data/system/packages.xml
sed '1,/uid.system/!{ /<perms>/,/uid.system/!d; }' packages.xml > /tmp/packages.xml
adb push /tmp/packages.xml /data/system
The build.prop and packages.xml hacks were taken from the Nook Color Script.
That is a bit of what I did. I took parts of the NC hack & of the PDN google experience hack as well. It has been working well so far.

I am still looking for a way to improve the hack. What is you phone btw? is it 2.1?

I hope Froyo is still on track for the first half of January...!
Icewyng is offline   Reply With Quote