Quantcast
Channel: xda-developers - Galaxy S II Android Development
Viewing all 397 articles
Browse latest View live

[NOOB GUIDE][how to]build cm or cm based rom from source+support

$
0
0
****NOOB GUIDE ON HOW TO BUILD CM OR CM BASED ROM FROM SOURCE FOR S2****
****FULL SUPPORT ****


So guys from the concept of sharing and caring ..am going to share the way through which i have succeeded to compile my first rom based on omni source.
I will try to make this guide as much as easy ..so dont worry..and feel free to ask any doubt if u have..

Note: this guide is only for ubuntu running on virtual box

This Guide will cover below things:

** How to install Ubuntu on virtual box
**How to set up Build environment
**How to build and compile rom
**transfer the zip from ubuntu to your phone

So lets begin

How to install ubuntu on Virtual box:

1. Download ubuntu from HERE(download ubuntu 12.04 LTS 64 bit)if u are having system with 2gb then pls dont try to compile

2. Download virtual box from HERE(download the latestwindows version x86/amd64)

3. After downloading vm click on it and select "NEXT"

4.Choose not to install USB support, networking, or Python support. Do this by clicking the grey icon near each option and selecting the red X or “Entire feature will be unavailable”. Then click “Next” to continue.

 


5.Uncheck the Quick Launch Bar checkbox and click “Next” to continue

6.Click install and finish.

7.Now click the new button at the top to create a new virtual machine.

 


8.Give your virtual machine a name and select the operating system you’ll be running(for e,g select version as ubuntu 64 if u are on 64bit os). Click “Next”.then slect create virtual hard drive now

9.now type the amount of memory ..(4gb is absolute minimum)

10.Click “Next” to create a new virtual hard disk, then click “Next” again

11.Select dyanmically allocated storage

12.now type the amount of storage(200 gb is minimum) and click create .

13.Select your new virtual machine. Once you've done this, click the “Settings” button.

 


14.Click “Storage” tab and Click the “CD/DVD icon" having "+" on it and select ISO to mount.

 


15.Click system on the left and Choose boot order and keep CD/DVD on the top as first priority.

 


16.Now close the settings window and Select your virtual machine. Then click the “Start” button

15.Now ubuntu will start and select the language

16.select install ubuntu

 


17.click continue and select the first radio button ..then hit continue again and install now(wait for some time)

18.Go through all the steps and finally u should have the below screen.(if u have got that screen then u are ok to proceed ahead )

 


16.So i assume you have got the ubuntu desktop .

17.click on ubuntu software centre avaliable on the left side and select edit/software sources

 


18.click on update tab and follow the screenshot below

 


19.After couple of min u should see update box is dancing:D on the left side , click that and install all the update packages


How to set up build environment:

1. Go to THIS awesome thread , I Bet u would not have any problem in setting up build environment if u had followed it correctly..

2.If u have any troubles in setting up build env then u are free to ask/post in this thread.

3.you only need to download the below packages

 
JDK 6
Python
Git 1.7
Android SDK
ia32libs


So i assume you have set up your build environment successfully ..


How to build and compile :

1.We will install build packages needed to compile the rom.

2.Open your ubuntu terminal by pressing ctrl+alt+t

3.As of now u cannot copy/paste text between ubuntu and your windows ..so we will be installing guest addition cd image which u can install by clicking on Devices/install guest addition cd image .

4.it will install now , after that select Devices/share clipboard/bidirectional ..now reboot your ubuntu by typing the below code in terminal

Code:

sudo reboot
5.Now copy paste the below code in terminal to install build packages

Code:

sudo add-apt-repository ppa:ubuntu-toolchain-r/test
Code:

sudo apt-get update
Code:

apt-get install g++-4.7 gcc-4.7
For 32-bit & 64-bit systems
Code:

git-core gnupg flex bison gperf libsdl1.2-dev libesd0-dev libwxgtk2.8-dev squashfs-tools build-essential zip curl
libncurses5-dev zlib1g-dev openjdk-6-jre openjdk-6-jdk pngcrush schedtool


For 64-bit only systems
Code:

g++-multilib lib32z1-dev lib32ncurses5-dev lib32readline-gplv2-dev gcc-4.7-multilib g++-4.5-multilib
6.You should not have any problem in installing the above packages if u had followed it correctly.

7.Now Create the directories

Code:

mkdir -p ~/bin
8.Install the repo command
:
Code:

curl http://commondatastorage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
      chmod a+x ~/bin/repo

9.Important thing now is u have to put the bin directory in your path of execution..to do so ..copy and paste the below code

Code:

export PATH=${PATH}:~/bin
10. type
Code:

gedit ~/.bashrc
and now paste
Code:

export PATH=${PATH}:~/bin
11.save it by pressing ctrl+x

12. now we have to create a directory in which our source will get downloaded

Code:

mkdir -p dirname
(type the directory name )

Code:

cd dirname
13.Now its time for us to initialize the repository

Syntax :

Code:

repo init -u url -b branch
for e.g am going to fetch omni source..so i wil type as

Code:

repo init -u https://github.com/omnirom/android.git -b android-4.4
14.then go to THISanother awesome thread to understand about the local manifest ,manifest and many more..(this thread is highly recommended to those who have poor internet connection)

15.IF u are lazy and dont want to go throu the above thread then u can skip and follow the below steps.

16.type
Code:

repo sync -c -j4
Note: if u have low bandwidth the use -j2 instead of -j4 and if u have good internet connection use -j16 instead of -j4
repo sycn -c will download only the current version so it saves time for u

