New Rikomagic MK902 Quad Core Android PC



Highligths

* Rockchips RK3188 Quad core,Cortex A9.up to 1.6GHz 
* GPU: GPU Mali-400, offers 3D graphic with OpenGL ES2.0 and OpenVG 1.1 
* Android 4.2 OS 
* 2G DDR3,8G/16G ROM high capacity memory 
* With WIFI 802.1b/g/n Wireless to get rid of the wire bond 
* Support RJ45, 10/100M LAN network 
* Build in Bluetooth 
* Support the latest HTML5, Flash11, etc. 
* Support external 3G USB Dongle 
* Build in 5MP camera and microphone, support SKYPE video all, MSN, Ffacebook, Twitter, QQ 
* There are more than 600,000 Google Play apps and games for a great experience 
* Extension ports support 2.4GHz wireless mouse, wireless keyboard with touchpad, etc, while a micro-SD slot lets you add more storage memory up to 32 GB


Specification 

CPU: Rockchip 3188 Quad Core
GPU: 2D/3D GPU,Quad Core Mali 400 (Open GL ES2.0/1.1, Open VG1.1, Flash 11.1)
OS: Android 4.2,Support Miracast
Main Frequency: Cortex-A9,Up to 1.6GHZ
RAM: 2G DDR3
Memory: 8GB/16G(optional)
Expand Micro SD: T-Flash(Maximum support 32GB)
Browser: Browse webpage
Video Format: RM/RMVB, MPEG, MKV, AVI MP4, MOV, FLV,H.263, H.264,VC-1, DivX, Xvid, TS, RealVideo, VP6, VP8 up to 1080P support
Audio Format: AAC-LC / HEAAC / HE-AACv2, AC3, AMR-NB, DTS, MP3, OGG, RA_COOK, WMA, WMA, LPCM/PCM/ADPCM, FLA
Music: Can be connected to the Internet, listen to music online
WiFi: 802.11 b/g/n
Bluetooth: Build in
Flash: Supports flash 11.1 or later.
Ports: HDMI, AV output, optical, RJ45, Micro SD slot, USB host*4, Camera, MIC, DC IN (5V 2.5A)

 

 


Package content

Rikomagic MK902 Quad Core Android PC
HDMI cable
AV cable
Power adapter
Manual



Manufacturer website - www.rikomagic.com 

Download latest ZhuoDaShi version 3.6.0.1015


ZhuoDaShi is a pretty good chinese rooting software for Android devices. It reaches now the 3.6.0.1015 number version. The program is actually written in Chinese so it will look odd on your PC, however I’ll show you exactly what needs to be clicked and when.

Download ZhuoDaShi version 3.6.0.1015 from here, here or here. Install ZhuoDaShi. Although the program is in Chinese it should be fairly obvious what you need to press to install it.

More details about ZhuoDaShi you'll find here. 

Download Rockchip Driver Assistant


Download the archive from here, here or here. Decompress it and the run 'RK Driver Assistant'. Choose “Uninstall Driver” if you have any RK driver installed before to wipe it clean, then choose “Install Driver”; If you haven’t install any device drivers before, simply choose “Install Driver”. When the dialogue box prompts out, choose “Install” twice. That's all, enjoy it!

Now we all are wainting for the Rockchip driver for Windows 8.1. We hope that will be soon.


I9300XXUGMJ9 Android 4.3 Jelly Bean for Galaxy S3 leaked

XXUGMJ9 is just leaked a few days ago for Samsung Galaxy S3 GT-I9300. this is a beta or test version with new Android 4.3 changes like the new launcher UI found in the Galaxy Note 3 as well as Galaxy S4, but without Knox, according to samfirmware




image source: samfirmware


firmware details:
pda: XXUGMJ9
csc: VFGGMJ5
modem: BUUGMJ3
build date: 26 October 2013


download link:
link 1 (by samfirmware)

real original Xperia Tablet UI Mode for sony xperia

here is an extra mod for the xperia users, expecially z tablet users, who don like the new, odd phone ui interface since updating to 4.2.2 that reduces the limited screen height for an additional status/navigation bar like me







