What, you don't have access to an already rooted Eris that just might have a wi-fi tething app available and installed?
Word of warning...you will need to have the Android SDK installed and at least "adb" connectivity with your phone.
Not a problem...okay, lemme find the details on what you need for these two .apks...
Okay, let's grab the .apk files from your other phone first. You'll find them in the
/data/app directory (at least that's where they are on my X). You can search for them with "
busybox find / filename.apk 2> /dev/null" (without the double-quotes, of course).
Okay, it looks like
EStrongs .apk is called
com.estrongs.android.pop-1.apk and
Gscript Lite is called
nl.rogro.GScriptLite.apk.
Copy these files to your /sdcard via something like the
Android Terminal Emulator (free in the Market) or using the Android SDK's "adb shell":
$
su
#
cd /data/app
#
cp com.estrongs.android.pop-1.apk /sdcard/estrongs.apk
#
cp nl.rogro.GScriptLite.apk /sdcard/gscriptlite.apk
#
exit
$
exit
Now, either copy the files to your C:\ drive (PC) via the USB cable, or use the Android SDK's adb commands:
c:\sdk>
adb pull /sdcard/estrongs.apk estrongs.apk
c:\sdk>
adb pull /sdcard/gscriptlite.apk gscriptlite.apk
Now, disconnect from your old phone and connect your "new" (test) one.
Okay, after you've connected your test phone up to your PC, go back into the Windows/DOS prompt where your SDK's adb utility (and you .apk files) are located. You can install them directly from here:
c:\sdk>
adb install estrongs.apk
c:\sdk>
adb install gscriptlite.apk
Ugh...is this useful? I could keep going, but I don't want to go too far...
How's this so far?