17.repo sync will take more time..(for me it took 3 days to complete because my internet speed was 50kb/sec

18.After repo sync is done u have to fetch some additional repoistory using local_manifest.xml
 
Code:

<remote fetch="https://github.com/DonkeyCoyote" name="donkey" />
 <project name="DonkeyCoyote/proprietary_vendor_samsung" path="vendor/samsung" remote="github" revision="android-4.4" />
<project name="android_device_samsung_i9100" path="device/samsung/i9100" remote="omnirom" revision="android-4.4" />
<project name="android_device_samsung_galaxys2-common" path="device/samsung/galaxys2-common" remote="omnirom" revision="android-4.4" />

thanks to chasmodo

note: above is an example for omni rom...if u are fetching aokp,pac etc then u have to change the path , remote , revision accordingly

19.Let's configure ccache too. It will reduce the build time to 40% after first build

Code:

echo "export USE_CCACHE=1" >> ~/.bashrc
Code:

directoryname/prebuilts/misc/linux-x86/ccache/ccache -M 25G
25G means it will use upto 25 gb of disk space for ccaching. Atleast 10 gb is recommended.

20.Now its time for compiling .simply type
Code:

. build/envsetup.sh
Code:

brunch i9100
21.it may take some time depending upon your pc/laptop configuration

22.u should get package complete at the end..(unfortunately i could not save screenshot of that..but soon s.s will be posted when i repo sync again)

23.If yes then u have successfully built your rom ..congrats:good:

24.now how to transfer that zip to the phone for flashing?..follow the below steps


how to transfer files from ubuntu to your phone:

1: Download and install the AirDroid app to your Android device.

2: Launch the app and read the starter guide. As soon as you’re done, click “Start”.

3: Take note of the web address that is being shown on the app. You’ll need that web address to access your smartphone through your computer’s web browser.

4.now type the code in ubuntu browser and there u go ...u have connected your phone to ubuntu.

5.transfer the file by selection files/sdcard/upload

6.Done


Hope this guide helps u the most.
IF U HAVE ANY QUESTION FEEL FREE TO POST ..cheers.

GOOD LUCK:good:


Credits:
@Myself5 (this guy really deserves it)
@chasmodo @engloa
google

Hit the thanks button if u think it deserves to have..:highfive:

[ROM] [Jan 9] [4.4.2] I9100 AOSP NeatROM

$
0
0
Welcome to AOSP NeatROM for S2
Simple, clean and reliable











Features
  • AOSP NeatROM for Samsung Galaxy S2 I9100
  • January 9, 2014
  • Firmware: I9100 AOSP NeatROM Slim v2.1 (4.4.2)
  • Compiled from the latest SlimKat repos
  • The Real Dark Slim
  • Notification drawer Shortcuts
  • Full hardware key rebinding
  • Keyboard rotation
  • Nova Launcher
  • Superuser
  • Darker Camera - colour filter options, gps indicator, picture quality, smart capture, shutter sound...
  • Darker Gallery
  • Phasebeam LiveWallpaper
  • Wifi country code
  • Mediascanner behaviour on boot
  • Volume key cursor control
  • Show permanent enter key on keyboard
  • IME selector notification
  • Auto keyboard rotation feature
  • Systemwide blacklist support for calls and sms/mms
  • Pattern size customizing
  • Lock before unlock the new way
  • Lockscreen shortcuts
  • Fully revamped lockscreen target options
  • Start widgets maximized on lockscreen
  • Enable carousel animation on lockscreen
  • Enable/disable camera widget on lockscreen
  • Full customizable low battery warning
  • Wake up on charge
  • Volume rocker wake
  • Volume rocker music control
  • CRT animation the new way with new animation as well
  • Fully customizable auto brightness
  • Display rotation options (0, 90, 180, 270)
  • Fully customizable volume panel
  • Power connectivity alert
  • Less frequent notification sounds
  • Ascending ringtone
  • Control safe headset warning
  • Mute Camera shutter sound
  • Quiet hours new extended version
  • Mute Volume adjust sound
  • SlimCenter
  • Fully global menu customization
  • Fully revamped navigation bar and navigation ring customizations
  • Statusbar brightness control
  • Full Clock and date customization on status bar
  • Battery icons
  • Quick settings style options
  • Quick pulldown for quick settings
  • Easy full swipe access between notification drawer and quicksettings
  • Wifi access point is shown in notification drawer
  • Hide carrier label on notification drawer
  • Notification drawer shortcuts
  • Notification transparency
  • Notification drawer and quicksettings background as well with tablet support
  • Fully customizable quick settings the new way with new included music tiles and features
  • Battery tile new click/longpress behaviour
  • Allow to disable QuickSettings completly
  • Option in Dev Set to customize the device hostname
  • SystemUI - double tap to sleep gesture
  • IPV6 tethering support
  • Allow applications to override power key
  • DeskClock - back flip and shake actions
  • Navigation bar
  • Global menu - Expanded desktop
  • Wakeup Options
  • Enable/Disable Root
  • Es File Explorer
  • www.NeatROM.com as default home page for browser
  • NeatROM Bootanimation v4 Big thanks to @momo.martinovic
  • Enabled HD Voice Thanks to @tarzan11
  • Init.d Support
  • Tweaks
    and many more...
    I probably forgot something


 



January 9, 2014
I9100 AOSP NeatROM Slim v2.1 (4.4.2)
I9100 AOSP NeatROM Slim v2.1 (4.4.2) Mirror 1
I9100 AOSP NeatROM Slim v2.1 (4.4.2) Mirror 2 Thanks to @Quuki
MD5 Sum: b40b7bec74cd9a88af1c826b70ecd076

Google Apps


Please don't post any mirrors. I count the downloads

Complete NeatROM File Mirror is available here Thanks to @ApriliaM3

If you like my work, please consider a small donation to help me continue developing
BACKUP, BACKUP, BACKUP...

I strongly recommend performing a Nandroid backup before installing Rom



-Download KitKat CWM Recovery and save zip to internal SDcard
-Download AOSP NeatROM and save zip to internal SDcard
-Download Google Apps and save zip to internal SDcard
-Boot into CWM or PhilZ Recovery (Volume up + Home + Power)
-DO A DATA WIPE / Clean to install a new ROM
-Go to Advance and Select Wipe dalvik cache
-Go to Mounts and storage, select Format system, Format preload
-Select Install zip from SD card
-Flash KitKat CWM Recovery
-Reboot RECOVERY
-Flash NeatROM
-Flash Google Apps (optional)
-Reboot your device




CREDITS
Big Thanks to @Biftor
Slim Roms
Google
CM Team
tarzan11

Beta Testers: Twinn,

If you want to send me a donation to show your appreciation for my work,
I’d really appreciate it!



A BIG thanks to my donors:
 

norskedroid, electricsheepdreamer, JeLeNa_3, churapa, djadja_jura, javermejo, Little jim, lestat1929...etc






Big Thanks to momo.martinovic




[rom][kk][jan 13][aroma_installer][4.4.2][vivekrom_omni_build2]

$
0
0
***WELCOME TO VIVEKROM_OMNI FOR GALAXY S2 I9100***






**THREAD CONTAINS**


*FOR LATEST UPDATE >>> SEE THE FIRST POST
*INSTALLTION INSTRUCTION AND OMNI ROM INTRODUCTION >>> SEE THE SECOND POST
*F&Q >>> SEE THE THIRD POST
*FOR DONATION >> SEE THE FOURTH POST
*FOR OLDER DOWNLOADS>> SEE THE FIFTH POST




***VIVEKROM_OMNI_BUILD_2***:HIGHFIVE:***



**AROMA INSTALLER OPTIONS**





LAUNCHERS:

*LAUNCHER3
*LIGHTNING LAUNCHER(ITS COOL:D)

CHOOSE APPLICATIONS:

*EMAIL
*EXCHANGE2
*LIVEWALLPAPERPICKER
*QUICK SEARCH BOX
*VIDEO EDITOR
*VISUALIZATION WALLPAPERS
*GOOGLE SEARCH

CLOCKS:

*DASH CLOCK
*DESK CLOCK

GALLERY:

*GOOGLE GALLERY
*GALLERY

CAMERA:

*CAMERA2
*GOOGLE CAMERA

MUSIC PLAYERS:

*APOL0
*MUSIC2


KERNELS:

*GUSTAVO TWRP
*APOLO REGULAR
*APOLO EXT V0
*GUSTAVO CWM


FEATURES:
Firmware:VIVEKROM_OMNI_BUILD2(AROMA INSTALLER)(JAN 13, 2014) (4.4.2)
*Modem: XXMS4
*Fully Deodexed
*Zipaligned
*BusyBox
*NO boot sounds
*Removed Bloatware
*Init.d Support
*More Init.d Tweaks
*More Build.prop Tweaks
*Enabled Usb Mass Storage
*Vivekrom bootanimation
*4 way reboot option
*Active display
*Clear all button
*Network indicator
*Memory indicator
*Different battery bars
*Add screenshot in power menu
*Sound toggles
*Customizeable toggles
*art is working
and many more...

**TWEAKS FOR BATTERY AND PERFORMANCE**
- Full memory management .
- Zipalign apps in "/system" at every boot, and apps in "/data" every 48 hours.
- Increased SD Card read-ahead cache to 2048 KB to improve SDCard write/read speed.
- Ad blocking.
- Battery life improvements.
- Network TCP tweaks
- File system speedup.
- Build.prop tweaks and improvements.
- Cleans log files and tombstones at every boot.
- Many other tweaks for better performance and battery life!
-Included ram manger tweaks for better multitasking
(FEEL THE SMOOTHNESS , ENJOY)


**DOWNLOAD SECTION**

VIVEKROM_OMNI_AROMA_BUILD2
SUPERSU.ZIP

**SCREENSHOTS**































**CREDITS**:

*lifehacker7 (for the banner)
*slaid480(for his awesome tweaks)
*@pankaj88 (for aroma installer)
*@red-devil
*@matt95
*@Myself5
*chaosmodo
*@pedestre
*gustavo
*omni team
*@Rosario34
*@#Superuser

*guys pls pls..if i have forgot anybody ..forgive me..and pm me asap..thanks.

*ATLAST A BIG BIG THANKS TO NEAT ROM FAMILY MEMBERS(because i have learnt many things from them

CHANGELOG:

https://changelog.omnirom.org/
https://gerrit.omnirom.org/#/q/statu...ndroid-4.4,n,z

LINKS TO MY ROMS AND GUIDES:


VIVEK ROM 4.1.2

SUPERLITE VIVEK ROM 4.1.2

BUILD YOUR OWN CM OR CM BASED ROM



DONT FORGET TO HIT THE THANKS BUTTON IF YOU THINK IT DESERVES TO HAVE


XDA:DevDB Information
VIVEKROM, a ROM for the Samsung Galaxy S II

Contributors
corruptionfreeindia, corruptionfreeindia
ROM OS Version: 4.4.x KitKat
ROM Kernel: Linux 3.0.x
Based On: AOSP

Version Information
Status: Stable
Current Stable Version: VIVEKROM_OMNI_BUILD1
Stable Release Date: 2014-01-12

Created 2014-01-11
Last Updated 2014-01-12

[ROM][KERNEL][285MB] Revolution Rom UX 2014 BUILD 1 (12-01-2014) - Note 3 Porting

$
0
0
Hi, i'm presenting you my last creation, RevolutionRom UX 2014!

Features:
*SuperLite: only 285MB! You can download some additional mods from 2nd post
*WanamLite XWLSW 14.6 Base
*Galaxy Note 3 UI

*Themed and Ported Apps from Note3 : Dialer,Browser,Camera,Gallery,In-Call Graphics,Music Player and Calculator (thanks rrgrrg),Sms,S-Memo,Settings,Multiwidows,Video Player,Setup Wizard,My Files, Accuweather 2013 Widget, Digital Clock Widget,Fm Radio

*New theme from the rom: Whole graphic framework ported from Note3
*New Note3 Styled Settings (different tabs,different order, different items)
*Great Audio Quality thanks to AC!D SoundMod
*Note 3 Sounds
*All app textures updated with Note3 ones


*New Statusbar ported from Note3:
-original Note3 quick toggles thanks to _Sale_*
-Fixed White Statusbar on apps with white background thanks to Kitkat gradient
-All resources updated with e note 3 ones
Disabled quickpanel autoscroll and added single line notification date just like Note3

*Fixed switch in framework
*Note 3 Wallpapers
*Added Torch App
*Added new ripple effect for stock lockscreen directly from Note3
*ZipAlign
*Fixed lockscreen statusbar transparency
*Note3 Lockscreen
*Ability to change Dpi
*Revolution Kernel 2.0 : (see 2nd post for link to kernel thread)
*Other features from WanamLite and from the old RevolutionRom Build 4
*Lots of "under the hood" tweaks













Download:

Build 1 (12-01-2014): http://d-h.st/I2P

[ROM][4.3.1] PhenNnom's TouchNature v2.0 - Fast & Stable [S3 Look]

$
0
0
PhenNnom's TouchNature v2.0


This is probably best custom ROM for Samsung Galaxy S2. Why ?
It's CyanogenMod base, full touchwizzed (NatureUX), increased performance by tweaks & modding sys/apps/framework, not bloatware (no S apps, but launcher, system icons, keyboard, widgets and only that.

Changelog
V2.0
-Updated from 4.2.2 to 4.3.1

-NatureUX Launcher now can hide apps (same as original 4.1.2 ROMs)
-Increased scroll performance
-Fixed Accu Weather Widget
-No more bloatware (No S Voice, Samsung Apps)

Preview (Screenshots)



DOWNLOAD
http://d-h.st/JVY

Working
Calls, SMS, Internet
Wi-fi,GPS, Bluetooth, USB&WIFI Tethering
Brightness, Camera, Audio

Not working
Just minor CM10.2 bugs
My wife can't make cookies, but it's acceptable.=]

Thanks
Nilac8991 for some TW resources
Cyanogen, XDA, Google

[ROM][APHLA]BlackCherryS Smooth,Super

$
0
0
BlackCherryS ROM is a combination of the four Super ROMs Available
Paranoid Android + AOKP + Cyanogenmod + MoKee =BlackCherryS

ScreenShot:




Video from This Rom :
Thanks to cobra11111
http://www.youtube.com/watch?v=t5d2tU3ZuGg&hd=1

Thanka to Troubadour666
little review too here , with xposed activated.


Features:


All in One Rom [PA, AOKP CM & MoKee]
* Latest Version Nightly Builds
* All Features from CM
* Parts from Slim Bean
* Parts from Carbon
* Parts from PAC-Man
* Of course KitKat 4.4

Not work:

* You tell me

Changelog:
Press me

How to install:

* Download the ROM and GApps

* Reboot to Recovery

* Wipe data/factory reset

* Format System

* Flash the ROM and then GAapps

* Wipe Cache and Dalvik Cache

* Reboot your phone

* Enjoy

Download Link:
Mod Edit link removed
GAPPS:
gapps-kk-20131208.zip

My website:
Press me

Thanks to:
Cyanogenmod
AOKP
MoKee
Pa
Pac-man
Slimroms


Sent from my iPhone using Tapatalk

[FFOS][v1.4][JB][4.3] FirefoxOS dualboot with CM10.2

$
0
0


XDA:DevDB Information
FirefoxOS v1.4 dualboot w/ CM10.2, a ROM for the Samsung Galaxy S II

Contributors
_AtilA_

Version Information
Status: Testing

Created 2014-01-16
Last Updated 2014-01-15

[ROM][v1.4][WIP] FirefoxOS dualboot with Cyanogenmod 10.2 for SGSII (i9100 /i777)

$
0
0
Hi there!,
I've been working on supporting Samsung Galaxy S2 (mostly i9100, partially i777) with FirefoxOS for a long time, and I would like to share my work with you.


Dualboot
General info
System files (/system) are installed on the HIDDEN partition () so they DON'T conflict with CyanogenMod 10.2 ROM.
I use CyanogenMod Kernel with no modifications, all dualboot stuff is based on initramfs (indeed is based on Siyahkernel approach).
How to dual-boot
It's a rudimentary mechanism so far. You have to: adb shell, and type (no matter where ROM you are):
If you want to boot into CM10.2 - Note: If you don't have installed CM10.2, please don't do this!!:
Code:

# cr.sh 1
If you want to boot into FirefoxOS - Note: it can be any number different from 1, i.e: cr.sh 3, cr.sh 5:
Code:

# cr.sh 2
Your device will reboot in this very moment, and will boot into the selected ROM.
The first time, FirefoxOS ROM will be booted by default.

Downloads
I'm providing a CWM installable .zip so you can test it without having to build the whole system.
Installing
Quote:

  • Boot into recovery mode.
  • Make a backup (as always).
  • Save your backup in other place than your device (no matter what partition you are using), please.
  • adb push ffos-sgs2-jb-version-2014.zip /emmc
  • Install zip from sdcard
  • Insall zip from internal sdcard
  • Select the .zip file
  • Install it!!!

In case you want to go further and compile everything from scratch, I would suggest you to see my G+ post with detailed instructions on how to build it by yourself.

Of course, all my work is available under my Github account.

Features at a glance:
  • Dual boot with CM10.2 (if you have installed it)
  • Rooted
  • Adb Insecure
  • FirefoxOS v1.4

What's not working:
  • Flickering graphics
  • Camera
  • Mobile data
  • Wifi on i777
  • Hardware Home button on i777

Do not expect a very stable version!

Enjoy!

_AtilA_ (@longor)


XDA:DevDB Information
[ROM][v1.4][WIP] FirefoxOS dualboot with Cyanogenmod 10.2 for SGSII (i9100 /i777), a ROM for the Samsung Galaxy S II

Contributors
_AtilA_
ROM OS Version: 4.3.x Jellybean

Version Information
Status: Alpha

Created 2014-01-16
Last Updated 2014-01-16

[ROM] Dirty Unicorns 4.4.2

$
0
0

Dirty Unicorns (DU) is a custom ROM originally based off AOKP but now OMNI-ROM, brings you a great mix of stability and customization. The idea to start a ROM like this was purely out of boredom but later turned into a form of an addiction, a good one. We began to have fun while still doing things the right way. By doing so, we received high praise from not only our users but by fellow developers of other ROMs that enjoy seeing things done the right way. This ROM will always be free of charge without any strings attached or any of it's developers luring you into donating or any form of "pay to flash".

"Give credit and thanks where is due!" That's something that has fuel the way we do things! With that said, we would like to go ahead and credit those individuals and groups that have made this ROM possible with their original code and contributions to the Android community.....

| Omni-ROM | AOKP | ChaOS | Paranoidandroid | SlimROMs | Preludedrew | Official Testers / Translators |

Believe it or not, we are human and we do forget things. If we have left someone out of the credit/thanks list, just PM us and we'll gladly add on to the list.



-- Facebook Sync Hack
-- PDroid patches included
-- Immersive mode
-- Hot Reboot Option
-- Appbar (ribbons)
-- Customizable Quick Settings
-- Customizable power menu
-- Customizable lockscreen shortcuts
-- App Ops access in Settings
-- TRDS (built in theme in settings)
-- Statusbar Clock options
-- NavBar Options
-- Halo from Paranoidandroid
-- Halo size changer
-- Hardware key remap mod
-- Battery Bar / Circle batteries
-- Network speed indicators in statusbar
-- Koush Superuser
-- Build.prop mods
-- Init.d Tweaks
-- Active Display (Moto X notifications)
-- ListView Animations
-- Custom System Animations
-- Custom BusyDialog
-- Advanced Low Battery Indicator options
-- ScreenShot QuickTrash
-- Color Changing PhaseBeam
-- Gesture Anywhere
-- Button Light Notification

-- Much More, just look in Settings/Dirty Tweaks and ENJOY!!!



- Go Into Recovery
- Format system,data,cache
- Flash Rom and reboot
- Once the ROM boots, reboot back into recovery
- Flash the recommend GAPPS and ENJOY!


- Nothing so far but if you find something, let us know


Code:

- Initial Kit Kat release


DOWNLOAD LINK -
ROM
Gapps





We've had some awesome contributions in our G+ community recently. Check out these awesome signature banners that fans have made for us!

http://i.imgur.com/x32AD8E.png
http://i.imgur.com/gikqfU5.png
http://i.imgur.com/Mbw2VbH.png
http://i.imgur.com/Pnlyo9z.png
http://i.imgur.com/RLrHpAt.png
http://i.imgur.com/EK9IubM.png
http://i.imgur.com/aEs0JHy.png
http://i.imgur.com/OGcjM2J.jpg

Credits and Thanks to both Stephanie Mae and Scott Markiewicz for making these banners!

Attached Thumbnails
Click image for larger version

Name:	Screenshot_2014-01-17-16-44-35.png
Views:	N/A
Size:	108.1 KB
ID:	2521555   Click image for larger version

Name:	Screenshot_2014-01-17-16-05-21.png
Views:	N/A
Size:	191.1 KB
ID:	2521556   Click image for larger version

Name:	Screenshot_2014-01-17-16-05-31.png
Views:	N/A
Size:	193.3 KB
ID:	2521557   Click image for larger version

Name:	Screenshot_2014-01-17-16-05-37.png
Views:	N/A
Size:	195.4 KB
ID:	2521558  

[ROM] [GT-I9100][AOSP][Unofficial][4.4.2][23/01/14] - Gummy Rom

$
0
0
GUMMY

Screenshots

Gummy ROM is made for speed, stability and to stay as closely in line with AOSP as possible while still supporting a large amount of devices and giving you all of the features you love. It isn’t slowed down by features you’ll never use nor is it so slim as to be just another AOSP build.*

Features:

* New base built from AOSP
* Status Bar Mods
* Hardware Key Mod
* Many Wallpapers
* Performance Control
* Application Permission Controls
* Carrier Label Options
* Lock clock widget
* QuickSettings
* Theme Manager

Device Specific:

Whats not working...
* Nothing (let me know, device issues only)


ChangLOG:

Please review out Gerrit instance to keep up with changes daily...

Instructions for installations:

1. Download ROM
2. Download Gapps
3. Push to sdcard
4. Reboot Recovery
5. Wipe Data and Cache
6. Install ROM
7. Install Gapps
8. Reboot System

Contributions:

- Thank you to Cyanogenmod for device and hardware repositories. Without this, porting * * Gummy to QCOM devices would have been nearly impossible.
- Thank you to Google for the best source code.
- Androidfilehost.com for hosting our file servers!

Team Members: In alphabetical order

Primary Developers:
Cphelps76, Kejar31

Developers and Device Maintainers:
Bkjolly, BytecodeMe, DHacker29, Hashcode, NoCoast, Papi92, TDM, Xoomdev

Artwork direction and development
ChadFrankos, Cphelps76, Kejar31


Github- https://github.com/TEAM-Gummy

Gerrit- http://review.gummyrom.com/#/q/statuspen,n,z

Device Kernel Source - https://github.com/CyanogenMod/andro...msung_smdk4412

Twitter- @gummyRom

GAPPS - we now recommend PA-Gapps

ROM

XDA:DevDB Information
[ROM] [GT-I9100][AOSP][Unofficial][4.4.2][23/01/14] - Gummy Rom, a ROM for the Samsung Galaxy S II

Contributors
sooti
ROM OS Version: 4.4.x KitKat
ROM Kernel: Linux 3.0.x

Version Information
Status: Beta
Current Beta Version: M.1
Beta Release Date: 2014-01-23

Created 2014-01-23
Last Updated 2014-01-23

[MOD] External 2 Internal

$
0
0
This is a script that I found from the i9003 forum and modified a bit to suit i9100.

Personally I found that this script works better than the Root External 2 Internal SD because the remount happens while the phone is booting. Not after the phone has booted.

LIMITATION
Your storage will be reset if you mounted your phone as "Mass Storage"!
Do NOT mount your phone as Mass Storage if you use this script.
MTP and PTP mode works fine.

Best Practise
1. Partition your internal storage. I use 11Gb~12Gb Pit file.
2. Flash your custom ROM
3. Flash Attachment 2545298

Troubleshoot
If you need to trouble the script
1. install Root External 2 Internal SD
2. Find out the mounting point of your internal storage and SD card. They should look like
Code:

/dev/block/vold/179:9
/dev/block/vold/259:3

3. change the numbers in the script to match with your findings in 2.

Attached Files
File Type: zip swapcm11.zip - [Click for QR Code] (173.2 KB)

[CWM][Repo]ClockWorkMod Recovery - ||Kit-Kat Compatible||

$
0
0


ClockworkMod Recovery
Samsung Galaxy SII GT-I9100

All right guys im just going to keep this real nice and simple. Purpose of thread:
  • Latest CWM Recovery
  • Kit Kat 4.4 ROM Installation Compatible
  • Centralized Place to Put The Latest Recoveries

Just a heads up. This is NOT meant to be used as a kernel. I compiled these recoveries from source and only the recovery module is built therefore YOUR PHONE WILL NOT BOOT COMPLETELY AS THERE IS NO KERNEL. I made these recoveries so that users can flash
  • From ICS/JB to KK with ease
  • Flash This Over DorimanX Kernel So That You Can Update Your Kit Kat ROM
  • And Resolve Status 7 Errors When Flashing Kit Kat ROMs On A Out-Dated CWM Recovery

How To Use:
To Flash a Kit Kat ROM From a Out-Dated Recovery CWM Version Less Then 6.0.4.4:
  1. Flash This CWM Recovery File (Does Not Matter Which Version You Pick Just Take The Latest) And Reboot Back Into Recovery Via The Option In The Advanced Menu
  2. You Should Now Have A Grey Coloured Recovery With Version 6.0.4.X
  3. Follow ROM Installation Guide From ROM Thread

Recovery Versions
Click The Numbers To Download e.g. 6.0.4.6
  • 6.0.4.6 (Compiled From CM10.2 JB 4.3.1 Soruce)
  • 6.0.4.7 (Compiled From CM11 KK 4.4.2 Source) (LATEST)
Thanks For Reading :good:
P.S. This is my first thread in the Galaxy SII forum :eek:

XDA:DevDB Information
ClockWorkMod Recovery For SGSII GT-I9100, a Kernel for the Samsung Galaxy S II

Contributors
-Grift-, cyanogen
Kernel Special Features: Kit Kat Compatible CWM

Version Information
Status: Stable
Current Stable Version: 6.0.4.7
Stable Release Date: 2014-01-29

Created 2014-01-29
Last Updated 2014-01-29

[ROM][LSW][NEW!]WizzedKAT 1.0 .. The full leaked samsung kk style ;) .. Get it now !

