- Posts 18241
- WRZ$
94930.63
Cut the Rope v1.2 [Paid version // Ad-free]
Requirements: for all Android versions
Overview: The long-awaited hit game has finally arrived at Android! Join MORE THAN 40 MILLION PEOPLE who have already played this game and gave it an average rating of 4,81 (out of 5)!


The little monster Om Nom is hungry and the only thing standing between him and a full belly is you – that is your help cutting the ropes that hold the candy he wants. Swipe your finger across the ropes to release the delicious bundles into his mouth. But don’t forget to collect the stars and break the bubbles along the way – easier said than done when enemies and obstacles await!
Cut the Rope is an award-winning mobile game from ZeptoLab, was an instant phenomenon in the iOS App Store reaching the #1 spot globally, and continues to gain popularity as it makes its way onto Android.
What's in this version:
New Tool Box packed with 25 new levels and featuring new game mechanics.
Bug fixes and optimizations.
More Info:
Download Instructions:
http://www.filesonic.com/file/3991762704
Mirror:
http://filepost.com/files/a3496352/cp12.apk/
http://www.MegaShare.com/3746611
Requirements: for all Android versions
Overview: The long-awaited hit game has finally arrived at Android! Join MORE THAN 40 MILLION PEOPLE who have already played this game and gave it an average rating of 4,81 (out of 5)!
The little monster Om Nom is hungry and the only thing standing between him and a full belly is you – that is your help cutting the ropes that hold the candy he wants. Swipe your finger across the ropes to release the delicious bundles into his mouth. But don’t forget to collect the stars and break the bubbles along the way – easier said than done when enemies and obstacles await!
Cut the Rope is an award-winning mobile game from ZeptoLab, was an instant phenomenon in the iOS App Store reaching the #1 spot globally, and continues to gain popularity as it makes its way onto Android.
What's in this version:
New Tool Box packed with 25 new levels and featuring new game mechanics.
Bug fixes and optimizations.
More Info:
Code: Select all
https://market.android.com/details?id=com.zeptolab.ctr.paidDownload Instructions:
http://www.filesonic.com/file/3991762704
Mirror:
http://filepost.com/files/a3496352/cp12.apk/
http://www.MegaShare.com/3746611
- Posts 236
- WRZ$
197.10
is it possible to install directly over the v1.0?
- Posts 237
- WRZ$
54.50
- Device LG G8
something strange is happening to me with games I'm trying to update (Cut The Rope 1.2 & Muffin Knight 1.3.1).
Instead of updating the existing game that's already installed its installing itself again!
So in the app drawer I have 2 versions (and icons) of each game.
Any idea why I can't update the version that's already installed?
Instead of updating the existing game that's already installed its installing itself again!
So in the app drawer I have 2 versions (and icons) of each game.
Any idea why I can't update the version that's already installed?
- Posts 16
- WRZ$
51.90
avishaio wrote:something strange is happening to me with games I'm trying to update (Cut The Rope 1.2 & Muffin Knight 1.3.1).
Instead of updating the existing game that's already installed its installing itself again!
So in the app drawer I have 2 versions (and icons) of each game.
Any idea why I can't update the version that's already installed?
Same here.
I'm not able to use the 1.0 saved game
- Posts 4994
- WRZ$
10897.10
- Device iPod touch
- OS iOS14
avishaio wrote:something strange is happening to me with games I'm trying to update (Cut The Rope 1.2 & Muffin Knight 1.3.1).
Instead of updating the existing game that's already installed its installing itself again!
So in the app drawer I have 2 versions (and icons) of each game.
Any idea why I can't update the version that's already installed?
raistlin74 wrote:Same here.
I'm not able to use the 1.0 saved game
But I had no problem and could successfully update the game with the saved levels that I'd done before!!!
Retired...
- Posts 16
- WRZ$
51.90
raistlin74 wrote:avishaio wrote:something strange is happening to me with games I'm trying to update (Cut The Rope 1.2 & Muffin Knight 1.3.1).
Instead of updating the existing game that's already installed its installing itself again!
So in the app drawer I have 2 versions (and icons) of each game.
Any idea why I can't update the version that's already installed?
Same here.
I'm not able to use the 1.0 saved game
Ok find the solution.
The problem is that I installed the free version 1.0 (the one with the ads) and the package name is com.zeptolab.ctr.
This version is the paid app so the package is com.zeptolab.ctr.paid.
The solution is the following, Requires ADB and root:
Install this version (1.2) run the game and complete a level, exit, then do this...
adb shell ls -l /data/data/com.zeptolab.ctr.paid/shared_prefs/CtrAppPaid.xml
which will produce something like this...
-rw-rw---- app_437 app_437 19853 2011-06-30 19:06 CtrAppPaid.xml
...note the 'app' number (437), we'll use this in the next step.
Now do this...
adb shell cp /data/data/com.zeptolab.ctr/shared_prefs/CtrApp.xml /data/data/com.zeptolab.ctr.paid/shared_prefs/CtrAppPaid.xml && adb shell chown 10437:10437 /data/data/com.zeptolab.ctr.paid/shared_prefs/*
...substituting 10437 with 10 then your app number from the step above.
That's it, you should be all done!
Local achievements etc. seem to be stored in a databases subdirectory, so you could do...
adb shell cp /data/data/com.zeptolab.ctr/databases/* /data/data/com.zeptolab.ctr.paid/databases/ && adb shell chown 10437:10437 /data/data/com.zeptolab.ctr.paid/databases/*
...if you want to get those too, and scoreloop achievements by doing the following...
adb shell cp /data/data/com.zeptolab.ctr/shared_prefs/com.scoreloop* /data/data/com.zeptolab.ctr.paid/shared_prefs/ && adb shell chown 10437:10437 /data/data/com.zeptolab.ctr.paid/shared_prefs/*
Hope this helps.
Edit : this is not my work. All credits to the poster on modaco
- Posts 16
- WRZ$
51.90
avishaio wrote:damn that looks complicated... anyone with an APK that was able to upgrade existing installation?
No, it is not complicated.
Just execute that commands via adb, replacing the numbers for the chown command with yours
You can do it in 30 seconds
- Posts 2
- WRZ$
50.10
raistlin74 wrote:raistlin74 wrote:avishaio wrote:something strange is happening to me with games I'm trying to update (Cut The Rope 1.2 & Muffin Knight 1.3.1).
Instead of updating the existing game that's already installed its installing itself again!
So in the app drawer I have 2 versions (and icons) of each game.
Any idea why I can't update the version that's already installed?
Same here.
I'm not able to use the 1.0 saved game
Ok find the solution.
The problem is that I installed the free version 1.0 (the one with the ads) and the package name is com.zeptolab.ctr.
This version is the paid app so the package is com.zeptolab.ctr.paid.
The solution is the following, Requires ADB and root:
Install this version (1.2) run the game and complete a level, exit, then do this...
adb shell ls -l /data/data/com.zeptolab.ctr.paid/shared_prefs/CtrAppPaid.xml
which will produce something like this...
-rw-rw---- app_437 app_437 19853 2011-06-30 19:06 CtrAppPaid.xml
...note the 'app' number (437), we'll use this in the next step.
Now do this...
adb shell cp /data/data/com.zeptolab.ctr/shared_prefs/CtrApp.xml /data/data/com.zeptolab.ctr.paid/shared_prefs/CtrAppPaid.xml && adb shell chown 10437:10437 /data/data/com.zeptolab.ctr.paid/shared_prefs/*
...substituting 10437 with 10 then your app number from the step above.
That's it, you should be all done!
Local achievements etc. seem to be stored in a databases subdirectory, so you could do...
adb shell cp /data/data/com.zeptolab.ctr/databases/* /data/data/com.zeptolab.ctr.paid/databases/ && adb shell chown 10437:10437 /data/data/com.zeptolab.ctr.paid/databases/*
...if you want to get those too, and scoreloop achievements by doing the following...
adb shell cp /data/data/com.zeptolab.ctr/shared_prefs/com.scoreloop* /data/data/com.zeptolab.ctr.paid/shared_prefs/ && adb shell chown 10437:10437 /data/data/com.zeptolab.ctr.paid/shared_prefs/*
Hope this helps.
Edit : this is not my work. All credits to the poster on modaco
awesome, works great. i thought i have to play the whole thing again.