this is my first mod for Sony xperia devices, and the final mod since i have decided to sell my xperia tablet z (docomo version) due to the locked bootloader (docomo's version so-o3e cannot be unlocked) which prevents me from using my own kernels and roms. and more importantly, however, i missed Samsung's multiwindows function so much and i need it. dont tell me Sony has the small apps function instead, it is far behind Samsung's multiwindows which i can run any app in a separate window if i want to, including non-samsung apps on my note2. no disrepect here, just my opinion






anyway, i know many ppl would like to update their tablet z to Andriod 4.2.2, or updated already but went back to 4.1.2 finally simply due to the old tablet mode, and here is a simple howto:


a bit more info:

it is the dpi of the screen that determine whether it is a phone or tablet and call for a phoneui or tabletui "in general" (i will not go further in this topic here). however, we can force the device to show a phoneui/tabletui even if it is actually a tablet/phone by modding the system files. one of which is the PhoneWindowManager found under com/android/internal/policy/impl/ (android.policy.jar)




ok, lucky enough, in this 4.2.2 rom (SGP321_10.3.1.A.2.67_1273-0364_R2B), we only need to override/modify two functions: hasNavigationBar()Z and hasSystemNavBar()Z

a tablet mode contains a SystemNavBar but no NavigationBar. simply speaking, a NavigationBar is the bottom bar that only contains the back, home, tasks soft keys, while the SystemNavBar is what we found in most tablets, resides at the bottom of the screen and contains the three navigation soft keys or buttons, back, home, tasks on the left (navigation bar), plus other info icons like clock, signal, on the right (system bar)

therefore, in order to bring back the tabletui, just fulfil these two requirements:
1/. hasNavigationBar = no
2/. hasSystemNavBar = yes

the changes required to the PhoneWindowManager.smali are shown below (note: for this particular rom only, may need some more changes in other roms)



.method public hasNavigationBar()Z
.registers 2

.prologue
.line 5325
### iget-boolean v0, p0, Lcom/android/internal/policy/impl/PhoneWindowManager;->mHasNavigationBar:Z
#** force tablet
const/4 v0, 0x0 # always return false

return v0
.end method

.method public hasSystemNavBar()Z
.registers 2

.prologue
.line 1598
### iget-boolean v0, p0, Lcom/android/internal/policy/impl/PhoneWindowManager;->mHasSystemNavBar:Z
#** force tablet
const/4 v0, 0x1 # always return true

return v0
.end method



remarks:
anything after a hash (#) are comments line and will be ignored by the compiler, and
### this is the original code
#** this is my remark/comment


the actual changes required are the line immediate below my comment lines, ended with "# always return false (or true)" in bold



that's it! simple enough for modders!

however, if u want to mod it further like adding back the small apps tray then you will need to modify framework-res and systemui, which is not covered here in this post


for non-technical users who dont know how to make the changes, dont worry, i will provide a modded version later



Crew RKTablets Genio CM10.1 v1.3.3 firmware installed on Pipo S1 tablet





1. Backup your data.
2. Download the CM10.1 archive from here, here or here; extract 'PipoS1_CM10.1_v1.3.3.rar'. Copy 'Oma RK30 CM10.1 Format NAND.zip' file to a microSD card.
3. Hard-off the tablet by long pressing the power button (4+ seconds). Insert microSD card. Hold down the VOL- button while inserting microUSB cable to enter download mode
4. Start the 'RKAndroidTool.exe' found in the 'RKDevelopTool_v1.35' folder (right-click, run as administrator). NOTE: The tool should say 'Found RKAndroid Loader Rock Usb'. Hit 'EraseIDB' and wait for success (Clears partition table) and then hit 'Run' once. INFO: Run OK', Pipo S1 will boot into recovery --> **RECOVERY SHOULD BE v6.0.3.1**
5. Wipe cache, Wipe data/factory reset, Install zip from external card 'Oma RK30 CM10.1 Format NAND.zip' and reboot. Wait 5 minutes.
6. Once the tablet starts, select your prefered launcher, hit 'immer' (always).
7. Set the language to English: Hit the setting icon, 'Systemeinstellungen', Scroll down to 'Sprache & Einabe', Set 'Sprache' to your desired language.
8. Fix landscape menu buttons not appearing. Go to play store, sign in. Install Textdroider DPI from play store. Set DPI to 120. Apply. Reboot. HINT: to use back & navigate button use the tablet in portrait mode.
9. Optional: If you want back the tablet interface with bottom notification bar then download TabletUI fix v1.3.2 and install it from microSD card via CWM.
 


What's new:
- a2dp fixed
- gapps updated

 Hints:
- enable development options > tap 5 times on build number
- higher performance > disable animation scales in developer options
- control Play-Store > disable auto-updates
- battery drain > set keep wi-fi on during sleep to never
- full access to the build > enable /system rw in File Manager HD
- load kernel modules > enable init.d ON in Pimp my Rom (reboot)
- don't show su notifications > disable in Superuser

Unresolved Issues:
- Wifi takes a few seconds to connect from sleep
- camera is upside down
- display artifacts on screen rotation

Troubleshooting:
Problem: If you get stuck with installs the loop you back to recovery constantly, you probably have CWM-based Recovery v6.0.1.5. This recovery does not work with the original Pipo S1 kernel.
Solution: Use recovery 6.0.3.1 with kernel RK3-_kernel_308_s1_pipo

Problem: You find yourself stuck in recovery with no way to power off
Solution: Select a menu item, highlight ++++Go Back++++, when you press the power button, do not let go until tablet powers off.


Build details:
- CyanogenMod 10.1 / Android Jelly bean 4.2.2
- Kernel 3.0.8+
- this firmware has root acces.
- Languages: all
- gapps are preinstalled
- Another preinstalled apps: AdAway, Apollo, CPU Tweaks, DSP Manager, File Manager HD, MX Player, Nova Launcher, Pimp My Rom, RebootMenu, Terminal Emulator, USB Host Controller, Viper4Android FX, etc...
- Antutu Benchmark score: about 10.000 points at 120 dpi;
- Build number: Oma RK30 CM10.1 v1.3.3 - 23.10.2013


Credits for this great ROM goes to Oma.
Credits for this tutorial goes to trenchtractor.



Always keep in mind that this is not a review, just a first sight of this firmware. You have to test it more for another details, to see if it satisfies your needs.Be aware: it is your own risk! 
video uploading

Android 4.3 Premium Suite update for Galaxy Note2 and Galaxy S3 S4

Saumsung announced the Android 4.3 update is about to release in the coming weeks for Galaxy Note2, Galaxy S3 and S4. according to the announcement, the Premium Suite update will be rolled out today in US first by Verizon (read the official Samsung announcement for the update here)

this update adds KNOX, plus some enchancements for the camera, etc, while those highly expected new features from the Galaxy Note 3 are unlikely to be included completely but Group Play 2.5 is shipped in this update