$
0
0



Quote:

WizzedKAT Rom !! :D ..
its based on WanamLite LSW ,it has all the previous note 3\SIV series
feutures with extras and its super stable and very smooth
and the reason behind going back to lsw is that is alot more
stable for me for real :)..also the rom is alot lighter than my previous releases :D

Quote:

Quote:


- kernel included dorimanx 8.43v64 for best stability
- XXLS8 Modem
- Note3-like Accuweather widget >>removed widget shadow,fixed rain effect bug - new layout !! [NEW**]
- s4 clock widgets ported
- ADaway included
- Kitkat Leaked ROM Statusbar icons with gradient [NEW**]
and fixed the lockscreen so it would also appear there too !!
- Partially Fixed Yamaha Chip noise on loud volumes using headphones (MusicFX,AudioEffectService mods) [NEW**]
- Latest Viper4Android app for amazing audio tuning [NEW**]
- Hovering Controls app for note3-like guestures
- Note 2 popup browser
- Mostly used "Removed apps"from NeatROM Aroma restored (samsung apps,samsung widgets..etc)
- Samsung Keyboard With Numbers row
- leaked kitkat styled fm radio app [NEW**]
- new inverted google play store
- Flash Player Now Fully supported !![NEW**]
- Music player is totally reworked (album arts,action bars) [NEW**]
- SamsungSans Font
- Note Pro Stock apps icons (~9) [EXCLUSIVE******]
- leaked-style stock launcher
- Note 2 gallery
- S-Note app instead of The Memo app ! [NEW**]
- S4 White multiwindow mod
- full s4 stock lockscreen(clock,wallpaper,flare effect)(no life companion)
- Galaxy Grand 2 wallpaper chooser (default home\lock screen are changed) [NEW**]
- s-health,s-planner widget included
- task manger shortcut
- Note 3-like Lidroid toggles
- samsung s3 bootanimation with s4 sound
- note 3 ringtones,ui sounds,alarms ..etc
- Media Storage Fix
- new EXCLUSIVE WizzedKAT theme !! (framework,systemui elements reworking)[NEW**]
+New Tab Textures similar to that of The leaked rom THANKS ALOT REALLY FOR tutangigi [NEW*****]
- rolle youtube app icon with the official hq one
- ported note 3 calculator
- phone & contacts
+removed ascending ringtone
+note 3 style dialer [NEW**]
+new elegant colors for contacts without pictures
- fixed some conflicting scripts and missing libs
- galaxy s3 video player port styled by me ..Now You can use it with dorimanx kernel !! [NEW*****]



