Hello everyone!
I'm here to make a guide for people who are new to their Galaxy R, and also the Android world
Our phone has the following specifications:
- 1Ghz Dual-core ARM Cortex A9 processor (ARMv7)
- NVIDIA Tegra 2 AP20H chipset (Delivers one of the best graphical performances)
- 1GB of RAM (even though Samsung only gives it 724MB of it for real practical use)
- 8GB of internal memory storage (2GB ROM + 2GB for applications + 4GB user available) thanks m.kochan10 !
- SDcard support up to 32GB SDHC
- 5MP Camera with 1.3MP front-facing Camera (we have a chance for face unlock ) therefore it supports video calling
- SD-LCD () capacitive touchscreen, 16,000,000 colours
- Runs on Gingerbread (2.3.3)
- Supports Quad-band GSM (GSM 850 / 900 / 1800 / 1900) and Quad-band HSPA (HSDPA 850 / 900 / 1900 / 2100) with HSDPA+ (21Mbps) and HSUPA (5.76Mbps)
- Weighs 135g (LIGHT!)
- Has a scratch-resistant glass with multitouch
- TouchWiz UI v4.0 :O
- Has official ICS support
Taken from http://www.gsmarena.com/samsung_i9103_galaxy_r-3967.php
Q&A coming soon from cooleagle
Basic noobie questions:
Q1: What is Android? I heard that my phone has this as said by the guy who sold me this phone......
A1: Hello new user, Android is an Operating System (a.k.a OS) for phones, like how Windows is for computers. It is meant to be simple, efficient and customisable.
More can be seen here:
http://en.wikipedia.org/wiki/Android_(operating_system)
Q2: What is root? What does it do?
A2: Rooting is the process of attaining superuser (su) access to your phone. It is similiar to the jailbreaking process on Apple phones
Q3: What are the different Android versions available for our phone?
A3: Currently only 2.3.3 to 2.3.6. Don't worry, Cyanogenmod 7 will have 2.3.7
Q4: I've heard all this commotion about "stock" firmwares. What are they?
A4: Okay, stock firmwares are update files from Samsung which are available for download. This stock firmware may also stand for factory firmware (if you didn't update)
Q5: What's build.prop? What are some of the build.prop tweaks and meanings?
A5: Build.prop is a file that defines the build properties of the build and phone. It is a necessary part of the phone and if it's missing, the phone may not be able to boot.
Here are some build.prop tweaks:
pm.sleep_mode=(0 or 1)
Enables the phone's sleep mode.
0 to disable, 1 to enable.
ro.ril.disable.power.collapse=(0 or 1)
Disables the network power collapse, allowing the phone to sleep better.
0 to disable, 1 to enable tweak.
dalvik.vm.heapsize=(amount in mb, e.g 48m)
Defines the Dalvik Virtual Machine Heapsize for games to run better.
ro.sf.lcd_density=(0-999, Galaxy R default is 240)
Defines the LCD density (in dpi) for your device. It's recommended not to change your density for Samsung phones as they will cause problems with your phone's Dialer service.
wifi.suppliant_scan_interval=(time in seconds, e.g. 60)
Defines the time taken to scan for new WiFi networks if no open networks are found. Setting the option higher may save more battery as it scans lesser.
persist.sys.camera-mute=(0 or 1)
Turns off the camera shutter sound (Be careful with this, it may be illegal in yoir region!)
You can also try this suggestion by pudup:
pudup said:
To disable the camera sound, there's a few things you can do.
1. This one is kinda annoying but if the sound annoys you more, you could just put your phone on silent or hold the volume down button until the volume is off. The camera shutter sound shouldn't be heard.
2. Download an alternate camera application. Eg. LGCamera.
3. Wait for the CyanogenMod 7 rom. That has the option to disable the sound in it's settings.
Click to expand...
Click to collapse
0 to turn sounds, 1 to turn off sounds.
video.accelerate.hw=(0 or 1)
Enables hardware decoding of videos. Only for video formats natively supported by phone.
0 to disable, 1 to enable.
ro.ril.hsxpa=(0, 1, 2 or 3, default is 1)
Determines the speed of your HSUPA.
0 = HSUPA disabled (very slow upload)
1 = Stock HSUPA enabled and capped (slow upload)
2 = HSUPA enabled but capped (good upload)
3 = HSUPA enabled and uncapped (best upload)
Q6: Does this phone support overclocking? I feel that I'm not getting the most out of this phone :/
A6: Yes this phone does support overclocking. The kernel by ardatdat should be in the Development section. It even supports undervolting to save battery!
Q7: Why is there a yellow triangle below "Samsung Galaxy R GT-i9103" on boot?
A7: That's because you probably flashed a non-stock kernel through Odin3. Try reflashing a stock ROM and use CWM to flash the phone next time.....
cooleagle and I will add more info to come
Guides:
Guide 1: How to make use of ADB (Android Debug Bridge) for debugging and testing
By now, you all should've known that Android makes mistakes. Actually, not just Android. EVERYONE makes mistakes. Well, for this case it's something going wrong with a game, or just something wrong with a ROM.
The developers @ Google were smart enough to make this logging binary called
Code:
logcat
and it logs everything going on inside Android, from bootup, to dexopt, basic processes and even to shutting down!
There are 2 ways of accessing Android's logcat:
WAY #1: Using Terminal Emulator
Requirements:
A working phone that boots
Rooted with Superuser
Advantages:
It allows debugging without a computer, unlike the 2nd way.
Terminal Emulator is easily downloadable from Google Play: https://play.google.com/store/apps/...251bGwsMSwyLDEsImphY2twYWwuYW5kcm9pZHRlcm0iXQ..
Disadvantages:
It's harder to debug using the phone, especially if it is stuck at the bootanimation or splash screen.
Root is needed otherwise you will get
Code:
logcat: permission denied
in the terminal
Steps:
Download Terminal Emulator from Google Play or the link above
Once you've entered it, type in
Code:
su
using the virtual keyboard
Allow it in the Superuser prompt
Then go ahead and type
Code:
logcat
, you will see a bunch of crazy things.
If you want to save a log, do:
Code:
logcat > /mnt/sdcard/logcat.txt
WAY #2: Using Windows/Ubuntu for logcat using the Android SDK (Software Development Kit)
Requirements:
A computer running Windows/Linux or other distros
The Android SDK must be installed: http://developer.android.com/sdk/index.html
Android USB cable (for connecting the phone to the computer)
An Internet connection
Advantages:
Allows debugging using the computer for more accurate findings
Allows logging much better than the method in Terminal Emulator
Ubuntu allows live copy/paste in its Terminal so there is no need to save a log.txt file
Disadvantages:
It uses the Internet to download the required packages
You need a USB cable to connect the phone
If the USB cable/port is malfunctioning logcat will not work
This is more complex than the phone method as it requires you to set a path in Windows's environment and in Ubuntu's .bashrc if you want to be able to use it in the Terminal/Command Prompt at any time.
Steps for Windows:
Launch the Android SDK Manager in
Code:
32-bit Windows:
C:\Program Files\Android\android-sdk\SDK Manager.exe
64-bit Windows:
C:\Program Files(x86\Android\android-sdk\SDK Manager.exe
Wait for it to finishing loading all the repositories
Install the Android SDK platform-tools and let it finish its install
You have now installed the Android SDK's Platform Tools, which is in
Code:
C:\Program Files\Android\android-sdk\platform-tools
and it contains the Android Debug Bridge (adb.exe), which fits this description:
The adb tool has moved to platform-tools.
If you don't see this directory in your SDK, launch the SDK (execute the android tool) and install "Android SDK Platform-tools"
Please also update your PATH environment variable to include the platform-tools/ directory, so you can execute adb from any location.
Click to expand...
Click to collapse
To test whether adb will work, run Command Prompt and go to the folder described above , respective for 32 and 64-bit.
Run:
Code:
adb logcat
and if it works, the same crazy code will be there
TO BE CONTINUED
GALAXY ‘ROYALE’ FAQ's:
(More than 25 Questions are already here & more to be added with solutions if & where required. )
THOUGH ENOUGH CARE HAS BEEN TAKEN TO CHECK THAT THE INFO GIVEN HERE IS CORRECT, BUT USE IT AT YOUR OWN RISK & IT HAS BEEN PROVIDED AS IT IS. NEED INPUTS FROM OTHER FORUM MEMBERS TO POINT & CORRECT MISTAKES IF ANY. REQUEST HERE IF ANYONE WANTS TO ADD MORE QUESTIONS. THANKS.
Q. What is the Samsung’s Model Code for our device?
Its GT- i9103.
Q. What's resolution of the screen of Galaxy R ?
It has a resolution of 480 x 800 pixels (Same as Galaxy S2)
Q. I want to see the internals of Galaxy R?
Head to => Thread
Q. What is a Android, ROM, Kernel, Superuser, Root, Governer ?
Check out this thread if you want to learn about basic Android terms & acronyms & also about the hardware terminologies / arcronyms: Android Definitions & Terms
Q. Does Galaxy R have a locked Boot loader?
No, it isn’t locked and you can flash custom ROMS & Kernels, but do read the terms and conditions & instructions before rooting/ flashing as it can void your warranty.
But there’s a workaround to unroot it & flash it back to the stock ROM & kernel to give it for repairs. Gather all the information required before rooting and root it only after you are confident of rooting it as its better be safe than sorry and brick your Galaxy R.
Q. WTH my Galaxy R shows only 4GB internal memory free? Samsung fooled me!
No, Samsung did not make a fool out of you.
It actually has 8GB internal storage which is divided as follows:
2GB ROM + 2GB for applications + 4GB user available.
Q. WTH my device shows only 724MB RAM available but I was promised of 1GB! I will sue Samsung!
Don’t sue Samsung you’ll surely make a fool of yourself.
Some part of the RAM is used by the OS & GPU and isn’t available to the user.
Q. Will Galaxy R get ICS 4.0 update & When?
According to an Official Announcement by Samsung, Galaxy R will be updated to ICS 4.0 but there’s no specific date announced but general opinion is around Q2 - Q3 of 2012. You can keep a track of the developments & rant on this thread: Track the Release of ICS 4.0 on Galaxy R / Z i9103
Q. Which Data protocols does Galaxy R support?
HSDPA 21.1MB/s, HSUPA 5.76 MB/s, Wi-Fi b/g/n, Bluetooth 3.0 EDR, Wi-Fi Direct.
Q. What audio formats does the Galaxy R support natively?
Formats Supported: FLAC, MP3, OGG, AAC, AAC+, eAAC+, etc
Q. What video formats & resolution does Galaxy R support for Video Playback?
Formats Supported: MP4/DivX/XviD/WMV/H.264/H.263
Resolution Supported: 1080p low birate videos(Using free Dice Player) & 720p videos.
Q. Which Games can I play on Galaxy R ?
It has support for playing many Games as it’s a TEGRA 2 device. Specially games available on www.tegrazone.com , the one’s available in Samsung’s Game Hub, the ones designed by Gameloft & Electronic Arts(EA).
Q. Does it support USB On-The-Go as I didn't get a USB OTG cable in the box?
Yes it does but you’ll have to buy the cable separately. Galaxy R supports connecting Pen Drives, Mouse, Keyboards & Card Readers.
Q. Does Galaxy R support MHL?
The TEGRA 2 chipset does support MHL natively, but Samsung has disabled it due to unknown reasons, so hang in there till our devs find a solution/mod for enabling it.
Q. Does Galaxy R support Video Calling using the front camera?
Yes it does. You can video call using a 3G network or without costing a dime by using free apps like Skype, Fring, V-Tok, etc.
Q. Does Galaxy R support multi-touch?
Yes it does & has up to 5 finger multi-touch support.
Q. Which sensors does Galaxy R have?
It has:
GPS
Magnetic Sensor
Proximity Sensor
Gyroscope
Light Sensor
Accelerometer
Battery Temperature Sensor
Q. My friend's iPhone has got ‘Siri’ Voice Command support, why doesn’t my Galaxy R support it?
Hold your horses, it does. Amazing right?
It can take Voice Commands using the inbuilt Vlingo app. (Double tap home key to launch.)
Sending SMS/Email by dictating the text.
Calling/Redialing any person.
Playing a specific song from your playlist.
Dictating & saving notes / memo.
Navigating/Asking for directions using Maps.
Search the Web, go to any website.
Playing Radio & Settting Alarm.
Update Facebook & Twitter status.
Open any app.
Record your voice.
Checking your schedule.
Q. I can’t get a proper figure for my 3G/2G data usage on my network using any app from the market or elsewhere!
Yes it’s a known issue for devices on stock kernel. It can be solved by using ardatdat’s kernel as it has a fix for that or wait hoping that Samsung solves it in the next update.
Q. Does Galaxy R have any freebie Apps & Games from Samsung?
Yes it does ! There are so many available just go to Samsung Apps(Application) in your Galaxy R to get the full list. Specifically Modern Combat 3(by Gameloft) & Dead Space(by EA) are available for free.
Q. Can I retrieve my Galaxy R & protect my personal data if God forbid it’s lost?
Yes, you can but it depends on many variable factors to get a lock and use all the available features. It natively supports it by using Samsung Dive to:
Track your mobile.
Ring your mobile.
Send an SMS if the SIM is changed to a pre-defined number.
Erase all your Personal Data on the mobile.
Q. My Galaxy R has freezed/hanged ( It’s mostly due your antics or some app specific bug and not due to the device’s fault as it normally does not hang even on heavy usage ) What to do?
Hold the power button for more than 7 secs and it should automatically restart.
Q. Can I flash Custom ROMs?
Yes you can use Odin or ClockWorkMod(CWM) to flash them but beware you can lose your warranty.
Q. Does flashing increment my counter?
Yes & No. Wondering how both are possible? If you flash using Odin then it increments your counter but if you flash using CWM packages it doesn’t, so it depends on the method you use. But flashing a rooted / custom kernel will increase your counter even if you flash it using CWM.
Q. My device is DEAD & shows APX mode driver required on connecting to my PC! What to do?
You are lucky! Here’s a solution to it. Head to => LINK
Q. My device is not being detected on being connected to my PC but I can charge it via the wall / normal charger ! What to do?
First of all check if you have the latest Samsung Kies software installed as it also installs the latest Samsung USB drivers along with it which are required to connect your device to the PC. If they are installed & still your PC doesn't detect the device then you probably have corrupted drivers. To resolve this follow these steps: Uninstall Samsung Kies / Samsung USB drivers currently installed => Restart your PC => Reinstall Samsung Kies / Samsung USB drivers.
Q. I can't charge my device & my device is not being detected after connecting to my PC & Odin is not detecting my device ! What to do?
(The solution is valid only if you are experiencing all of the above conditions simultaneously)
Checkout this thread which could help you: => [Partial Fix] Galaxy R not getting detected on PC nor charging via a charger.
Q. I didn't backup my /efs folder and my IMEI is messed up ! Is there any way I could recover my IMEI number ?
There is a GUIDE to recover your IMEI for Samsung Galaxy S2, as being from the same manufacturer there is a chance that it may work but there is not guarantee that it'll work, you are going to use it completely at your own risk (it may hard brick your handset). I am not aware if any member was able to recover Galaxy R's IMEI using this method.
So if you willing to take the risk then Head To => Thread & do tell us if were successful in recovering your IMEI by following a particular procedure.
Q. Which Custom ROMs are available for Galaxy R?
Infected ROM v2[2.3.6][ZSLE5]
TitaniumS ROM v2.1[2.3.6]
TheFrankenstein MOD^1.1[2.3.6][ZCLA]
NeoROM v2.1[2.3.6][ZSLE5]
NeoROM v3.0[2.3.6][XWLA4][AROMA]
Anatasia ROM[2.3.6]
Turkbey ROM[2.3.6]
MaZel ROM v 1.1 [2.3.6][XWLA4][AROMA]
Q. Which ROMs are being developed for Galaxy R?
[DEV] CyanogenMod Project - Epsylon3 Nightlies
AOSP Build (No new developments)
Q. Which Custom ROMs do we want?(State it and I’ll update it here )
CM9, MIUI, AOKP, AOSP, PARANOID ROM & any other ROM with better features and functionality!!
So if you are a dev then kindly help or if your friends are developers don’t forget to request them to make it available for our device !
Q. Which Custom Kernels are available for Galaxy R?
ardatdat’s Kernel v1.8.3
Cranium Kernel
Ultimate Kernel
If any of the above helped please don't forget to appreciate by hitting 'Thanks'.
REGARDS,
‘cooleagle’
GALAXY 'ROYALE' HOW To's:
Q. How to connect my device in mass storage mode?
Here’s what you need to do, go to Settings => Wireless & Network => USB utilities => Click on ‘Connect storage to PC’ => Connect USB cable => Done.
Q. How to use my device’s internet by Tethering on my PC?
Here’s what you need to do, go to Settings => Wireless & Network => Tethering & portable hotspot => Connect USB cable => Click on to enable ‘USB tethering’ => Done.
Q. How to disable the annoying camera sound on Galaxy R?
You have two options:
Put the handset in 'Silent mode'.
Install any other Camera app from Android Market/Play Shop, e.g lgCamera, Cymera, etc
Q. How to Backup my apps and data on Galaxy R?
You can use ES FileManager/ Astro File Manager(free & no need for root to backup apps), Titanium Backup Pro(needs root but has much better functionality.)
Q. How to take a screenshot in Galaxy R?
Press the HOME + POWER keys simultaneously to take a screenshot. After that check the 'Gallery' it should automatically update & show your screenshots.
Q. How to find Easter eggs in Android ?
Here’s what you need to do, Go to Settings => About Phone => Repeatedly hit on the field 'Android version' => You'll get an image which is your Easter egg.
Q. How to install CWM on Galaxy R?
Q. How to flash stock ROMs using Odin ?
Q. How to reset my counter back to zero?
Q. How to get a logcat dump & install ADB?
Q. How to configure Samsung Dive?[FONT="][FONT="]
[/FONT]Go to www.samsungdive.com. Create a Samsung account/Login with an existing one and configure it.
Q. How to block the ADs in my Galaxy R?
You could try any of the free apps available in the Android Market/Play Shop which block ADs.(For e.g. AdFree app)
Q. How to install Indian regional fonts on other ROMs(only for XWLA4 based ROMs)?
Same method may work for other regional fonts also, so you can try it at your own risk.[/FONT]
Q. How to make an USB jig at home at your own risk of damaging anything or everything?
Check out this => Video(YouTube)
Q. Links to various Developer Guides if you are interested in developing for Galaxy R
Q. HOW TO REPAIR A BRICKED GALAXY R / Z i9103
Samsung I9103 Galaxy R Repair Dead By USB Cable no need JTAG NO Need Disassembly Phone <= Skip the first 7 posts for instructions.
Unbrick, Downgrage bootloader to 2.0 / Reset custom firmware counter without using an USB jig on Galaxy R i9103(But be careful).
Files that you may need to bring back your Galaxy R to life & give it to the Service Center (flashed via CWM, have been uploaded by XDA member pankaj88):
Stock Recovery
Unroot
GALAXY 'ROYALE' MODs:
Q. MOD to change boot animation of Galaxy R?
Some custom boot animations have been uploaded in this Thread.
Q. MOD to add 14toggle, CRT Off, Battery % to Galaxy R ?(Designed for deodexed XWLA4 but works on some other ROMs too)
Q. MOD to swap internal & external SD memory for Galaxy R?
Q. MOD to activate BLN(BacklightNotification) for Galaxy R?
Currently we don't have any MOD or info(we also need a kernel with some modifications for it) for adding this MOD to Galaxy R. You can request the developers to create one/create one yourself and post it in our forum if possible.
[FONT="]If any of the above helped please don't forget to appreciate by hitting 'Thanks'.
REGARDS,
[/FONT]‘cooleagle’
Good job guys, lots of good information. This thread is now stuck!
Thanks cooleagle !
Herpderp Defy.
GALAXY R KNOWN BUGS & SOLUTIONS:
3G / 2G Mobile Data count applications don't function correctly.
Can be solved by using a custom kernel which has this bug fixed.
Date & Time of the handset changes randomly even when it's set to update automatically according to the network.
Go to Settings => Date & Time => Uncheck & then Recheck 'Automatic' to re-sync with your carrier's / service provider's time & date. No known solution which permanently resolves the issue.
The person at the other end can't hear you at all / Headset Jack bug
Sometimes after unplugging your headset you experience problems while making a call, usually a reboot solves the problem but sometimes it doesn't. It can be identified by the following symptoms: When you're making a call, the person at the other end can't hear your voice but you can hear them clearly / you pick up the call then you can't hear any voice & the person can't hear you either.
It's most probably a software bug as the handset thinks the headset is still attached to the handset & routes the call as if it were being made when a headset would have been connected. But in some cases it could also be due to a hardware problem i.e a faulty 3.5mm headset jack.
To confirm if this is the problem you are facing:
- Plug in Samsung's headset & make a call to check if you can communicate / talk with the person at the other end normally & without any problem.
- If you can talk normally then it's confirmed that it's due to a software bug if not then it could be due faulty 3.5 mm jack.
To resolve it:
- Update your firmware to the latest version available even though it may not be for your region as it could have possible fixes. i.e (ZSLE5 / ZSLE6 / Latest firmware of any region)
- Plug in & out the headset a couple of times while playing music till it gets resolved i.e when the firmware understands that the headset has been removed & then it'll work normally.
- You can also take it to a service center where they could replace the headphone jack & may also reflash the stock firmware which should resolve the problem if it's due to a faulty 3.5mm headset jack.
[FONT="]If any of the above helped please don't forget to appreciate by hitting 'Thanks'.
REGARDS,
[/FONT]‘cooleagle’
If I may suggest something, I would change: 4GB of internal memory storage to
"8GB of internal memory storage (2GB ROM + 2GB for applications + 4GB user available)"
m.kochan10 said:
If I may suggest something, I would change: 4GB of internal memory storage to
"8GB of internal memory storage (2GB ROM + 2GB for applications + 4GB user available)"
Click to expand...
Click to collapse
Sure I'll ask Emo to update it his post.
Any need for modification just ask here , there's no need to PM
Herpderp Defy.
Updated with build.prop tweaks
Herpderp Defy.
FAQ's Added . . . !
How To's Added . . . !
If you have any suggestions or if you find any inaccuracies post it here I'll update them.
Silent camera?
i'm on Titanium ROM v2.1
when i turn off the system sound, the camera is silent!
Guys help needed on how to turn off the camera's shutter like sound.
Is there any Mod for the same ?
bboykang said:
i'm on Titanium ROM v2.1
when i turn off the system sound, the camera is silent!
Click to expand...
Click to collapse
Thanks I'll update it in the FAQ but it'll be only Titanium specific.
But if there's a universal method for all the ROMs and even on rooted stock it would be more helpful.
Capturing screen shot.
Hi,
We can capture the screen by pressing power and home button at a time, can you please add this.
bboykang said:
i'm on Titanium ROM v2.1
when i turn off the system sound, the camera is silent!
Click to expand...
Click to collapse
Possible reasons
1) Your camera shutter sound is silent
2) There's a setting which allows silencing of camera shutter
3) Build.prop tweak
Herpderp Defy.
mj.vikram said:
Hi,
We can capture the screen by pressing power and home button at a time, can you please add this.
Click to expand...
Click to collapse
Yes sure, I am going to add a few more questions so I'll add it with them.
EmoBoiix3 said:
Possible reasons
1) Your camera shutter sound is silent
2) There's a setting which allows silencing of camera shutter
3) Build.prop tweak
Herpderp Defy.
Click to expand...
Click to collapse
Hey man can we tweak build.prop to make the camera shutter sound permanently silent even on stock rooted handsets?
If yes then can you include how to do the same in your first post ?
Holy awesome posts batman!
Great work in here guys
EmoBoiix3 said:
Possible reasons
1) Your camera shutter sound is silent
2) There's a setting which allows silencing of camera shutter
3) Build.prop tweak
Herpderp Defy.
Click to expand...
Click to collapse
the shutter volume changes with the system volume in the sound setting.
OR
u can rename/delet "Shutter_01.ogg" to get rid of the shutter sound
but i cannot find the focus lock sound, that must b with Camera.apk or something...
Related
Hello to all
Too many people don't have enough posts to post on my rom's thread.
So i decided to created a new thread in general!
Here you can post your problems or ask something you dont understand for the flashing process etc.
Will be posted flashing info and known flashing problems here soon.
So feel free to post your question, or report a bug!
1. How to flash Kyrillos' rom?
- Instructions: Here
2. I just flashed Kyrillos' rom and after flashing the phone bootloops (it plays the same boot sound again and again).
- You havent done a Wipe data/factory reset in Recovery mode. Remove the battery & re-insert it, go into recovery mode (Vol up + Vol down + home + power), and select the Wipe data/factory reset option. Click yes, and reboot.
3. The phone booted but my sd partition isnt working. What should i do?
- Firstly you have to ensure that you put the Hybrid Data2SD files in your sdcard. They are contained in v8.0 rom you downloaded. You can also download them from here. You must put the four files (data2sd.dirs, fs.data2sd, multiosdata, multiosdata.cache) in /sdcard/Android/data/G3mod/*. Then reboot your phone and your partition should work.
4. I partitioned my sdcard but i dont see the free sdcard (a2sd) space in Titanium Backup.
- Hybrid Data2SD doesnt show up in Titanium Backup. Its normal Fixed
5. After restoring my backup with Titanium Backup, i dont see all my apps in Android Market.
- Go in Titanium Backup, find Android Market and wipe Android Market's data. Reboot your phone, and it should be ok.
6. I have too much lag!
- Make sure that you dont have more than 50 User Apps installed in your phone.
- Go in titanium and do a batch operation: Move all apps to internal memory
- If you have a linux-swap partition in your sdcard, delete it.
- Go in Settings/Sound and disable all Feedback sounds (leave the haptic feedback checked if you want )
7. I have battery drain issue.
- Let the battery calibrate itself and after 3-4 days recheck if the problem remains.
- If your problem isn't fixed and you have installed the Overclocked version, install Setcpu and change the governor to OnDemand or Conservative. You can try to Undervolt/Underclock the cpu too. You should make a screen off profile (83min - 400max) too.
- If SetCPU is not used, in OC version, CPU frequency is at stable 800MHz, on performance, so there MUST be a battery draining^^
So, SetCPU is absolute nesassary to be installed and set up. Best working governour is ondemand, if it laggs, drop up threshold in advanced to lower level.
8. What are the best settings for setcpu? [Updated 25/10/11]
- Main tab: Min 83Mhz, Max 800-1200MHz, Scaling: Ondemand (or Conservative), Set on boot: Tick
- Profiles tab: Set on boot: tick
- Profile (1): In call: 83min, 400max, Scaling: Ondemand, Priority:100
- Profile (2): Time profile: 1AM - 7AM (here put the time you sleep), min/max 83MHz, Scaling: Powersave, Priority: 99
- Profile (3): Screen off: 83min, 400max, Scaling: Ondemand, Priority:98
- Voltages: Try -100mV in all frequencies from 500-1200. If it hangs, try -75mV/-50mV, apply, set on boot: tick
9. How to enable v6 supercharger?
- Go in Terminal Emulator, type "su" hit [enter] (you may see a superuser popup, press "Allow", then type "v6_supercharger" hit [enter]
- Choose scrolling speed "2".
- It will ask you if you want intergration with init.rc, choose yes (press Y).
- It will ask you if the home is locked in memory, choose no (Press whatever you want except Y)
- When you see this: Please enter option 1-30, enter 2
- Let the rest of the text scroll through. When script finishes, press the home button, then press the power button and reboot the phone.
- For best results, go in recovery and wipe dalvik-cache and cache.
Note: You must re-enabled v6_supercharger after kyrillos' rom updates!
10. I have a partition in my sdcard and each time i try to install an app from market, the phone just reboots!
- This could be a corrupted filesystem problem. Make a backup d repartition your sd.
- Wipe data/factory reset.
11. I really miss some removed apps. Where can i find them & how to install them?
- You can find any app you want in this thread [By Dharam]
- To install an app, you must put it in /system/app/. There are many ways to do that.
- a) Copy the app you want to install in your sdcard. Use an app, which called root explorer. Open it, find the app you want, copy it, navigate to /system/app/, press the Mount R/W button on the top-right of your screen once, the click paste. Reboot your phone.
- b) You must know how to use adb. adb push appname.apk /system/app/
12. Kies isn't working.
- I highly recommend you to stop using Kies and start using Titanium Backup!
- Anyway, to get it working you must download this and this app and put it in /system/app/
13. How much left data space is normal to have after i install Kyrillos' rom?
- If you dont have partition in your sdcard: ~112MB
- If you have partition in your sdcard: ~150+MB
14. Gps isn't working.
- The gps in our phone isnt the best. I did try to make it better and for many users i did succeed.
15. I have partition in my sdcard but internal storage is still 200MB instead of eg. 1200MB (if partition => 1GB)
- Its normal. Your partition works as it should, but its not full data2sd, and thats the reason that it doesnt show 1200MB.
16. One of my apps cant start because it detects that i have adblock on my phone.
- Download Adfree Android from Android Market, open it and click "Revert"
17. When i sent messages in Arabic it displays ??? ? ? ???? ??? ???
- Go in messaging settings => Input Mode: and change it to Automatic or Unicode
18. I want to set an mp3 file as ringtone or notification sound. What should i do?
- Make a "media" folder in your sdcard. Inside it make an "audio" folder and then make a "ringtones" or "notifications" folder and place the mp3. Reboot and select it from settings
19. The order of the messages is fu**ed up. How to fix it?
- Go to Settings => Date and Time. Untick "Automatic" and et the correct Time Zone!
20. Sometimes i see squares instead of letters.
- It happens because the Ubuntu font. Download android fonts from v9.0_extras if you cant live with it
21. What about themes? How can i know if a theme is compatible with kyrillos rom?
- Firstly, you have to check it it supports nine lockscreen. (If it doesnt, contact the developer of the theme and ask him to enable his theme 9 lockscreen support)
- You can replace any if the theme files EXCEPT: Settings.apk, android.policy.jar, framework.jar, services.jar. If you do replace any if those, your phone will bootloop.
- Enjoy the theme
22. What is Chainfire3D? How to configure it? (Use version v2.8)
- Info: Chainfire3D is an intermediary OpenGL driver. What does that mean? It means that Chainfire3D sits between your apps and the graphics drivers, and can intercept and/or change commands between the two. It has some built-in functions, and can be further extended with plugins to provide extra functionality. (More info: http://forum.xda-developers.com/showthread.php?t=1087427)
- With Kyrillos' rom v9 + Chainfire3D you can play some 3d games, or play some games better than before & without white textures.
- Chainfire3D installation: Ensure that you have Kyrillos' rom v9 OC. Download Chainfire3D Free or Chainfire3D Pro, run it, accept the su permissions. Press "CF3D driver", and then press "Install". The phone will reboot in a few seconds/minutes.
- Plugin installation: When it boots up, download the plugins (search for Chainfire3D plugins on google. Plugins: libGLEMU_NVIDIA.so, libGLEMU_POWERVR.so, libGLEMU_QUALCOMM.so), put the in your sdcard and open the app. Press "Install Plugins and Shaders". The app will search your phone to see if there is any plugin available in your sd. Install all the three plugins. Go back to the main app menu.
- Configure Chainfire3D: In the main app menu, press "Default OpelGL settings". Select the option "Reduce texture quality", and then choose plugin by pressing "Use plugin". There are 3 choices: Powervr, Qualcomm & Nvidia.
- Test the plugins: Select the "Powervr" plugin and run the game you want. Run it for a minute. Then close the game and change the plugin to "Qualcomm" and run the game for a minute. Compare which plugin worked best (if it worked) and enjoy the game. Note: Nvidia games require Nvidia plugin.
23. Most of the apps are being installed in sdcard instead of internal/partition. How can i change the default app install location to internal?
- Open terminal amulator
- Type:
su (enter)
pm setInstallLocation 1 (enter)
- Done [Info: 0 (Auto), 1 (Internal), 2 (External). You can see the current state by typing "pm getInstallLocation".]
24. How to convert my sdext partition from ext3 to ext4?
- Download KMapp from here: http://forum.xda-developers.com/showthread.php?t=1301697
- Install it and run it. Accept the superuser permissions and press the menu button. Select "Filesystem Conversion". Scroll down and select Sdext => ext4 and click "Convert".
25. What is Mobile Tracker and how to set it up? (Highly recommended // Enabled it in case you lose your phone) (for Kyrillos rom v9.4+)
- The Samsung Galaxy 3 comes with a mobile tracker software by default which is not activated, as you need to register your phone and account with the Samsung online website. Only then the option works and your phone goes more safer, as the Mobile tracker is one of the best options to use when your phone is stolen or lost.
The Samsung Dive mobile tracker is something that helps you remotely work on your phone when it is stolen. The online website of its helps you in remotely swiping the phone and delete delete your private data. Though this service is not available in India, a few features of its work, like prompt SMS sending when the phone is used with any new SIM than that which was used to register with the mobile tracker. The app also helps in getting the location information of the phone.
- How to set it up (source):
α. Go to Applications => Settings section in the phone. Select Location and Security tab in it.
β. Scroll down in the menu in Location and Security, and you will see a section for Mobile tracker. Here you need to hit the “Set Mobile Tracker” option which will set the mobile tracker recipient and control the remote phone that is activated. It will take you through the process of registration and set-up of the mobile tracker.
γ. The first thing you need to set is the mobile tracker password which would be asked to you or anyone who changes the SIM in the phone. It has to be of 8 digits and all numeric characters in it. You need to remember this password for always, as it can get your phone locked if you forget it and type the wrong password multiple times.
δ. After you set the password, you need to add recipients to whom the phone sends an SMS from the new SIM to notify/alert them about the changes made in the phone.
ε. Set the information of the sender, i.e. the Sender name and the message to be sent to the recipient. And then agree to the terms.
στ. Login through your Samsung account, and if you have not registered to it, you can do that for free online by registering the product. And then you would be directed to the mobile tracker settings where you can change any recipient or make changes in the samsung account.
ζ. After everything is setup, go back to the Settings section, and into the Location and Security section. There you have to check the “Mobile Tracker” option, so that it is activated.
Note: If at all you have reset your phone through the factory reset option, all the information in the Mobile tracker is lost. You need to set it all over again.
- Now if you lose your phone or somebody stole it, you can track it and/or lock it and/or wipe all your private data in SamsungDive.
Copyright 2011© All Rights Reserved, Kyrillos13
Reserved for future use
Reserved for future use xD
I flashed your version of ROM directly from DDJP2 with the hope that camera bug would go,and the facebook touchsite would open. But even your rom has the same thing. So i changed to the european version new release XWJPF. And its pretty stable an i can bet its boots alot faster than any of the custom rom or even offcial ROM.
Anyway is there any solution.
1)The camera bug. YOu cant click a photo unless you get a fix on location or disable the location settings.
2)Facebook touchsite wont open like it use to open in eclair. DDJP6. And when you open facebook it shows GT-I5510.
Please fix this.
ayancold said:
I flashed your version of ROM directly from DDJP2 with the hope that camera bug would go,and the facebook touchsite would open. But even your rom has the same thing. So i changed to the european version new release XWJPF. And its pretty stable an i can bet its boots alot faster than any of the custom rom or even offcial ROM.
Anyway is there any solution.
1)The camera bug. YOu cant click a photo unless you get a fix on location or disable the location settings.
2)Facebook touchsite wont open like it use to open in eclair. DDJP6. And when you open facebook it shows GT-I5510.
Please fix this.
Click to expand...
Click to collapse
I use facebook touch without problem What problem do you face?
Does swap makes a diffrence in perfomance?How about sd'd life is it decreased from the constant read-write?
mpbm23 said:
Does swap makes a diffrence in perfomance?How about sd'd life is it decreased from the constant read-write?
Click to expand...
Click to collapse
Linux-Swap
What is SWAP?
Swap space is an auxiliary storage, such as a portion of a hard-disk, which can be used as memory by the operating system when system RAM is insufficient. This is especially useful on systems with very little system RAM, such as most DD-WRT compatible routers, as it helps prevent the system from running out of memory when multiple background processes are installed.
Swap is rarely used, and if you have a high class sd you may see more responsive phone.
kyrillos13 said:
Linux-Swap
What is SWAP?
Swap space is an auxiliary storage, such as a portion of a hard-disk, which can be used as memory by the operating system when system RAM is insufficient. This is especially useful on systems with very little system RAM, such as most DD-WRT compatible routers, as it helps prevent the system from running out of memory when multiple background processes are installed.
Swap is rarely used, and if you have a high class sd you may see more responsive phone.
Click to expand...
Click to collapse
So in a class 2 SD swap should not be used.
But a class 4 is OK, isn't it?
thx for this thread. Reading for a long time, but i never made a post, because its not possible on the other thread.
Using the non OC 4.1, b/c i had freezes with the OC version. But the normal version is ok for me.
@kyrillos
I tried every rom available here and yours by far the best. thx for the great work
GalaxyDrei said:
But a class 4 is OK, isn't it?
Click to expand...
Click to collapse
Yeah
andro456654 said:
thx for this thread. Reading for a long time, but i never made a post, because its not possible on the other thread.
Using the non OC 4.1, b/c i had freezes with the OC version. But the normal version is ok for me.
@kyrillos
I tried every rom available here and yours by far the best. thx for the great work
Click to expand...
Click to collapse
Thanks
clarkkov said:
The "gt 5510" issue is Facebook's problem, not Kyrillos's or Samsungs problem. This does not affect anything, other phones are detected falsely, too. Facebook divided phones to groups and the most ubiquotous phone is shown. This only serves for offering you the correct version of Facebook app. This is a non issue.
I never saw "the camera bug", is this present only in India?
Sent from outer space!
Click to expand...
Click to collapse
I dont know whether this camera bug is present only in india or not but...my question is is there any solution for it????
kyrillos13 said:
I use facebook touch without problem What problem do you face?
Click to expand...
Click to collapse
i mean when ever i open facebook touch site the mobile site opens. And is there any solution for the camera bug???
Every time i click a photo i have to wait for a lock or have to disable the location.
My camera was working perfect on Stock eclair DDJG6. But after upgraing i am having this prblm. My camera is working perfect but if the location is enabled and if i dont have lock on my position my camera would force close if a click a photo. But if its turned off it works flawlessly. And in FROYO their isnt any option for turning off Geo-tagging.
And when i flashed kyrillos 4.1 i ddnt do any partition or anything i directly flashed it over DDJP2 by wiping cache. And i ddnt understand the procedure of the partitioning properly. I liked the ROM though.
Do you have any solution for this prblem..or a most stable ROM that doesnt have any prblm.
DDJG6>DDJP2>Kyrillos 4.1>XWJPF
tnx for thread.
I have v4.1 and i had some probs. 1st when using CoPilot and GPS. Phone was just turn off, and that happend 4 times :S. 2nd: Day before yesterday, phone just turned it self off, and i couldnt turn it on.
Everything else is OK, I have OC version and its great!
Also, can you put battery change by 1% in new version?
TNX
cickova
GPS problem flashing from Lestat 1.8 >> Kyrillos 4.1 fixed
Kryrillos,
Thanks for all these roms
Curruntly using 4.1 ultimate non OC.
4.1 OC just sometimes freezes even at 667 mhz.
Tried Lestat 1.8 alpha 14 is was very slow with reading sd card and also the phone reacts slow.
So decide to flash back to Kyrillos 4.1 non oc.
Everything works only GPS fix was not working.
After wipe cache / factory reset.
It is oke, gps fix in 30 sec or less.
can you do something about flash and 3d driver for next version ?
clarkkov said:
Facebook mobile site is supposed to open if you access Facebook trough browser. Facebook redirects you to the most appropriate version of the site for your device/browser. If you want the Facebook Touch experience, download the Facebook app - called Facebook Touch.
Sent from outer space!
Click to expand...
Click to collapse
I have tried using facebook touch app but it redirects me to the mobile site i dont know why. Even on the official India Update DDJP2. And what about the camera bug?
Sometimes when the phone comes out of flight mode when i try to open wlan ,it does not work and a error comes in the settings.
red02498 said:
can you do something about flash and 3d driver for next version ?
Click to expand...
Click to collapse
No flash, 2D and 3D graphics increased in v5.0
this is a work-in-progress development project for porting CyanogenMod 9 (ICS/4.0.4) and ClockworkMod Recovery 5 to Amlogic AML8726-M tablets.
this is not perfect at all. and I'm very busy. progress will be very very slow. I may not be able to answer your question/request. if you have some idea for improvement, please do it freely.
there is no support from any makers/vendors. you must agree all risks by installing non-supported files, it may brick your tablet, and you may lose official support/warranty.
* YOU MUST READ CAREFULLY POST#1, #2, AND #3!
* DO NOT USE IF YOUR TABLET IS NOT LISTED BELOW. IT WILL BRICK YOUR TABLET!
* project page
http://androtab.info/cyanogenmod/amlogic/
* supported tablets
ainol NOVO8 Advanced
Digma iDx7 (a.k.a. WayteQ xPAD-70)
Digma iDx10/iDx10 3G
* CM9 current status (2012/4/12)
not work:
3G, camera, and many things which you expect to work
work:
3D, accelerometer, audio, gapps, hardware accelerated video, HDMI, internal NAND flash, remote controller, SD card, touchscreen, USB host/device, vibrator, wlan
* changelog
refer git log
* resources
http://www.cyanogenmod.com/ (What is CyanogenMod?)
http://source.android.com/source/
http://wiki.cyanogenmod.com/index.php?title=Building_from_source
http://goo-inside.me/gapps (Google Apps)
http://review.cyanogenmod.com/#q,status:merged,n,z (CyanogenMod merged changes)
https://github.com/naobsd/cm_bootable_recovery/compare/ics...ics-naobsd (placeholder to cherry-pick changes)
https://github.com/naobsd/cm_external_e2fsprogs/compare/ics...ics-naobsd (placeholder to cherry-pick changes)
https://github.com/naobsd/cm_system_core/compare/ics...ics-naobsd (placeholder to cherry-pick changes)
https://github.com/naobsd/cm_device_amlogic_aml8726m
* links
http://www.chinadigitalcomm.com/ainol-mid-f105/source-code-ainol-novo8-android-t10767.html
http://forum.xda-developers.com/showthread.php?t=1478734 (psquare's CM7/9 for NOVO8 Advanced)
http://ct704ct1002.forumgratuit.org/t711-cyanogen-9-sur-ct704-et-ct1002 (users' forum for CT704/1002)
* How to boot ClockworkMod Recovery 5
1. download recovery.zip and unzip it
2. put aml_autoscript and uImage_cwm on root of SD card
3. insert SD card
4. power on
you can flash uImage_cwm directly into recovery partition. then, you can boot recovery with VOL+ + POWER.
ClockworkMod Recovery 5 can't install official update.zip. if you want to reinstall official ROM, use uImage_recovery in official ROM.
* How to control ClockworkMod Recovery 5
for ainol NOVO8 Advanced
VOL-/jogball down: down, VOL+/jogball up: up, POWER/jogball push: select, SEARCH/BACK: back
* How to install CyanogenMod 9
1. download update.zip and put it on internal NAND flash or SD card (don't unzip it)
2. reboot recovery
3. install update.zip
4. wipe data/factory reset *1
5. reboot
*1 only if you are upgrading from non-CM9 ROM (CM9 1st install)
* issues
- mic input(audio record) doesn't work.
- accelerometer orientation on Digma iDx7 is wrong. please disable it for now.
- scaling and rotating are not worked for hardware accelerated video. video is always displayed as fullscreen and landscape. please use media player which has fullscreen mode (no UI parts).
- to use USB mass storage mode, /sdcard needs to be mounted. i.e. SD card need to be inserted, or, internal NAND flash need to be mounted on /sdcard (by Settings -> Storage -> Storage configuration -> Use internal storage).
- TS calibration is missing. resistive touch screen will not work.
* random notes
- external SD card and internal NAND flash
on CWM, external SD card is mounted on /sdcard. internal NAND flash is mounted on /emmc and referred as "internal SD card".
on CM9, external SD card is mounted on /mnt/sdcard. internal NAND flash is mounted on /mnt/nand.
- ubifs
no ubifs support for now. which is better, yaffs2 or ubifs?
ubifs should be supported if clockworkdmod is used as backup tool for official rom.
- rootfs
currently ramdisk in kernel is used as rootfs. modifying kernel by hand is not so smart.
should try to make initrd separately and pass it via bootm 2nd arg.
- reboot
reboot doesn't work. if power is connected, reboot will work, but power off also act as reboot
reboot recovery/bootloader doesn't work at all. use VOL+ while power on.
- memsicd
is running to use accelerometer (and magnetic field sensor). it also tweak axes by ro.sf.hwrotation and ro.sf.gsensorposition.
- magnetic field sensor
is detected but not worked/not existed. magnetic field aware apps may not work correctly.
hi
hello
works great.
You are really great.
your work with the de novo 8 will be finally a good tablet.
sorry I do not speak English
good luck
Thank you very much from France for your work !!!
I will try this version as soon as possible.
Bye.
First of all: Thank you! It looks great! ;
But, the "- no ubifs support" means I can't mount sd-card or connect internal memory to pc?
I tried, but it not works...
Thanks again!
bigdee888 said:
I can't mount sd-card or connect internal memory to pc?
I tried, but it not works...
Click to expand...
Click to collapse
thank you confirming "not work" things.
for ubifs, please learn about it. this project/thread is for developers.
smeexx said:
your work with the de novo 8 will be finally a good tablet.
Click to expand...
Click to collapse
I can't promise my CM7 port will be good for you. I'll do what I can do, but I can't do what you want.
thank you for your cooperation!
from my personal experience, probably some non-dev people will start to complain "XXX is not working! I need it! please support it asap!". and, 1 month after, "XXX is still not working! terrible! tell me current status of your work!".
this is development project. my files are just for dev people, and non-dev people who know dev work is really difficult or need a lot of time.
my git repo are pushed to github. anyone who can build android/cyanogenmod can build my CM7 for novo8 with it. (how to build is around here and there. don't ask here)
about me(currently only 1 dev here), I'll work for this project only on my free time. I don't have enough time as usual. nothing may be changed within a month. don't ask ETA even if I say "I'll do it soon".
as a fact, on my another project, some people waited some months to get working accelerometer.
test report is always welcome from everyone. but don't expect that issues/missing featues will be fixed if you can't fix yourself without effort.
if you don't like my CM7, please use another one. I never say my CM7 is best, I don't force people to use my CM7.
I'm looking ZT-280 gingerbread (it seems CM) rom. I think something can be used for us. e.g. they have latest mali modules
there is also Gadmei T720 (probably froyo) rom posted on www.chinadigitalcomm.com. I'll check it too.
if you know another rom for other AML8726-M based tablets, please tell me.
USB device function, mount from PC, seems to be working.
USB host function is also working.
paths in vold.fstab are wrong so SD card and USB disk can't be accessed in CM. I'll fix it in next image.
HDMI output can be enabled via set_display_mode.sh command. it may need to connect HDMI cable before booting. screen is not scaled. 720p is shifted, probably set_display_mode.sh need to be tweaked.
I need to check how it works on stock rom.
Its really great to see that some initial work is being done for that niche-tablet with great hardware potential.
I really can't await for the first working GB rom on the novo 8.
@fun_ As you mentioned yourself to have less time to work on the rom, would it be possible to share the source? As it might be a good base for other people to help improving your work.
Cheers
Toshimitsu said:
I really can't await for the first working GB rom on the novo 8.
Click to expand...
Click to collapse
"waiting" doesn't help this project at all. why you didn't try 1st?
Toshimitsu said:
@fun_ As you mentioned yourself to have less time to work on the rom, would it be possible to share the source? As it might be a good base for other people to help improving your work.
Click to expand...
Click to collapse
really soon unless no one prevent me by posting worthless question.
(for me, soon is one of which, within a day, within a week, within a month, within a year, or never happen)
--
I forgot to write (and did it just now) "don't ask ETA" on post#9.
HDMI output is tweaked. remote controller is working properly now.
20111023 files are uploaded.
repos are pushed to github. see OP. some tips should be added (will do later).
20111024 uploaded (replaced few hours ago)
fix small graphics issue
You are really cool man. Nice job.
Excellent development, Mr. fun_!
I plan to do a write up in my blog about this. As for your questions about Zenithink ZT280 of different form-factors, it's unclear whether they based on Android 2.3 or -- most probably for me, at least -- on Android 2.2.
Together with Ainol Novo 8 and Gadmei T820 there's another device looking like an Ainol's rebrand: Aigo M801.
Can anyone with this build make some screenshots, or better video clips and post them (link) here? Of interest are:
-- 2D (GUI rendering/video decoding and rendering) hardware acceleration/performance, preferably with some comparison to stock A2.2;
-- overal agility of the build, maybe some benchmarks;
-- what doesn't work at this point?
Thank you! Can't wait to publish this Mr fun_'s great breakthrough for my readers in English, Russian, Japanese.
aludal said:
I plan to do a write up in my blog about this. As for your questions about Zenithink ZT280 of different form-factors, it's unclear whether they based on Android 2.3 or -- most probably for me, at least -- on Android 2.2.
Click to expand...
Click to collapse
as I wrote Zenithink released 2.3 rom. and I found Pandigital Nova has 2.3.
aludal said:
Together with Ainol Novo 8 and Gadmei T820 there's another device looking like an Ainol's rebrand: Aigo M801.
Click to expand...
Click to collapse
I got my novo8 few weeks ago, until then I didn't care any amlogic tablets at all. I need more time to learn about them
aludal said:
Can anyone with this build make some screenshots, or better video clips and post them (link) here? Of interest are:
-- 2D (GUI rendering/video decoding and rendering) hardware acceleration/performance, preferably with some comparison to stock A2.2;
Click to expand...
Click to collapse
I think 2D is not so fast due to screen size. hardware video decoding doesn't work. I didn't use stock rom well (only few days). I need to reinstall stock rom to check some things.
aludal said:
-- overal agility of the build, maybe some benchmarks;
Click to expand...
Click to collapse
I'm not sure benchmark is meaningful at this stage. anyway, I'll post 0xbench result soon.
(but some 2D/3D score may not be reliable because it reaches limit(refresh rate) easily on 0xbench)
is there any other good benchmark app? I don't like Quadrant.
http://www.glbenchmark.com/ looks nice but I need to register to get result.
i/o may be slow. I feel lags e.g. while installing app.
aludal said:
-- what doesn't work at this point?
Click to expand...
Click to collapse
I'm not sure what/how works on stock yet "work" things are listed on OP.
please write review freely, but I don't think my CM7 port is excellent further development is needed to get excellent one. I can't promise I can do it.
thank you for your cooperation!
fun_ said:
as I wrote Zenithink released 2.3 rom. and I found Pandigital Nova has 2.3.
yes, I looked up these devices myself (was actually watching Nova since August), and then there's at least 3 models of Zenithink 280.
I got my novo8 few weeks ago, until then I didn't care any amlogic tablets at all. I need more time to learn about them
Hah! I admire your speed, Sir. CM7 Team must get you as their "official" developer ASAP. (In fact, I have a vested interest in that: I run CM7 on my Nook Color since last winter, and if you ask me, they stuck on hardware acceleration for Nook)
I think 2D is not so fast due to screen size. hardware video decoding doesn't work. I didn't use stock rom well (only few days). I need to reinstall stock rom to check some things.
Screen size/pixel count, or resolution has no effect on 2D HW accelerated rendering as long as Mali400 MP's limit on pixel count is not broken. 1280x768 is well within that limit. Hardware video decoding worked quite well in stock (A2.2) for 1080p/720p quite high bitrates, so please don't lose it, LOL.
I'm not sure benchmark is meaningful at this stage. anyway, I'll post 0xbench result soon.
(but some 2D/3D score may not be reliable because it reaches limit(refresh rate) easily on 0xbench)
is there any other good benchmark app? I don't like Quadrant.
Nobody likes Quadrant. It's the Quadrant of A2.2 vs. Quadrant of CM7 that matters, on the same Ainol Novo
http://www.glbenchmark.com/ looks nice but I need to register to get result.
i/o may be slow. I feel lags e.g. while installing app.
That would be an overkill, sir.http://media.xda-developers.com/images/smilies/tongue.gif. Usual Neocore, Nenamark scores will be fine.
I'm not sure what/how works on stock yet "work" things are listed on OP.
please write review freely, but I don't think my CM7 port is excellent further development is needed to get excellent one. I can't promise I can do it.
You achieved a TON already, during last 2-3 days. Question is, can you do ALSA/Open GL ES/NEON/stagefright work at least no worse than in stock A.2.2? Original/stock FW coders struggle with it since this April and stay at A2.2 still. Yet Nova has it, but the quality of HW support is questionable.
thank you for your cooperation!
Click to expand...
Click to collapse
I will do whatever I can in support of this development. Meanwhile, you're welcome to comment on my write-up in fineoils.blogspot.com
aludal said:
I will do whatever I can in support of this development. Meanwhile, you're welcome to comment on my write-up in fineoils.blogspot.com
Click to expand...
Click to collapse
yup. at least I need to comment about motoya font
Most of you might be very much familiar with the rooting procedure. Its the process of giving yourself superuser permissions (ex - administrator in windows xp ).
If you are using a custom rom, then there is no need to specifically root your phone. But if you are using stock roms, then there is a guide to root in the forums.
Once rooted, you can now take your own decisions for your device which include improving system performance or flashing custom roms using cwm recovery or using any of these below listed apps. Use it wisely, as playing with your device performance can have damaging effects.
I AM NOT AT ALL RESPONSIBLE FOR ANY DAMAGE DONE TO YOUR DEVICE BY YOU.
Moving on, many of the rooted-on-stock and custom rom users might already know most of these apps and their uses, so this thread is for the beginners who have just rooted their devices.
Further, most of these apps are available in the playstore (mostly paid, but if you want the cracked versions, you can find them in the internet.
So here are some of the apps that might be useful for you. I will also update this apps list as soon as, I find more useful apps.
SPECIAL THANKS TO Android_United
Original Thread:Link
HIT THANKS IF YOU LIKE THIS THREAD.
TITANIUM BACKUP ROOT
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Description
EXTREMELY powerful tool. Backup ALL apps, Market links, remove bloatware & MORE!
☆Needs ROOT, Android 1.5-4.1+ (ARM,x86,MIPS)
☆Over 6.5 million users, 29+ languages.
☆PRO Key is available on Play Store!
☆Voted #1 TOP ROOT APP on Twitter.
☆Problem? See titaniumtrack.com/kb
☆Scroll down for more info & DEMO VIDEOS
☆ ☆ ☆
Titanium Backup is the most powerful backup tool on Android, and then some.
You can backup, restore, freeze (with Pro) your apps + data + Market links. This includes all protected apps & system apps, plus external data on your SD card. You can do 0-click batch & scheduled backups. Backups will operate without closing any apps (with Pro). You can move any app (or app data) to/from the SD card. You can browse any app's data and even query the Market to see detailed information about the app.
Also see the paid PRO key which adds EVEN MORE awesome features such as:
[✔] 0-click batch restores
[✔] Keep multiple backups per app
[✔] Backup/restore SMS,MMS,calls,bookmarks,Wi-Fi AP as XML
[✔] Multi-user app data
[✔] Apps freezer
[✔] Sync to/from Dropbox (manual/scheduled)
[✔] Sync to/from Box (manual/scheduled)
[✔] Sync to/from Google Drive (manual/scheduled)
[✔] Convert user apps <=> system apps
[✔] Integrate system app updates into ROM
[✔] Encryption
[✔] Market Doctor (relink apps to Market)
[✔] "Destroy all Market links" feature
[✔] Hypershell speed
[✔] Backup apps without closing them!
[✔] Restore individual apps+data from non-root ADB backups!
[✔] Restore individual apps+data from CWM backups!
[✔] Restore individual apps+data from TWRP backups!
[✔] Market "auto updating" manager
[✔] Dalvik cache cleaner
[✔] Integrate Dalvik cache system elements into ROM
[✔] Unlimited schedules
[✔] Load/Save a Filter and use it in Widgets/Schedules
[✔] Change the device's Android ID, restore it from a backup or after a factory reset
[✔] Protect backup against deletion
[✔] Send backup (to e-mail/cloud) and import it in 1 click
[✔] Backup→Verify→Un-install an app in one shot
[✔] Freeze/defrost/launch apps in a single click
[✔] CSV export any app DB (e-mail or Google Docs)
[✔] Convert app data to/from fast WAL format
[✔] WAY MORE!
Check out this in-depth review of TB PRO:
http://youtube.com/watch?v=vuvDTS9RDrM&hd=1
And check out the new TB PRO demo video:
http://youtube.com/watch?v=YU33zabluSY&hd=1
More info on permissions:
• "Internet" is used to access Market,Dropbox,ChangeLog.
• "Accounts" is used to access Market.
Some advice:
• We recommend to avoid "modified" TB versions because they can cause various problems down the road.
ROOT EXPLORER (File Manager)
Description
Root Explorer is the ultimate file manager for root users. Access the whole of android's file system (including the elusive data folder!).
Features include SQLite database viewer, Text Editor, create and extract zip or tar/gzip files, extract rar archives, multi-select, execute scripts, search, remount, permissions, bookmarks, send files (via email, bluetooth etc), image thumbnails, APK binary XML viewer, change file owner/group, create symbolic link, "Open With" facility, MD5, create shortcuts.
For fast, friendly support simply email us: [email protected]
We will always try to help with any problem you may have with the app. If we can't help then you can have a refund, no questions asked.
Although 14,000+ five star ratings will tell you that most people are very satisfied customers. Make sure you read as many comments as possible to get a good idea of what most people think of the app.
We still respect the old 24 hour refund policy. So if you're not happy with the app just email us within 24 hours and you can have a refund. We'll need to know the order number, which you can find on the emails sent to you by Google when you downloaded.
Why compromise? Get the original and the best!
[root] MOBILE ODIN PRO
Description
Mobile ODIN - Full firmware flashing straight from the device itself!
Mobile ODIN is the on-device firmware flasher of choice. Just throw those firmware files on your (internal or external) SD card, start Mobile ODIN and flash away.
! Your device must be rooted to be able to use Mobile ODIN. Check the list below to see if your device is supported !
If you use the EverRoot option, Mobile ODIN will root the firmware while you flash it. Checking out that new leaked firmware? No reason to lose root!
Currently supported devices:
- Samsung Galaxy S GT-I9000/B/M
- Samsung Galaxy S GT-I9003/L
- AT&T/Rogers Captivate SGH-I896/I897
- Samsung Galaxy S2 GT-I9100/T/G/m
- Samsung Galaxy S2 SHW-M250S/K
- Samsung Galaxy S2 SC-02C
- AT&T Galaxy S2 SGH-I777
- Sprint Epic 4G Touch SPH-D710
- US Cellular Galaxy S2 SCH-R760
- Samsung Galaxy S3 GT-I9300/T
- Samsung Galaxy S3 GT-I9308
- AT&T/Canadia Galaxy S3 SGH-I747/M
- TMOUS Galaxy S3 SGH-T999
- Sprint Galaxy S3 SPH-L710
- VZW Galaxy S3 SCH-I535 (unlock bootloader !)
- US Cellular Galaxy S3 SCH-R530
- Samsung Galaxy S3 LTE SHV-E210S
- Samsung Galaxy S3 LTE GT-I9305
- Google Galaxy Nexus (GSM) Maguro/Yakju/GT-I9250
- Google Galaxy Nexus (CDMA/LTE) Toro/Mysid/SCH-I515 (no cdma radio flashing)
- Samsung Galaxy Note GT-N7000
- Samsung Galaxy Note GT-I9220
- Samsung Galaxy Note GT-N7000B
- Samsung Galaxy Note 2 GT-N7100
- Samsung Galaxy Note 2 LTE GT-N7105
- Samsung Galaxy Note 10.1" GT-N8000
- Samsung Galaxy Note 10.1" Wi-Fi GT-N8010/N8013
- Samsung Galaxy Tab 7" GT-P1000
- Samsung Galaxy Tab 7.0 Plus GT-P6200
- Samsung Galaxy Tab 7.0 Plus Wi-Fi GT-P6210
- Samsung Galaxy Tab 7.0 Plus GT-P6200L
- Samsung Galaxy Tab 7.7" GT-P6800
- Samsung Galaxy Tab 7.7" Wi-Fi GT-P6810
- Samsung Galaxy Tab 10.1" GT-P7500
- Samsung Galaxy Tab 10.1" Wi-Fi GT-P7510
- Samsung Galaxy Tab 2 7" GT-P3100
- Samsung Galaxy Tab 2 7" Wi-Fi GT-P3110/P3113
- Samsung Galaxy Tab 2 10" GT-P5100
- Samsung Galaxy Tab 2 10" Wi-Fi GT-P5110/P5113
- Samsung Galaxy 5 GT-I5500/B/L/T/M
- Samsung Galaxy 5 GT-I5503/T
- Samsung Galaxy 5 GT-I5508
Flashing with Mobile ODIN does NOT increase your custom kernel flash counter or make the yellow warning triangle appear.
For discussion and support: http://forum.xda-developers.com/showthread.php?t=1347899
- MANUAL -
Flashing with Mobile ODIN is easy. You start by starting the app and the app will check your system has everything it needs to continue (like root). It may need to download an additional package, so it is advised you have Wi-Fi available.
Now you should see the main Mobile ODIN screen. It will list a set of partitions. Clicking a partition will allow you to select a file from your SD card to flash to that partition. Do not worry about selecting the wrong file - Mobile ODIN will not let you. Separate files (named after the partition) as well as .tar and .tar.md5 files are supported.
From the desktop ODIN you may be used to "PDA", "PHONE", and "CSC" buttons. All three of these buttons have been replaced by the "Open file ..." button. This button will open the file you select from the SD card, and find all the partitions it can flash inside that file. So if you select a .tar file containing kernel and modem, the Kernel and Modem partitions will be set up to use that .tar file for flashing.
Now that we have selected what we want to flash, if you have the Pro version you can proceed to the EverRoot section. The EverRoot options allows you to root your firmware while it is being flashed. Never again will you be without root! Select here which apps you want to inject in the firmware that is being flashed.
Now that we are all done selecting partitions and configuring EverRoot, we continue to "Flash firmware". Mobile ODIN will gather all the information it needs and perform the flash. Before starting, however, it will check that your battery level is over 50%, and if applicable offer to verify MD5 checksums on the files you have selected to flash. If all is well, it will reboot into recovery mode, and flash the firmware you have selected.
ROM MANAGER
Description
Must have app for any root user. Make backups, flash ROMs, and own your device.
ROM Manager is THE MUST HAVE APP for any Android root user. (Over 3 million downloads and counting!)
* Flash your recovery to the latest and greatest ClockworkMod recovery.
* Manage your ROMs via a handy UI.
* Organize and perform backups and restores from within Android!
* Install ROMs from your SD card.
* Install your favorite ROMs over the air!
Premium Version:
* Premium ROMs
* Receive notifications for when your ROM is updated!
* Automatic backups
* Install from QR Code
* Web Connect
* Support
Do you prefer using only recovery manually? Check out the Touch Recovery in app purchase, for the most advanced recovery available!
Why does ROM Manager ask for account permissions?
Web Connect only needs to access your Google account to connect it to your google account. It can't access any private data or passwords.
Troubleshooting:
Droid users: Stuck at the "M" logo? Flash an alternate recovery and flash back to ClockworkMod.
HTC Users: Flash recovery not working? Try fastbooting a recovery on.
Droid X/2/Pro Users: You must run the Bootstrap application first to use ROM Manager.
Samsung users: You must flash a Clockwork compatible kernel first (see XDA forums)
IF YOU ARE HAVING LICENSE ISSUES, MAKE SURE YOU HAVE THE LATEST VERSION OF FREE (4.0+) AND THE LATEST LICENSE (1.0.7+) INSTALLED!
SETCPU for Root Users
Description
Supercharge your Android device with SetCPU. A must-have tool for root users.
SetCPU is a tool for changing the CPU settings on a rooted Android phone or tablet, including the Galaxy Nexus, HTC One series, Nexus S, Nexus One, Motorola Droid, Samsung Galaxy series, and most other devices. You're under control: SetCPU can improve your performance, save battery, or both!
Automate SetCPU with profiles! SetCPU allows you to set up powerful profiles to change your settings under certain conditions, such as what app is running, when the phone is asleep or charging, when the battery level drops below a certain point, when the phone's temperature is too high, or during certain times of day. See the screenshots for examples of how you might set up profiles.
SetCPU's wide feature set make it useful to Android beginners and enthusiasts alike. Accelerate your processor to unleash your phone's true multitasking potential, or dial your CPU's speed down to save battery.
SetCPU also includes a "voltage control" menu, available to certain devices with custom kernels that support it, to control undervolting to save even more battery. Keep in mind that undervolting is only available for certain kernels.
Recent Changes:
Additional permission: Read logs is used for efficient app condition checking. That is currently all it's used for.
3.0.0:
Profiles tab
- Completely rewrote profiles.
- Older profiles will automatically be converted into new profiles.
- Added app and day of week in addition to the older conditions, and more are coming.
- Profiles now support combining conditions under logical trees, with nestable "and," "or," and "not" operators available. It is now possible to easily build complex profiles that take the place of multiple profiles in the older version.
- Actions can now be selected individually.
- Profiles can now be marked as "non-exclusive," which means they will not block profiles with lower priorities from evaluating. In this case, the profiles with lower priorities will perform only actions which have not been performed by profiles with higher priorities. SetCPU will keep evaluating profiles until it reaches an "exclusive" profile that evaluates as true.
- All number selectors in profiles are now in the style of the frequency selector in the main tab.
- The new file extension for exported profile settings is ".setcpu.json."
- To prevent ambiguous situations, it's no longer possible to select priorities that have been used by other profiles.
- The CPU temperature sensor on OMAP4 and some other devices should now be supported for profiles. The option will appear if available.
- Notifications are now set as an action per profile and can now be non-persistent.
- SetCPU will still use the main screen as a "default profile" to set if no other profiles are active. It is now possible to specify an alternate default profile by creating an exclusive profile with no conditions at priority 0.
- SetCPU now asks for a file name before backing up profiles to storage.
- It is now possible to share profiles without having the internal/external storage mounted.
Main tab
- IO scheduler selection has been added via a drop down menu in the main tab.
Bugfixes
- Fixed a bug where the short benchmark always reported 0 ms.
- Fixed the labels in the pie graph in system info.
- Fixed some common crashes.
Permissions:
Root: SetCPU needs root permissions to modify the CPU speed and other settings.
Start at boot: SetCPU will start a profiles service at boot, if enabled. It also sets default boot settings, if enabled. SetCPU does not run in the background if profiles are not enabled, and becomes inactive after settings, if any, are applied.
Wake lock: This prevents the phone from sleeping while stress testing and benchmarking.
Write external storage: SetCPU needs to read from and write to the SD card or internal storage to back up profiles.
Read phone state: The "in call" condition needs this to determine if the user is making a phone call or not, and trigger the profile if the user wants to.
BUTTON SAVIOR (Root)
Description
Requires root for full function. Some keys can still work without root.
Top 1 Software key App on Android Market
Top 10 Must have app for root devices
Top 1 Must have app on HTC HD2
Top 1 Software key app with best customization features
Works from 1.5 to 4.0(ICS)
If you are afraid of breaking your hardware keys or you have broken keys or you simply just don't have any key on your device, get Button Savior to make your life easier.
This app will display a floating software key panel which can be summoned everywhere anytime. Button Savior 1.1.6 or later now suppports E-INK display with specially made themes provided by XDA member Berlinski.
For non root user: You can still use power off, Home, Camera, Call , and volume keys.
[Features]
☆ Simulates 'Home' 'Back' 'Search' 'Back' 'Recent Task' 'Screen Off' 'Volume'
☆ Can set to always open or auto hide based on user customizable timer
☆ Two types of trigger action to choose from (Gesture trigger and Click trigger)
☆ Added Camera key and Call key simulation
☆ Customizable trigger position
☆ Also provides themese to support e-ink display
☆ Can change it to one click mode for super fast button action in option
☆ Can create shortcut action such as call someone or go to bookmark on Call or Camera keys. (With PRO)
[Not Root?]
☆ Home key is supported
☆ Power key is supported
☆ Volume key is supported
☆ Camera key is supported
☆ Call key is supported
IF YOU HAVE PROBLEM GRANTING ROOT FOR THIS APP
If your device is rooted and still cannot use keys except home, please update su binary and superuser apk.
IF YOU ARE UNABLE TO UNINSTALL
You need to disable screen off feature first. To disable, go to setting/location secuirty/device admin to remove Button Savior from the list.
Theme contribution list:
(1) Default (XDA member stefen)
(2) Froyo (XDA member hlvl)
(3) Sense UI (XDA member internauta2000)
(4) Honeycomb (XDA member securecrt)
(5) Pen's Ginger (XDA member Pens and DreamS)
(6) Pen's Honeycomb (XDA member Pens and DreamS)
(7) Pen's Sense UI (XDA member Pens and DreamS)
(8) Contrast for E-INK (XDA member OMGWTF_BBQ aka BerlinSki)
(9) Metro for E-INK (XDA member OMGWTF_BBQ aka BerlinSki)
(10) Subtle for E-INK (XDA member OMGWTF_BBQ aka BerlinSki)
(11) K3 ICS (XDA member kam333)
(12) K3 Honeycomb (XDA member kam333)
[This app requires following permission because]
☆ GET TASK: Need to display recent app
☆ VIBRATE: For hepatic feedback
☆ INTERNET: For ads and for shortcut with internet action
☆ ACCESS NETWORK: For ads
☆ MAKE CALL: For direct dial shortcut
[root] CHAINFIRE3D
Description
Chainfire3D - Take control of your GPU (OpenGL) !
Take control over your GPU!
Chainfire3D is an intermediary OpenGL driver. What does that mean? It means that Chainfire3D sits between your apps and the graphics drivers, and can intercept and/or change commands between the two. It has some built-in functions, and can be further extended with plugins to provide extra functionality.
!! For Froyo and Gingerbread ONLY. NOT COMPATIBLE with Honeycomb/Ice Cream Sandwich/Jelly Bean !!
!! Chainfire3D is for 1ghz+ devices only !!
!! ROOT is required for this program, as well as a writable /system partition. S-OFF is also required on HTC devices !!
Features include reducing texture size and quality to reduce memory use and potentially increase game performance, as well as increasing memory use potentially increase performance.
If you also install the (experimental) EGL driver, AND your GPU supports it, AND you have the Pro version, you can enable 4xMSAA or 16xMSAA on a per-app bases. This can drastically improve image quality!
Be sure to check the thread on XDA for available plugins !
( http://forum.xda-developers.com/showthread.php?t=1087427 )
Chainfire3D has been tested on:
- HTC HD2
- Samsung Galaxy S
- Samsung Galaxy Tab 7"
- Samsung Galaxy S II
- Samsung Galaxy Note
- Samsung Epic 4G
- Motorola Atrix 4G
- Motorola Droid 2
- LG Optimus 2X
- Google Nexus S
Many users are running Chainfire3D on devices not listed here - it's likely to work on all modern devices. So far nobody has reported a failed install, so that's good. Doesn't mean problems can't happen.
!! There is some risk involved installing the driver. Your device may not boot. If you have CWM, it would be prudent to create a backup before installing !!
SUPER SU
Description
SuperSU is the Superuser access management tool of the future
!!! SuperSU requires a rooted device !!!
SuperSU allows for advanced management of Superuser access rights for all the apps on your device that need root. SuperSU has been built from the ground up to counter a number of problems with other Superuser access management tools.
Features include:
- Superuser access prompt
- Superuser access logging
- Superuser access notifications
- Per-app notification configuration
- Temporary unroot
- Deep process detection (no more unknowns)
- Works in recovery (no more segfaulting)
- Works when Android isn't properly booted
- Works with non-standard shell locations
- Trusts ADB connection
- Always runs in ghost mode
- Wake on prompt
The Pro version additionally offers:
- OTA survival mode (no guarantees)
- Full color-coded command content logging (input/output/error)
- Per-app logging configuration
- Per-app user override
- PIN protection
The discussion and support thread can be found on XDA-Developers here:
http://forum.xda-developers.com/showthread.php?t=1538053
SUPERUSER
This is meant to replace Superuser (if installed), you use either one or the other. You cannot combine them. Statements that this breaks Superuser are therefore completely nonsensical.
NOTICE: A SPECIAL PROCEDURE IS NEEDED FOR UNINSTALLATION. IF YOU DO NOT LIKE THE APP, DO *NOT* JUST UNINSTALL IT, YOU *WILL* LOSE ROOT.
Superuser access management runs through a so called "su binary". There can be only one of these at a time. So if you install SuperSU, your previous superuser access management solution will no longer operate. So if you want to switch back: (1) Open that application, and search for an option for it to install/update/replace the "su binary". (2) Confirm root-using apps are using the superuser solution you want. (3) Uninstall SuperSU.
TRANSLATIONS
Want to help translate SuperSU ? See http://www.getlocalization.com/supersu/ !
UNDELETE FOR ROOT USERS
Description
Undelete for Android is an application for root users that allows you to recover any type of deleted file from your SD card or internal storage.
With support for over 1000 file types, Undelete can come in handy if you accidentally delete photos or want some old tunes to listen to on the go.
Undelete can also securely wipe and shred files so that they will be impossible for others to recover.
Features:
★ Restore any file that has not been written over
★ Securely wipe/shred files
★ Works with documents, images, video, music, archives and binaries
★ Thumbnail preview generation
★ Batch operations
★ Custom restore folder
★ Preview media files
Without the unlock Key, this application will only restore image files. Please buy the Key to unlock full functionality.
Currently, only FAT is supported. On most devices this means that only the external SD is supported.
Some files that are discovered after a scan may fail to recover as the data can be corrupted beyond repair, just like desktop based solutions.
ROOT PERMISSIONS require that you modify the operating system on your device, visit our website for more information: http://fahrbot.co.uk/root
INTERNET and READ DATA permissions are needed for the logging system. Logs are only sent manually with your permission through the "Write to us" dialog.
BUSYBOX
Description
Root required for this application!
The fastest, most trusted, and #1 BusyBox installer and uninstaller!
Over 3 million installs and over 10,000 5 Star ratings!
Mentioned in the new XDA-Developers book "XDA Developers' Android Hacker's Toolkit: The Complete Guide to Rooting, ROMs and Theming"
Winner of best Utility Software award for Android via Handster.
This is the only installer that is ad free and requires no internet permission!
This installer has the smallest Busybox binaries available, right around 800kb unlike the other installers which are over a meg.
The source for this application can be found here: https://code.google.com/p/busybox-android/
Featured on the BusyBox website at: http://busybox.net/products.html
The BusyBox source code can be found here: http://git.busybox.net/busybox/
A must have for any rooted phone! Almost EVERY rooted applications needs BusyBox to perform their magic, if you have a rooted phone then you need BusyBox.
Pro version contains Backup feature (for safer installs), uninstall feature, Advance Smart install feature, the ability to hand pick the applets you want, safety check for missing applets on start, and better overall support. The pro version will receive more frequent updates than the free version will.
Please note I did not write BusyBox! I wrote this installer and cross compiled BusyBox for Android. Please see the about menu option for more details or here: www.BusyBox.net
BusyBox is a software application that provides many standard Unix tools, much like the larger (but more capable) GNU Core Utilities. BusyBox is designed to be a small executable for use with the Linux kernel, which makes it ideal for use with embedded devices. It has been self-dubbed "The Swiss Army Knife of Embedded Linux".
Leave this installed if you always want to get the latest version of busybox!
AnTuTu CPU MASTER (Free)
Description
CPU Master is AnTuTu Free App!
Note: Root is necessary
AnTuTu CPU Master is a tool for changing the CPU/GPU speed on a rooted Android Mobile Phone/Pad.
CPU Master Automatic detection CPU's available frequencys, don't need to manually choose.
CPU Master's OverclockWidget show the CPU and battery stats, and change the CPU speed faster and simple.
Easy to find the following brands HTC,Motorola,Samsung,Google,LG ROOT, CPU Master can set cpu High-low frequency on your rooted mobile, capable of overclock and underclock.
CPU Master feature:
+ Speed up your processor
+ Powersave battery (speed down)
BATTERY CALIBRATION
Description
Calibrate your battery when you think it's miscalibrated.
Requirements: Android 2.1+ | Root permissions
Calibration needs to be done after flashing a new ROM, but you can calibrate any time you think your battery is miscalibrated. This program does it by removing the batterystats.bin system file. The OS generates a new clean batterystats file soon, thus any fake information from the previous ROM is removed.
It's suggested, but not necessary, to let the phone fully discharge after calibration, then charged to 100% without break.
The app shows your actual battery status, and only allows you to start the calibration (i.e. removes the file) when it's fully charged, unless you force earlier calibration.
The voltage meter can be useful too. Full charge is around 4200mV.
There is an option to beep when 100% is reached so you don't have to closley follow the changes.
GL to SD(root)
Description
Root Required.
Get Gameloft games to external SD and work fine.
So you can easily move the game data files to external SD card and solve the problems that internal SD space is too small or slow.It also applies to other games data to external SD, such as gun bros, Dungeon Defenders.
Users can customize the mounted folder in the configuration interface.Must wait for data loading is complete, and set the folder with the corresponding app.It can be used in exceptional folder or navigation, etc.
How to use and please Note:
Only root required.
1.For new user,using "move data" function move your game data to external SD.
(Android/data folder is moved to "data" ,gameloft/games folder is moved to "games",and Android/obb is moved to "obb" folder in the SD card)
2.Run this program.It lists all gameloft games and click 'open' to play.
3.If you wanted see other games (not gameloft)
,press Menu->Click "Setting"->Check "/sdcard/Android"->back to list.
4.If you want to click the desktop icon to execute,You will mount and press Menu -> Exit
5.If you do not know how to move files, delete the /sdcard/gameloft/games data, open wifi, run the program and click game,leave it to download.
6.Press and hold can remove non-game item.
7.If you flashed new rom or updated and "GL to SD" didn't work,please clean the data of "GL to SD".
**Limited to the core of each phone set different, each phone have encountered can not guarantee normal operation.
If not executed, please return your phone's models and ROM versions, have the opportunity to add in the new version.
**When you want to connect to the computer as a USB hard drive, remember to unmount(or check auto unmount).
**There are still some games left running in the background, will mount unsuccessful. Please using other app to kill this game process and re-mount again.
**If you had any question about this app.Email to me.
Suit for:LG P990,P920,Samsung Galaxy Note,Galaxy S2,Galaxy R,i9000,i9003,yp-g1,Galaxy W,YP-G70,Samsung Galaxy Tab(P1000),Acer Iconia A100,Moto Atrix 4G ME860,Photon 4G,razr,Asus Transfomer,Ainol Novo 7
Use but no report:Captivate,SEMC Xperia X10,Table S,Samsung Galaxy Tab,Infuse 4G,Acer Picasso,Moto Droid X2,LG GT540 Optimus,Toshiba Folio 100,Scroll Tablet
(If you have any questions, email me rather than to the star.)
Sixaxis Controller
Description
*** Caution: This app is not for the faint-hearted!! ***
Please read all instructions carefully.
Not all devices are supported, therefore it is strongly recommended that you try the 'Sixaxis Compatibility Checker' (available for free in the Android Market) before purchasing this app.
Finally the wait is over... The ultimate gaming experience awaits! Now you can play games on your phone the way they were meant to be played! Sixaxis Controller allows you to use your Sixaxis and DualShock 3 controllers in many of your favourite games and applications.
*** IMPORTANT ***
- ROOT access is required!!!
- Due to the way pairing is done with the controllers, you need to manually pair your controller with the PC utility 'SixaxisPairTool' (available on the website) and a mini-USB cable. Android 3.1+ users can also pair directly on their devices via USB.
- It is highly recommended that you use an ORIGINAL controller. Many after market controllers will not work with this app. If you get a 'Client connected: 1' message, but the lights on your controller continue to flash, it is almost certainly not an original Sony controller.
- Be sure to read the instructions in the help menu carefully.
Features:
- Up to four Sixaxis and DualShock 3 controllers supported at once.
- Support as a native gamepad in Android 3.1+ devices. Full support for analog sticks and analog triggers.
- Keyboard emulation. Map all buttons and sticks to almost any key available in Android.
- Mouse emulation. Configure a button to activate the mouse pointer on devices that support mice (most tablets, and many phones should work).
- Touch emulation allows you to map buttons and analog sticks to the screen. Play all your favourite games with full analog support, even those without built-in controller support!
This product is not affiliated with, nor authorized, endorsed or licensed in any way by Sony Corporation, its affiliates or subsidiaries. All trademarks are property of their respective holders.
For assistance, full instructions and FAQ, visit our website at http://www.dancingpixelstudios.com
AdFree Android
Description
THIS APP IS FOR ROOTED PHONES ONLY!
AdFree removes most ads in the browser and other apps. It does this by nullifying requests to known host names in the system hosts file.
If you have problems with this app, or you know of additional host names not being filtered, please comment in xda-developers.com forum so it can be fixed!
SD-Booster
Description
SD-Booster speeds up your external and internal SD-Card(s) (external and internal memory) up to 40 times! Enjoy a new feeling of speed on your Android smartphone anytime and everywhere you are.
Starting apps, listing to your favorite music or just swapping data with your PC ? Whatever you do, the SD-Booster improve your phone speed!
SD-Booster needs root permission to run, otherwise SD-Booster can't do anything!
Features:
-MMC detection framework to support any SD-Card
-Speedup every external and internal SD-Card
-Set on Boot
-Color based suggestion terms of current cache size
PLEASE don't move SD-Booster to your SD-Card, otherwise SD-Booster doesn't work on boot!
Script Manager - SManager
Description
Powerful application to execute scripts and executables, root explorer and browser and multi terminal emulator.
Execution Functions:
------------------
Manage and execute shell scripts and programs in file system.
All executions run over vt100 terminal accepting user input and esc codes (colors, bel, cursor movement ..)
Run them at boot-up and on network status change possibility.
Schedule at selected time. (cron jobs)
Show graphical dialogs from running process.
Create widgets at desktop.
Edit and create scripts, also create them from url.
Insert code in your scripts using QR codes.
Share execution output.
Bookmark your scripts.
Test SM_VERSION and/or SM_VERSIONCODE to know if is running inside SManager.
With root privileges you can also execute them with superuser privileges.
File explorer Functions:
------------------------
Browse all phone's file and network files.
Open multiple directories with one screen.(3 directories for Ads version)
Open and edit all files associated to an application.
Click to execute scripts, and long tap to edit, move,copy and rename files and directories. Also Create links and show files properties
Multiselect function from different directories. (Ads version only support 7 selections from different directories. No limit if selections are in the same directory)
With root privileges you can also:
Root explorer
Modify RO (Read Only) partitions easily.
Root editor (Allow edit files with root privileges also usable by other applications. Configure "Browse as root" to use it with script manager or other application)
Open and edit ALL files regardless the permissions they have with selected application. Use CAREFULLY(Configure "Browse as root" in order to get this feature)
Console screen:
---------------
Volume Up: Mapped to Esc key.
Volume Down: Mapped to Enter key.
DPad press: Mapped to Control key. (Press and then press other key. Not simultaneous pressing required)
Enable "extra gestures" in config screen in order to send Home/End,del/tab,left/right,pgup/pgdown keys. This is very useful to execute shell and ssh connections.
WEIRD CHARACTERS: If you get a lot of [[^ characters, is due you have "extra gestures" enabled and script/program doesn't process them. Use most right side of screen to send standard scroll event, or disable "extra gestures"
External Storage SD Notes:
-------------------------
You can install SManager on external Storage SDcard, but you must be know:
- If you are using boot scripts or scheduled script, you will need SMExternalSD app.
- All events like network status change and scheduled scripts while external storage is shared or unmounted will not be processed. Although you have SMExternalSD installed
NOTE:
SManager does not launch executions until external storage is mounted.
NOTE2:
Detected some programs/daemons (like dropbear) fails if has stdin closed. Try put "exec 0>&1" to reopen stdin in background executions.
No ads version features:
------------------------
No ads.
Execute scripts from widgets without opening console.
No limits in multiselect.
No limits opening multiple directories.
Alias keys in SMConsole.
Hide/show SMConsole status bar with up/down gesture at top of SMConsole screen.
FasterFix
Description
Speed up your gps, and get faster GPS-Fixes using FasterFix.
- Root access required -
- BusyBox Required -
- New HTC phones need NAND-unlock -
This app enhances your GPS by using a more accurate time estimation from a NTP server near you. Select one from the list, or add your own.
If the app doesn't work, please use "root checker" to check if you are correctly rooted and busybox is installed before you give a bad rating.
reserved 2
reserved 3 now u can post
nice thread
updated nov 03 with script manager and faster fix
ZOPO ZP990 Specs:
Model ZP990(2+32G)
Basic parameters Support OTA update
Model ZP 990
Released Time August.2013
Form Factor Barphone
Color 16,777,216 colors
CPU cortex A7 1.5GHz Quad-Core
GPU Power VR SGX544
Processor MT6589T 1.5GHz
Keyboard Touch Screen
Touch Screen Capacitive Support Multi Touch
OS Android 4.2
Phone Size 164.3mm*83.4mm*9.2mm
Weight 0.155kg with battery
Capacity 3000 mAh Li-ion Battery
RAM+ROM 2GB+32GB
Memory Card support TFcard up to 64GB MAX
Screen Size 6.0 inch
Colors 16,777,216 colors
Contrast 1000:1
Screen Material TFT
Screen Technique OGS,LTPS
Resolution FHD(1920 x 1080)
Data application functions
Networking WCDMA+GSM
Frequency 2G:GSM 850/900/1800/1900MHz
3G:WCDMA 850/2100MHz
Date Transfer GPRS、HSPA+
Date Speed HSDPA 42.2Mbps, HSUPA 11.5Mbps
Data Interface microUSB (MHL) v2.0
Mini USB 3.5mm Stereo audio jack
GPS Yes, with A-GPS support; Google Maps
Wi-Fi 802.11 b/g/n, DLNA, Wi-Fi hotspot
Bluetooth
photographed function
Camera 13.0MP
Secondary Camera Lens 5.0MP
Aperture F/2.2
Wide Angle 71.3°
Camera Sensor CMOS
Flash Light Autofocus, LED flash
Fast Burst Camera Support
Multi-Angle Camera Support
Exposure Compensation Support Optional
ISO Support Optional
White Balance Support Optional
Exposure Value Support Optional
Color Effect Support Optional
Auto Focus Support
Photo Resolution Max support 3264*2448Pixels
PANORAMIC PHOTO Support
Multimedia entertainment
Audio Format AAC, AMR, IMY, M4A, MID, MP3, OGG, WAV
Video Format 3G2, 3GP, MP4, MPEG, AVI, RM,RMVB
Radio Stereo FM radio
Phonebook Practically unlimited entries and fields
Search Mode By name / Intelligent
Phonebook Browse By pages
Applications
Accelerometer sensor Support
Proximity sensor Support
Video call Support
Voice memo Support
e-Buddy Support
Facebook Support
Twitter Support
YouTube Support
Skype/SIP/VOIP Support
MSN talk Support
Google talk Support
Gmail Support
Pocket Office Support
Aldiko e-Book Support
Browser Support
Android market Support
Weather Support
Deskclock Support
Compass Support
Games Support
zopo zp990 (NEW HOT)
ZOPO ZP990 Specs:
Model ZP990(2+32G)
Basic parameters Support OTA update
Model ZP 990
Released Time August.2013
Form Factor Barphone
Color 16,777,216 colors
CPU cortex A7 1.5GHz Quad-Core
GPU Power VR SGX544
Processor MT6589T 1.5GHz
Keyboard Touch Screen
Touch Screen Capacitive Support Multi Touch
OS Android 4.2
Phone Size 164.3mm*83.4mm*9.2mm
Weight 0.155kg with battery
Capacity 3000 mAh Li-ion Battery
RAM+ROM 2GB+32GB
Memory Card support TFcard up to 64GB MAX
Screen Size 6.0 inch
Colors 16,777,216 colors
Contrast 1000:1
Screen Material TFT
Screen Technique OGS,LTPS
Resolution FHD(1920 x 1080)
Data application functions
Networking WCDMA+GSM
Frequency 2G: GSM 850/900/1800/1900MHz
3G: WCDMA 850/2100MHz
Date Transfer GPRS、HSPA+
Date Speed HSDPA 42.2Mbps, HSUPA 11.5Mbps
Data Interface microUSB (MHL) v2.0
Mini USB 3.5mm Stereo audio jack
GPS Yes, with A-GPS support; Google Maps
Wi-Fi 802.11 b/g/n, DLNA, Wi-Fi hotspot
Bluetooth
photographed function
Camera 13.0MP
Secondary Camera Lens 5.0MP
Aperture F/2.2
Wide Angle 71.3°
Camera Sensor CMOS
Flash Light Autofocus, LED flash
Fast Burst Camera Support
Multi-Angle Camera Support
Exposure Compensation Support Optional
ISO Support Optional
White Balance Support Optional
Exposure Value Support Optional
Color Effect Support Optional
Auto Focus Support
Photo Resolution Max support 3264*2448Pixels
PANORAMIC PHOTO Support
Multimedia entertainment
Audio Format AAC, AMR, IMY, M4A, MID, MP3, OGG, WAV
Video Format 3G2, 3GP, MP4, MPEG, AVI, RM,RMVB
Radio Stereo FM radio
Phonebook Practically unlimited entries and fields
Search Mode By name / Intelligent
Phonebook Browse By pages
Applications
Accelerometer sensor Support
Proximity sensor Support
Video call Support
Voice memo Support
e-Buddy Support
Facebook Support
Twitter Support
YouTube Support
Skype/SIP/VOIP Support
MSN talk Support
Google talk Support
Gmail Support
Pocket Office Support
Aldiko e-Book Support
Browser Support
Android market Support
Weather Support
Deskclock Support
Compass Support
Games Support[/QUOTE]
Why do you want to post twice? Also, why your information is different from http://www.zopo-mobile-shop.com/ ?
ZP990
A great device. Don't know why the existing thread all of the sudden disappeared.
If this is the official thread, any new on offical firmwares zopomobile.cn_official?
Yes where did the other thread go??
Sent from my C7 using xda app-developers app
massigann said:
Yes where did the other thread go??
Sent from my C7 using xda app-developers app
Click to expand...
Click to collapse
I think that they deleted the other thread. But why?
Can an administrator/moderator please explain what happened?
Where is the thread we could find in http://forum.xda-developers.com/showthread.php?t=2403825 ?
Threats gone ZP990 !!
jamonda said:
I think that they deleted the other thread. But why?
Can an administrator/moderator please explain what happened?
Where is the thread we could find in http://forum.xda-developers.com/showthread.php?t=2403825 ?
Click to expand...
Click to collapse
I've asked the xda people for an explaination and I received the following message:
Hi,
it looks like ost of the Zopo threads were started by a member who is now banned, so we removed those threads.
Regards
Administration
xda-developers.com
so we need to rebuild this one!!
I have some questions for this system:
I can't figure out how to connect it to my Windows 7 system,, still downloading the wrong drivers.
How to root the device.. safe way.
oops, didn't check the zopo site: http://forum.zopomobileshop.com/thread-1074-1-1.html
but I've been reading something else here which was easier to do.
so fill in the gaps please!
And I have some problems with microphone volume. people are complaining that the volume is to low.
hopefully someone will post me the answers.
Greetings from a new Zopo user..
"so we removed those threads"
Just like that? Just because this user was banned?
What about the ZP990 user who came to this thread to find info and help regarding his new phone?
JUST BECAUSE SOMEONE WAS BANNED, EVERYBODY'S PAYING A HEAVY PRICE.
Does it occur to the Administrator that this thread is (was) basically the only thread available on the whole internet for this new phone? There was really no other solution? What do we do now?
And I'm not even mentionning the Zopo official site who is far to be as helpful as this thread is (was).
Hopefully the Admin will take the user's need into consideration and will reconsider.
Why deleting a whole thread just because the user is banned?
He (or she), had amazingly simple guides for this phones, and links. Such a shame. . . I was supposed to follow one of them yesterday for upgrading firmware, now it's gone
RobbenR said:
I've asked the xda people for an explaination and I received the following message:
Hi,
it looks like ost of the Zopo threads were started by a member who is now banned, so we removed those threads.
Regards
Administration
xda-developers.com
so we need to rebuild this one!!
I have some questions for this system:
I can't figure out how to connect it to my Windows 7 system,, still downloading the wrong drivers.
How to root the device.. safe way.
oops, didn't check the zopo site: http://forum.zopomobileshop.com/thread-1074-1-1.html
but I've been reading something else here which was easier to do.
so fill in the gaps please!
Click to expand...
Click to collapse
I rooted by using only SnapPea http://dl.snappea.com/release/SnapPea_2.36.0.2265_newuser.exe
and eroot_v1.3.4.exe http://www.runamux.net/search/view/file/9fLmV0ty/ERoot-1014.html
Note: USB Debugging mode must be active on your phone.
Also, If you have antivirus it will try and block eroot when running, as it does with all root tools. I temporarily disabled it. Don't have any direct link, but it's on 4shared somewhere.
Just installed it on my W7 computer, ran it and voilá!
Well, at first SnapPea didn't fint my phone, but somehow it did eventually without me downloading any driver. just messed around with the USB settings on the phone. But I think you can find the correct windows driver here: http://www.4shared.com/zip/2af2t3I8/MT6589_drivers.html
Simplest root
Some say you only need to download the MTK driver (http://www.4shared.com/zip/ykW0IGDv/Driver.html), set phone to USB debugging mode and then run eroot (link above). No need for SnapPea.
Firmwares
Going through my log I found this: http://ajnhb5iw3h.l29.yunpan.cn/lk/QXCRdkKHzszvL
Firmware I think. Haven't installed it yet, was suposed to do that yesterday.
Another one here: http://ajewn7iqgb.l29.yunpan.cn/lk/QXGa53pdVrzMW
But I think that's older based on name (130818 [august 18th] vs 130904 [september 4th])
I think I'll follow the guide at the forum you linked to for updating SW. And looks as if it should be simple to Root using that guide as well. Although not as simple as snappea + eroot.
Borrowed from other site said:
TUTORIAL TO UPGRADE THE ZP990 NEW FIRMWARE
SOFTWARE SECTION :
What you need:
1) Pre requirements Drivers mtk 6589. properly installed for recognize from the Pc the Zopo ZP990
installed in to Pc with windows Xp is preferred.
https://www.dropbox.com/s/125r5twipm... drivers.zip
or
http://www.4shared.com/zip/ykW0IGDv/Driver.html
or
http://www.4shared.com/zip/Y_F6KBCe/...sb_driver.html
or
http://www.4shared.com/rar/5wokI0ev/...NDROID__B.html
One other way to install drivers is to Install All Drivers With the Program Snapea,
http://dl.snappea.com/release/SnapPea_2.36.0.2265_newuser.exe
2) Flashtoolvers installed in to one folder (ex. Desktop)
Pc with windows Xp is preferred :
New version of FLASHTOOL SP_Flash_Tool_v3.1316.0.150
http://www.4shared.com/zip/RHJJa ... exe_v313160150.html
3) Recovery - CWM (Clockworkmod) Only file recovery.img:
CWM recovery vers. 5504
http://www.4shared.com/file/mizPFCwo/recovery_cwm_6032_zp990.html
See the correct threads to have right root on your zp990:
http://forum.zopomobileshop.com/ ... e=1&extra=#pid10982
4) Root SuperUser version 1.51
http://www.4shared.com/zip/jLZckTwA/update-supersu-v151.html
5) FIRMWARE actual Original zp990 20130818-102950:
https://docs.google.com/file/d/0B5Hi...VFk/edit?pli=1
o
http://www.4shared.com/rar/IfnhObIG/...30818_SET.html
LAST ORIGINAL FIRMWARE Zp990_20130904_163745:
http://yunpan.cn/QXCRdkKHzszvL
https://mega.co.nz/#!r9JgAJ6I!aEjhO2ZxgqsZykyTOkvNO2Ngd5MlLquUGXGoMnCHfKU
https://docs.google.com/file/d/0B5Hi0SWKOO04Z1ptclNlZmtIOU0/edit?usp=sharing
New details :
1) Check the hours on the window eye!
2) possibility to take the call from the window eye!
STEP1 to upgrade new firmware
Unzip the drivers mtk6589.rar in a folder on your desktop
or snappea program more easy.
The first step
from the folder run the file installDriver.exe once the operation is complete
Disconnect the phone from the usb socket and insert the battery without turning it on.
Now you have the computer ready to flash the complete firmware or parts of it,
prerequisite for any operation.
Unpack the package Flashtool folder on your desktop and run Flash_tool.exe obtained (blue icon)
Inthe program to your right you will find the voice Scatter.loading click on it and find the position the folder where you extracted the package firmware:firmware zp990XXXXXXX
Android_scatter_emmc and confirmed
select all itemsfrom the menu of the program and leavechecked only thoserelating to recovery The situation will present in this way:
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Click to download and confirm the popup that appears.
Now connect the phone OFF with battery correctly fitted to the PC USB cable.
Start 'flash process for the recovery will be some minutes.
A pop-up will give you confirmation of the operation soyou can close the program and disconnect your phone!
NOW YOU DON’T REMOVE THE BATTERY IN THIS STEP !
BECAUSE YOU MUST ENTER IN BRICK PROCEDURE!
Now you can reboot the phone pushing the power button ,
and wait for some operation that need to the phone,
and enjoy the new Firmware .
STEP2
"ONLY " to upgrade new patch for the Touchscreen.
(This procedure is very dangerous and so you do this operation for your own)
(this procedure does not protect against the brick and void the warranty)
This last firmware need to upgrade also the touchscreen firmware to obtain the right sensitivity to take the call from the cover's window eye!
1) download the application fts_upgrade:
https://docs.google.com/file/d/0B7O7_ynf-6yPaVNEUHRzcXZyMWc/edit?usp=sharing
2) copy this application in your sd and put it in the phone (zp990)
NOW IS MORE IMPORTANT:
1) RUN THIS FOLLOWS STEPS WITH THE MOUSE CONNECTED IN THE OTG CABLE
2) THE PHONE IS ON THE TABLE PERFECTLY ORIZONTAL
3) DON'T TOUCH THE SCREEN FOR ANY REASON!
CHECK THESE FOLLOWING OBJECTS
CONNECT THE OTG CABLE AND THE MOUSE
1) RUN THIS FOLLOWS STEPS WITH THE MOUSE CONNECTED IN THE OTG CABLE
2) THE PHONE IS ON THE TABLE PERFECTLY ORIZONTAL
3) DON'T TOUCH THE SCREEN FOR ANY REASON!
SEE THE ARROW (MOUSE)
3) Select and install this application trought one program like "file manager" or "root browser" or what you prefer !
4) run this application and check if this parameter is correct like the screenshot above !
The exactly and right parameters is 0x14 and 0x98
5) select with the mouse
(don't touch the screen with the hands)
the file that you want to upgrade:
file name is : ZP990_V17.bin and push start!
6) after this operation you have this follows situation :
New parameters is 0x17 and 0x98
Now the procedure is finished!
I do not take the responsibility if your phone gets bricked!
The procedure to upgrade the touchscreen is not covered by the warranty.
You make this procedure for your own .
Click to expand...
Click to collapse
Youtube-vid for firmware and flash tool: www.youtube.com/watch?v=0v_cae5p_go
(youtube is blocked where I sit now, so I can't check if it's worth having or not. But simply gathering things here now.)
Thanks FlipMorten for this tutorial.
- From which website did you took this exactly? How reliable? Did you try some by yourself?
- Also, why trying to modify the firmware of the Touch Screen?
So, here is my latest post and instruction because many users asked me via mail.
Download this pack: http://www.4shared.com/zip/ttg16QU0/RootDrivers_MT6589T.html
This is driver pack (works on W7 and W8) but could be in some case that you have to disable the digital sinature check before installing them and pack for root the device if you will install any rom which is non-rooted.
So download this and get drivers installed, then you can download my complete C7 ROM folder her:
http://www.4shared.com/zip/b-S-fbrx/7GB_Flash_20130915.html
This is the complete folder with latest ROM (rooted...means you will not need to root after flash) and the EBR Mod, to have 7 GB of internal storage after flashing, this ROM works really great and you can use for theming or things like that XPOSED Framework after flashing, everything runs like a charm!
How to flash:
Unzip this zip folder (best on desktop to find it easier) and start the SPFlashtool.exe. (make sure the drivers are installed), use the MT6589_Android_scatter_emmc.txt from my folder (Change nothing in folder!!!) and take a look, that everythink is checked! Click on download button!
Shut down the phone and take of batterie....connect the phone now with your PC using the USB Cable and wait until flash is running...when drivers will be installed, wait after connecting, in the end you will see different colored lines ins flashtool and a Green OK button will appear, now disconnect the phone and put batterin in, start and have fun with a rooted C7 incl. 7 GB of internal storage!
one of my short reviews here: http://www.youtube.com/watch?v=xzrtu1-8n0A&feature=share&list=UUe6tcx4_7-YqbJAkrYLv2Vg
Quelle: etotalk.com (ROM) needrom developer [email protected] (ROM), EBR Mod by XDA (all packed in the ROM Folder)
mrpsanter said:
Thanks FlipMorten for this tutorial.
- From which website did you took this exactly? How reliable? Did you try some by yourself?
- Also, why trying to modify the firmware of the Touch Screen?
Click to expand...
Click to collapse
I got it from zopomobileshop's forum.
I think it's reliable, as they sell this phone and have close ties to Zopo.
Modifying the touch screen is so that one can answer the phone while having the flip cover closed. Touch through the window of the s-view flip cover. Basically increasing the sensitivity or something. Not a modifification I want or need, as I don't use the flip cover - and even when I did, it wasn't any issue to open the cover to answer and then close when talking. At least not when it's so risky now. They said it might be implemented in a coming firmware.
I'm just going to upgrade the firmware
Thanks Petteri,
Is it possible for you to upload this at something else than 4Share: For some reasons I'm having a hard time to download this...
Easy root.
For those who need root. Search framaroot here at XDA. One Click apk.
Supposed to work on various devices also Mediatek 6577 and 6589.
Just rooted my mothers 6577 and its really one click, and reboot !
Thanks
Knievel
Problem with new firmware: the phone turns off by itself
I upgraded to the Zp990_20130904_163745 firmware (with the new touchscreen firmware) following the steps you can find here:
http://www.androidiani.com/forum/zopo-modding/335606-modding-zopo-zp990-capitan-s.html
The forum is in Italian, so I translated the text with Google translate. It worked fine with the s-view like cover. I also flashed the CWM 6032 for ZP990 with Mobileuncle Tools. Rooted with eroot.
However, after that my phone started to turn off by itself from time to time. I don't know the reason. So I flashed back the zp990_20130818-102950 firmware and the original recovery. No problems so far.
Did you guys have the same problem?
Use of 64 GB sd card in ZOPO ZP990
Hi all,
Happy to see you back after the original thread disappeared. I asked a question in that whether anybody use 64 GB memory card in the phone. Is it fine or any lag. I am planning to buy one for the phone.
mrpsanter said:
Thanks Petteri,
Is it possible for you to upload this at something else than 4Share: For some reasons I'm having a hard time to download this...
Click to expand...
Click to collapse
Here it is:
7GB Flash 20130915.zip (368.1 MB)
https://mega.co.nz/#!CIFmzQIK!RUTX0GCmq21FUIGlqkulxTSe3ih7b-LEAftVSZabsyI
and Drivers:
Root&Drivers_MT6589T.zip (18.8 MB)
https://mega.co.nz/#!qFciBYDJ!crrBlDOiXcpXXZbU82lyqnVsCV493CRuQTvIzddJQKM
BR Petteri
Petteri said:
Here it is:
7GB Flash 20130915.zip (368.1 MB)
and Drivers:
Root&Drivers_MT6589T.zip (18.8 MB)
BR Petteri
Click to expand...
Click to collapse
Thanks for your immediate reply.
Saw your video review of the mobile. Certainly the best of all available. Very informative. Did you encounter any ghost touches?
amddayalan said:
Thanks for your immediate reply.
Saw your video review of the mobile. Certainly the best of all available. Very informative. Did you encounter any ghost touches?
Click to expand...
Click to collapse
No, everything works really fine!
i inastalled same Apps like on my GALAXY NOTE 2, all apps works,
When you will use XPOSED Framework (for personal theming and settings), you can use these Modules (see picture):
Thanks Petteri,
I got your files.
Hello,
Really Hopeful in having your support and ideas on quite few issues!
(I hope it is OK to post links) I bought above mentioned tablet ebay co.uk/itm/121228145297
and few accessories intending to use it as Traffic Recorder(Dash Cam) and (ideally iGO SatNav application) for my travels through Europe (mainly UK)
Main specs:
Specifications:
1General
2Operating System
3Android 4.1
4CPU
5ARM(Cortex-A7) MTK8377
6GPU
7PowerVR SGX 531
8Processor Speed
91.5GHz
10RAM
111G
12Hard Drive Capacity
138GB
14Extended Memory
15Support external TF card extend up to 32GB
16Gravity Sensor
17Yes
18Flash Player
19Yes, Support Flash Player 11.1
20Display Size
217 Inch
22Display Technology
23IPS Capacitive Touch Screen
24Multi-Touch
25Yes, 5 points
26Display Resolution
271024x 600 pixels
28Camera
29Front Camera
300.3MP
31Rear Camera
322.0MP
33Flashlight
34Yes
35Connections
36Wi-Fi
37Yes, Wi-Fi 802.11 b/g/n
383G
39Yes,Built in
40LAN
41Yes,Support external USB LAN modem.
42Bluetooth
43Yes, 4.0
44GPS
45Yes,Built in
46Telephone
47 Yes,built-in 2G GSM;850/900/1800/1900MHz
48 3G WCDMA:850/2100 MHz
Click to expand...
Click to collapse
In specs and images it was posted as (will insert image later)
(all is rather optimistic and NOT what it came like!)
it appeared as(will insert image later1)
and issues with me trying (and achieving some sort of control level) there from
(will insert image later)
varied degree of success working on it gets me to (will insert image later2)
So, I have managed to disable some apps, once managed to get mobile networking connections to the 1Mobile Market and get some apps to work, but not GooglePlayStore. Most of remaining (and new apps) are not in Chinese no more, so I am very hopefull, that with rooting I'll get rid of the rest of them gremlins.
Actual specs (will insert image later3)
The questions to you Gentleman (and) Ladies:
1- Do I have to (must) root the device, so that GooglePalyStore would work? as currently, it is installed, but majority of apps are kicking some or the the sort of errors(unsupported etc), and actual GoogleStore app- "works" via Browser...
2- If yes, how do I (step by step) root it in order to have better control? (what applications( with links please) I should install for such Odyssey and what order etc please!?
3- If rooting, is it possible to Get IE 4.4.0 ROM to install?(instead of 4.1.1)- what will happen to the features of IE analogTV receiver hardware management?
4- Would it matter at all, if device is not rooted, but intended to be installed iGo Primo is packaged somehow with GooglePlay app?- will it work? or will that "modified" app work with rooted device all together? (I already learned, that IE Traffic recorder apps are only available on Google)- meaning not available for me for now...
Very many thanks for the answers and ideas in advance!
Am I wrong in believing, that particular tablet is really just a different badge wearing JXD P1000 MTK8377 tablet?
Hardware specs seem to match, as well as appearance/hardware configuration seems ever so similar, is it that daft of an idea to consider rooting and replacing ROM with one, made for JDX device?
Sent from my blueing tablet A770 using Tapatalk 2