bal1985 wrote:There is a new license out 1.0.4
http://www.mediafire.com/?yneq3z0hyetBut it needs to be cracked. When you install the new license, it says it doesn't work so hopefully someone will crack this.
Found this on another forum. (In fact the same thread you were looking at, bal1985). Just did it myself and it works.
---------------
Seems to be working for me (1.0.4)
This is what i did:
Downloaded the file
Moved it into my C: Drive
Went to Command Prompt
Typed: "adb install -l C:\rommanagerlicense1.04.apk"
pressed Enter
It installed
Ran the program
It said thanks for buying the premium version.
----------------
Alternatively, if "adb install -l C:\rommanagerlicense1.04.apk" does not work (says already installed)
try "adb install -l -r C:\rommanagerlicense1.04.apk"
"-r" reinstalls instead of just trying to install. "-l" locks the file, incase you were curious.
Otherwise if neither work, do this first:
If you don't know how to use adb/don't have it set up go here:
http://theunlockr.com/2009/10/06/how-to ... d-devices/----------------
There is an adb uninstall command which always shows Failure!!!
Using adb shell :
Important: The device has to be unplugged from USB if you are trying to uninstall from the emulator, else emulator should not be open and device needs to be plugged in the USB of the PC if you are trying to uninstall from the G1 Device. If either of them are not connected the adb shell command will not work
Go to the shell and making sure adb is in PATH:
Go to shell (from cmd->adb shell or directly through a terminal)
#
#cd data
#cd app
#ls
You will get a list of installed application with the complete package name of the package containing the main activity. e.g com.company.product.apk
#rm com.company.product.apk
#ls
You will not find the application – you just removed it!.
------------------