[ROM][4.4.2][05/02/14][i9100][1.2.8] AOSB Project - The End of The Line !

$
0
0
Code:

* Your warranty is now void.
*
* I am not responsible for any issues you may have with your device after using this rom, plain and simple, it is in beta status and will have issues*

Introduction About AOSB Project KitKat Edition


AOSB Project based on CyanogenMod the best stable source



Team Members

AOSB Project Features:


OTA Support
MultiWindow
HALO
HALO MODS
HALO: make windows move able and scale able
Custom Navigation Ring
Custom Navigation Bar
Custom CRT Animation
Mobile Network Battery Saver Mode
Configurable up to user (LTE or 4G)
Advanced Battery Bar
Support Facebook Sync
App sidebar
Navigation bar with custom dimensions
Screen video recording
Configurable init.d
Build PropModder
Incoming calls dialog
RAM bar with custom colors
Builtin Xposed Framework
Xposed : Per-App Layout
Network usage stats
Audio : Stereo widening
Audio : Center frequency for Bass Boost
Active display (s-view alternative)
AD: Display Time out
AD: Turn Off Display
AD: Threshold to proximity
AD: Sort notifications by newest to oldest
AD: HUGE Fixes
mms: ios features
mms: Emoji and Smiley support
samsung kernel super charged
advanced low battery indicator options
LockScreen Notifications by AOSPAL
Lockscreen Blur[/LIST]
Please keep in mind some of the above features may not yet be fully ported into kitkat..

Thanks to 'codexc', its almost all his code! (98%),
Thanks to CynogenMod for the device and kernel code,



What is Android Open Source BAM Project?

it is a custom ROM developed as free and open source software based on the official releases of Android by CyanogenMod,
AOSB (ProBAM) ROM have been the pinnacle of perfection employing the best of all the Best ROMs in a Package which makes sense!.. While the latest one doesn’t incorporate a slew of features.

Whats new in CyanogenMod 11
On 6 November 2013 the CyanogenMod team started pushing the code of CyanogenMod 11, based on Android 4.4 KitKat .

Whats new in Android 4.4.x
http://codexc.com/blog/2013/12/whats...4-1-and-4-4-2/

Changelog
Find our latest Full change logs
Find our latest GitHub change logs


Installation instructions so If installing for the first time:


To install this ROM you will need to have an unlocked boot loader and a custom Recovery such as TWRP or ClockWorkMod installed
Copy the downloaded ProBAM to your phone.
update recovery, is required for install android kitkat
Boot into your recovery
Back up your ROM
Enter recovery
Make full wipe "included "system"
Select Recommended kernel for first install
Install the ROM
install GAPPS package
Reboot - the first boot can take up to 2 minutes
Recommended to Reboot again after ROM is up for the first time
2 second to up ! and 1 second to restart or shutdown ! it is ProBam


Cheers!

Sources:
Main Source

Device

Kernel

Download

Download

Gapps
Gapps Core

Gapps from Paranoid, includes AOSP launcher with voice detection(recommended!)

Instructions:
1. Wipe data/cache using philz recovery
2. wipe system
3. flash rom
4. flash gapps

Change Log

5/2/2014 - 1.2.8
Merge CM lasts Changes
SystemUI: Keep force close on some devices when change languange
YouTube: Fix glitch and some audio issues
AOSB Exclusive Feature Custom SmoothProgressBar:
Note3 : update to new kitkat bootloader
early data connection fix
Remove KeyguardTestActivity Hope this improved battery life
AOKP Navigation bar menu in settings for all devices now
Quick Record tile
AIO AOKP custom system animations
AOKP Animation Control
ListView Animation
Keyboard Animation
Scrolling Animation
Add OmniSwitch to Setting
DarkUI: fix search textfield
DarkUI: fix number picker blue line and highlight
Lockscreen Notifications: rewrite add notification logic
Lockscreen Notifications: make dynamic width a device overlay setting
Lockscreen Notifications: Show all notifications when waking device
SoundPack: Audio Themes Settings
SoundPack: Create SoundPack in SD Card if not exists
SoundPack: Update AOSB Default SoundPack to iOS Pack
Dialer: Fix chinese Dailer Crash
Settings: Fix NL Crash
Settings: Fix RU Crash
Settings: Fix BR Crash
Camera: Add Burst mode
Camera: Add indicator icon for burst mode
Camera2: Enable 10MP and nHD pictures modes
Camera2: Set default video quality to the highest
Camera2: New Storage configuration options
Mms: There is no reason to use ugly Icons
Mms: Display message type properly for MMS and SMS
Mms: Fix the send button disappearance after selecting the forward recipient
Mms: Update widget to fit kk
Revert PowerSaverManager
Revert center clock
fix wifi not connecting, once the APN gets disabled state
Add double tap sleep feature to secure lockscreens

03/02/2014

First release


Follow us to keep in touch ::

G+:
https://plus.google.com/+ProBamNet
Facebook:
https://www.facebook.com/CodexCorp
Twitter:
https://twitter.com/CodeXperts

Offical website
http://probam.ne

Source on github
GitHub
CM Gerrit

Build AOSB from source
source

About the developer
http://codexc.com/me/

Thanks and Credits for :
CyanogenMod Team!!!
PAC-man
Slim Bean

Screenshots:








XDA:DevDB Information
[ROM][4.4.2][i9100] AOSB Project - The End of The Line !, a ROM for the Samsung Galaxy S II

Contributors
sooti
ROM OS Version: 4.4.x KitKat
ROM Kernel: Linux 3.0.x

Version Information
Status: Stable
Current Stable Version: 1.2.7
Stable Release Date: 2014-02-03

Created 2014-02-03
Last Updated 2014-02-05

[ROM] [OFFICIAL] CyanogenMod 11 Nightlies [4.4.2] [GT-I9100]

$
0
0


Samsung Galaxy S II I9100

Hi guys, this is the development forum for CYANOGENMOD 11 for the Samsung Galaxy S II .
First of all I want to mention that I am not affiliated with CyanogenMod. I did not compile anything.
This topic is in Original Development because it is OFFICIALY supported from the Cyanogenmod Team.
I created the topic because there wasnt an official one related to the rom and also I do not take any credits.
All Credits go to the CyanogenMod Team.


Code:

* Your warranty is now void.
 * Me / CM Team are not responsible for bricked devices, dead SD cards,
 * thermonuclear war, or you getting fired because the alarm app failed. Please
 * do some research if you have any concerns about features included in this ROM
 * before flashing it! YOU are choosing to make these modifications, and if
 * you point the finger at any of us for messing up your device, we will laugh at you.
 * Collectively, and at the same time.
 */

CyanogenMod Website

CyanogenMod Wiki


CyanogenMod is a free, community built, aftermarket firmware distribution of Android 4.4.2 (Kit Kat), which is designed to increase performance and reliability over stock Android for your device.

This is the support thread for CM11.0 on the Galaxy S II I9100 .It is still a major work in progress, so please make sure you have a backup that you can restore if you run into problems.

All the source code for CyanogenMod is available in the CyanogenMod Github repo.
And if you would like to contribute to CyanogenMod, please visit their Gerrit Code Review.

Changelog

Latest Downloads

You Can Also Use CyanogenMod Installer for Installing the ROM

Google Apps Download

Installation

1) BACKUP all your data , apps etc.
2) You need CWM Recovery version 6.0.4.4+ (Flash Gustavo_s CM CWM Kernel to get it)
3) Copy the ROM and GAPPS Zip's to your device
4) Boot into Recovery and Wipe Data/Factory Reset.
5) Wipe Cache and Dalvik Cache(Advanced)
6) Install the CM 11 Rom Zip and GAPPS Zip
7) Wipe Cache Again
8) Reboot


Note : First Boot Can take upto 5-10 minutes

KEEP IN MIND THAT THESE ARE EARLY BUILDS AND WE EXPECT THERE TO BE SOME BUGS

If I helped you in any way, Please hit the THANKS button :good:

XDA:DevDB Information
Official Cyanogenmod 11 Nightlies, a ROM for the Samsung Galaxy S II

Contributors
koolkunz
ROM OS Version: 4.4.x KitKat
Based On: CyanogenMod

Version Information
Status: Alpha

Created 2014-02-03
Last Updated 2014-02-06

[USER-CHOICE][AROMA][BLOATWARE REMOVER TOOL][DESIGN YOUR ROM][I9100]

$
0
0
BLOATWARE REMOVER TOOL FOR I9100 TW ROMS
I WOULD LIKE TO THANK @the_pirate_predator WHO GAVE ME IDEA TO MAKE THIS TOOL

So guys..i have been making superlite roms for two devices and they are extremally bloated as hell..wonder how?

ok..am sharing all the names of apks/libs/other useless stuff in the form of "AROMA INSTALLER" ..

FEATURES:

*OVER 100 APPS HAS BEEN INCLUDED IN AROMA(CHOOSE THE APP WHICH U WANT TO REMOVE)

*OVER 11 LIBS HAS BEEN INCLUDED (CHOOSE THE LIB WHICH U WANT TO REMOVE)

*AND OTHER USELESS STUFFS SUCH AS

SYSTEM/USR/SREC
SYSTEM/FONTS
SYSTEM/MEDIA
SYSTEM/VENDOR
SYSTEM/TTS ETC..


HOW TO INSTALL THIS TOOL/SCRIPT::confused:


*DOWNLOAD THE SCRIPT AND PLACE IT IN THE ROOT OF EITHER EX SD CARD/INT SD CARD
*BOOT INTO RECOVERY
*DO A NANDRIOD BACK UP IF U HAVE NOT DONE BEFORE
*NOW INSTALL THE AROMA ZIP
*REBOOT



DOWNLOAD LINK :



BRT_TW_I9100_VERSION2

BRT_TW_I9100_VERSION1

CREDITS:

*@the_pirate_predator
*@avirk
*MylifeRocks10

XDA:DevDB Information
BLOATWARE REMOVER TOOL, a Tool/Utility for the Samsung Galaxy S II

Contributors
corruptionfreeindia, corruptionfreeindia

Version Information
Status: Stable
Current Stable Version: 1.1
Stable Release Date: 2014-02-03

Created 2014-02-03
Last Updated 2014-02-04

[ROM][GT-I9100]CyanogenMod 11 official nightly build[03.02.2013]

$
0
0
CyanogenMod is a free, community built, aftermarket firmware distribution of Android 4.4.2 (KitKat, which is designed to increase performance and reliability over stock Android for your device).




CyanogenMod is based on the Android Open Source Project with extra contributions from many people within the Android community. It can be used without any need to have any Google application installed. Linked below is a package that has come from another Android project that restore the Google parts. CyanogenMod does still include various hardware-specific code, which is also slowly being open-sourced anyway.

All the source code for CyanogenMod is available in the CyanogenMod Github repo. And if you would like to contribute to CyanogenMod, please visit out Gerrit Code Review. You can also view the Changelog for a full list of changes & features.





We'll not support users and answer questions from users which:
- are running a custom kernel
- have flashed mods
- modified system files
- didn't follow our intructions word by word
- are unfriendly

Even if you tell us that your problem is not related to your custom kernel /mod / magic => WE DON'T CARE!
Your mod => your problem!




Official CyanogenMod Wiki: http://wiki.cyanogenmod.org/w/I9100_Info



http://wiki.cyanogenmod.org/w/Known_...page_for_i9100




First time installing CyanogenMod 11 to your Galaxy S II, or coming from another ROM:
- Read the official wiki
- Copy GApps and CM11 ZIPs to your internal SDCard
- Make sure you're NOT RUNNING A KERNEL WITH THE MMC-SUPERBRICK-BUG. If you're unsure, flash this ClockworkMod-Recovery using Odin/Heimdall.
- Make sure you're running a proper working ClockworkMod-Recovery (latest)
- Boot into Recovery
- Flash CM11 zip from internal SDCard
- Flash GApps zip from internal SDCard
- DO A DATA WIPE / FACTORY RESET (otherwise your device will be stuck at boot)
- Reboot
- Don't restore system data using Titanium Backup!
- Restoring Apps + Data might cause problems and is not recommended, avoid it if possible!

Upgrading from earlier version of CyanogenMod 11:
- Copy CM11 ZIP to your internal SDCard
- Boot into Recovery
- Flash CM11 zip from internal SDCard
- Reboot

Upgrading from CyanogenMod 10.2:
- Copy 4.4.2 GApps and CM11 ZIPs to your SDCard
- Boot into Recovery
- Flash CM11 zip from SDCard
- Flash GApps zip from SDCard
- Reboot




CM11 official nightly builds:
http://download.cyanogenmod.org/?device=i9100&type=


If you're going to reuse our work, which we're doing for free, be fair and give proper credits.
This is the only payment we're really demanding and we deserve it to be mentioned because of the countless hours we've put into this project.
Open-Source doesn't meant Out-of-Respect!!!

[ROM]Coloros-1.0 [4.2.2] GT-I9100 Weekly update

[ROM] [4.4.2.] [feb8] [HALO] [TRDS] [CM11] **crDroid simple** [Build 1]

$
0
0
Quote:

This is crDroid Simple for Galaxy SII
crDroid Simple build will always be based on CyanogenMod with some extra and few features (Cool and useful)
Features


Frameworks and Settings

New Halo;
Movable and re sizable Halo window;
Screenshot quick trash;
Power menu QS tile (simple press to go into power dialog or long press to go into reboot dialog);
Power menu added in navring targets;
Non intrusive call;
Navigation bar dimensions;
Enable or disable navigation bar;
Low battery warning options;
Lockscreen see through with blur effect;
Lockscreen PIN keypad shuffler;
Lock before unlock (Show sliders before secure unlock);
Extended QS options (3, 4 or 5 tiles per row + option to duplicate tiles in landscape mode);
QS tiles custom colors and transparency with ribbon linked;
Notification drawer custom background and transparency;
Notifications row transparency;
Custom clear all recents button (place it in any corner of the screen);
RAM bar;
Option to hide app's status bar notification icons;
GPSTile from SlimRoms;
TRDS from SlimRoms (Dark droid);
TRDS tile;

Always Have a full functional Backup. Just in case!


DOWNLOAD

Build 1


PA gapps


Thanks to:

Cristiano Matos
elia222
CM Team
Slim Roms Team
ParanoidAndroid Team
temasek
Omni
sien1996 for testing
And Many More...

original thread


github

Fusion Rom V1.1 cm11 based

$
0
0
This rom is an edited cm11m3(snapshot) with the following minor changes:
V1.1
Flat ui launcher
Sammy ui sounds
S4 alarms and ring tones
Focal camera app
air gesture app
better aosp keyboard
super beam(similar to s-beam) for sharing
note 3 wallpapers
s4 lockscreen(ripple lens flare
bunch of utility apps(sharing data dropbox,root explorer adaway and many more)[you can always apps using root explorer delete it if you dont like it]
N5 boot animation
Rocket music player
added widgets
Slaidy boost v2.3
edited buid prop

Oc kernel and xperia widgets provided with download link
V1.2 coming soon
Instructions:Flash it via cwm
Note:my s2 is in repairs so i couldnt test the rom do take a backup,if it goes in a bootloop then restore the backup

NO SCREENSHOTS BECAUSE COULDNT TEST IT PLZ POST IF IT WORKS

BUGS
THERE SHOULDNT BE ANY IF THERE LET ME KNOW

Downloads
rom:http://d-h.st/W8j
xperia widgets:http://forum.xda-developers.com/show....php?t=1896161
Oc kernel:http://forum.xda-developers.com/show....php?t=2222843

Credits:
slaid480 for slaidy boost
http://forum.xda-developers.com/show....php?t=1585774
Viewing all 397 articles
Browse latest View live




Latest Images