Quantcast
Channel: xda-developers - Galaxy Ace S5830 Themes and Apps
Viewing all 535 articles
Browse latest View live

[ROOT]Kingo Android Root for all Android devices

$
0
0
Hi alls , I have been used this for this Kingo Root . It's so fast when root and make your phone better performance .

For noob;
WARNING!! It will void your warranty , if you want revert back to normal , back to stock rom for give your system always fresh with no problem and so carefully

Q; Why this software does not detected my phone?
A; You should tick/enable USB debugging and should be at Settings/Application/Development and Settings/Developer settings :good:



Quote:

What’s good in rooting with Kingo Android ROOT?

Faster performance
Preserve battery life
Access root-only apps
Remove carrier bloatware
Customizable appearance
Attain admin level permission

Instructions;

1. Download this software at Download Link section at section 2.
2. Install this software.
3. Connect your phone and make sure USB debugging already ticked.
4. Wait for connecting devices and if finish connect, press Root button.
5. Wait for 3-4 minutes for rooting your phone.
6. It will auto reboot and if it's boot, you will success root your phone.
7. Enjoy !

And also you need Unmount SDCARD first before rooting . If you don't Unmount SDCARD, it will not going to root so Unmount first .
Thank you, @Flamestorm

[mod] [port] bbm v.1.0.3.87 armv6 ics up

BBM For Gingerbread

[GUIDE][GB]How to place a custom icon on the title bar of a certain app

$
0
0
Hey guys!
After some of @SpaceCaker 's modifications, we found out how to place a custom icon on the title bar of any app. You can use your app's iconfor reference. So, one of the synonyms that could be said for this guide is JellyBean Title Bar. The modification is very easythough, but the hard part is wether you find the right file which controls the title bar on a specified window. But, I can help you in this
After following the guide, if you didn't understand it properly, just give me the app and I will place the custom JB title bar on it as per your request.


Quote:

Requirments :

- Basic XML knowledge
- APK Multi TOOL/Whichever decompiling tool
- Sources on attachments


Quote:

There are 2 different methods to make this.
First method means that the custom windows are located on layouts folder.
Second method means that the windows are located on XML folder.

The first method is very good and is bugfree, but unfortunately it depends on the app. If wether he has the windows located
on layouts folder or XML folder
The second method is not fully bugfree. If the app's windows are located on XML folder then the title bar is going to be scrolled with the chooserboxes too. The only way to fix it is to create a layout for the window.
Quote:

Screenshots of both methods:

One of HelpCentre (1st method) example given below and the second of DSP manager (2nd method).





Quote:

1. Decompile the app you want to place the custom title bar. I will take a custom built app "HelpCentre.apk"
2. Download the sources on the attachments and place the layout "title" on the layout folder
and the custom id on ids.xml file on values folder.
Code:

<item type="id" name="imageView1">false</item>

Quote:


3.
Quote:

a) In the first method the windows are located on the layouts. So see the following :
Go to layouts folder and now find the layout which is resposnible for the first window

Let's use an example :

I have credits.xml file on the layout folder. Now on this window, i want to place a custom title bar.
To do this i should include the custom title on layout folder on the first lines.

To make this, paste this code after xmlns:android="http://schemas.android.com/apk/res/android">

Code:

<include android:layout_width="fill_parent" android:layout_height="50.0dip" layout="@layout/title" />
Be sure to place it on the correct order.

I also, have FAQ.xml too. If i want edit this file too, there will be no title bar as on the end of the guide we will add
NoTitleBar theme on AndroidManifest.xml So, therefore i have to place the same value on it too.

Again, after the code xmlns:android="http://schemas.android.com/apk/res/android"> place this one :

Code:

<include android:layout_width="fill_parent" android:layout_height="50.0dip" layout="@layout/title" />
What if you want to use a custom title for the another window?
Easy, we are going to create another exact file as title.xml just that we will rename it different, like titleFAQ.xml.
On this XML we will change the android:icon value. We can use whatever value for the icon. For example,
"@drawable/ic_credits" Then, we will paste the png you want to place on the drawable-mdpi.

Now in the FAQ.xml file you want to place another icon title we should change the layout target so according to what I did so far on the file, this is the target i should place.

Code:

<include android:layout_width="fill_parent" android:layout_height="50.0dip" layout="@layout/titleFAQ" />

Quote:

b) In the second method the windows are located on the XML folder. So follow below :
Go to XML folder and now find the XML which is responsible for the window.

So I will use the same example.

So let's say that the Credits.xml is on the XML folder. Now instead of including <include android:layout_width="fill_parent"......
you should include this code below xmlns:android="http://schemas.android.com/apk/res/android">

Code:

<CheckBoxPreference android:layout="@layout/title" android:title="Help Centre" android:key="Help_title_Centre" />
Android:title is the name of the title bar. You can set it to whatever name you want. Same goes with android:key.

To use another icon for the another title bar which is located on FAQ.xml like i mentioned before, change

Code:

<CheckBoxPreference android:layout="@layout/titleFAQ" android:title="Help Centre" android:key="Help_title_Centre" />

4. Now the final step is to go to AndroidManifest.xml and after the specified activity place the NoTitleBar theme

I edited Credits.xml and FAQ.xml so let's find their activity in there.

Code:

        <activity android:name="Credits">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
            </intent-filter>
        </activity>
        <activity android:name="FAQ">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
            </intent-filter>
        </activity>

I now will add the theme value on both activities. This is the code
Code:

android:theme="@*android:style/Theme.Black.NoTitleBar"
After all it will look like this



Code:

        <activity android:theme="@*android:style/Theme.Black.NoTitleBar" android:name="Credits">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
            </intent-filter>
        </activity>
        <activity android:theme="@*android:style/Theme.Black.NoTitleBar" android:name="FAQ">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
            </intent-filter>
        </activity>

Now we're done working. :)

5. Recompile the apk
6. Sign it (Always sign if you edit AndroidManifest.xml)

Quote:

Credits :

Full credits goes to the most amazing themer I have ever seen, @SpaceCaker!
He made many works for Touchwiz Resurrection ROM and I have based the guide upon that modifications just that I have edited
the code and fully explained it.
Also, Touchwiz Resurrection Team members @Vishnu pv and @radichification for their support!


Enjoy!


Regards,
Teddy

BBM for Galaxy Ace S5830 (Armv6)

$
0
0
Hi all XDA people, as the title said i'm here to provide you BBM app for our lovely device s5830 (armv6)...

before we go to the point, i want to say something...

This is not me who mod/made/create the app, i just want to share my happiness because i have BBM working on my device...
Once upon a time:D, a friend just gave me the link to download this app. Without wasting any time I directly go to the download. He's not explain anything to me(because i'm not asking anything:D), so i can't explain anything here...

Note: if i am doing WRONG by posting this thread, please someone ask the moderator to delete this thread.

By the way, I have tested it on my s5830 with stock 2.3.6 rom and it goes awesome, if someone who has different device/rom want to try, just try it and give the feedback so maybe some other guy who has the same device/rom know it...

Thanks to:
-Dhimas(who gave me the GB link)
-M Rusyidi Afif(i'm not sure, but i think he is the expert who made this because his name on the file)
-inwepo(for ICS and up download)

At last:
-download BBM HERE
-for ICS and above download HERE
for those using ICS custom rom and above i have not tried the apk yet, please give me feedback if you have tested it..

(GUIDE)(MOD)Changeable Lockscreen text like Galaxy4.

$
0
0
How to add the Lockscreen Text to any lockscreen.

As most know I have implemented this feature inside the Touchwiz Resurrection rom for galaxy ace i.
As seen below.



Basicly this mod was very easy to add .
What is inside the resources.zip ?
  1. LifeCompanionText.apk ( App to change the text )
  2. LifeCompanion smalis for the framework.jar
  3. SpaceFont.ttf for the CoolJazz font from S3/4

Basicly what you would need to do is:
  1. Download Resources Attachement.
  2. Extract it
  3. Decompile you’re framework.jar
  4. Go to the extract smali folder from the resources.zip and copy the smali folder to the smali folder of you’re framework.jar.
  5. Compile framework.jar
  6. Now we are going to add it to the frameworks location/allocate the text.
  7. Decompile framework-res.apk
  8. Find a lockscreen layout to you’re likes.
  9. I used “zzz_keyguard_screen_clockwidget.xml” but you would be able to put it inside : “keyguard_screen_tab_unlock.xml” for the normal sliding tab lockscreen and such.
  10. Open the layout you wanted and simply add this line above the clock layout or where you want
    Code:

    <com.touchwizres.lifecompaniontext.LifeCompanionTextView android:textSize="40.0dip" android:textColor="#ffffffff" android:id="@id/life_companion_tag" android:layout_width="wrap_content" android:layout_height="wrap_content" android:shadowColor="#7f000000" android:shadowDx="1.0" android:shadowDy="1.0" android:shadowRadius="2.0" />
    I placed this code just below
    Code:

    <view android:gravity="left" android:orientation="vertical" android:id="@id/clock_time_and_date" android:paddingLeft="7.0dip" android:paddingTop="2.0dip" android:layout_width="fill_parent" android:layout_height="wrap_content" class="com.android.internal.policy.impl.ClockWidget$TimeAndDate">
    of the "zzz_keyguard_screen_clockwidget.xml"
  11. Add this to the ids.xml
    Code:

    <item type="id" name="life_companion_tag">false</item>
  12. Compile framework-res.apk
  13. Decompile ur compiled framework-res.apk
  14. Now we are going to fix the ID Values. From the smali .
  15. Decompile ur compiled framework.jar
  16. Open
    Code:

    com/touchwizres/lifecompaniontext/LifeCompanionTextView.smali
    that’s inside the framework.jar
  17. Find
    Code:

    const v3, 0x10202cc
  18. This is the “life_companion_tag” ID (
    Code:

    <public type="id" name="life_companion_tag" id="0x010202cc" />
    ) inside public.xml
  19. We need to fix this to yours
  20. Now when u have changed the code from 0x10202cc to something like 0x1020299 or something depends on ur framework-res.apk
  21. U can compile the framework.jar
  22. Now zip the files together and make sure these are set properly.
  23. SpaceFont.ttf inside /system/fonts/**
  24. LifeCompanionText.apk inside /system/apps/**
  25. And then ofcourse you’re modified framework.jar and framework-res.apk inside /system/framework/**
  26. Now you are done ;)
  27. Happy modding ;)

On what roms can u apply this mod ?

Basicly it can be applied to ALL Roms atleast if u know what u are doing.

Attached Files
File Type: zip Resources.zip - [Click for QR Code] (1,011.7 KB)

[APP] Latest Samsung galaxy S4 Touchwiz Launcher v2.0 MDPI

$
0
0
Latest SGS4 Touchwiz Launcher v2.0


Hey guys presenting the best latest samsung touchwiz launcher , built to bring the pure touchwiz UX experience to your phone. Scroll down the pages and rejoice in a wondrous experience like never before rest the screenshots will speak for you..!! :cool:

Quote:

Features :
1. SGS4 Animations.
2. SGS4 Styled Desktop (Awesome)
3. SGS4 icons
4. SGS4 Styled Folder.
5. SGS4 Page and home indicators.
6. SGS4 app drawer.
7. SGS4 Styled expanded menu in both app drawer and desktop
8. Added SGS4 like notifications bubbles (clearer)
9. Full SGS4 user interface
!0. More Claerer Font (v2.0)
11. Reduced package size (v2.0)
12. Fixed lag now its more smooth (v2.0)
13. Minimum pages reduced to 3 (v2.0)
14. New page editor (v2.0)
15. Improved UI (v2.0)

Quote:

Requirements
Will work on any Android 2.3+ Device
Quote:

If anyone gonna include my launcher in your ROM, please send me PM and give me credits
Quote:

Installation
1. Simply install as normal apk
OR
2.Flash the attached zip file with cwm
Quote:

Downloads (V1.0)
Normal apk
http://www.mediafire.com/download/6b...twlauncher.apk

Flashable zip
http://www.mediafire.com/download/30...twlauncher.zip

Downloads (V2.0)
Normal apk

Flashable zip
Hit thanks if u liked my work :angel:

Screenshots:


Quote:

Credits..
shlnarang(me ;) )
cooee launcher(for base apk)
vishnu pv(for notification resources)

[REQUEST][APP] Samsung Galaxy S4 Messaging Apk for CM9


[APP][Widget] ★Huawei U8600-1 Digital Clock★

(GUIDE)(MOD)Paged Lockscreen like on 4.2+ (NEW)(GB+)

$
0
0
How to add PagedView to lockscreen.

As most of you all know the android 4.2+ has implemented an awesome new Lockscreen on wich u can swipe pages to show widgets and such.
Currently i have managed to create working pageview but for now without Widgets.
However you can add some custom stuff though ;).
i had added DigitalClok -> AnalogClock -> Device Info.
but you would be able to change it like what you want ;) as you can add unlimited LinearLayouts for adding new views.




Basicly this mod is very easy to add.
What is inside the resources.zip ?
  1. SwipeLock Smalis for Framework.jar

Basicly what you would need to do is:
  1. Download Resources Attachement.
  2. Extract it
  3. Decompile you’re framework.jar
  4. Go to the extract smali folder from the resources.zip and copy the smali folder to the smali folder of you’re framework.jar.
  5. Compile framework.jar
  6. Now we are going to add it to the frameworks location/allocate the text.
  7. Decompile framework-res.apk
  8. Find a lockscreen layout to you’re likes. (“zzz_keyguard_screen_clockwidget.xml” <- on this one i have NOT tested as in my test app when i used a Lockscreen overlay i couldnt swipe the pages so its likely this one not works but on the GB ones it does ;)
  9. so instead i used “keyguard_screen_tab_unlock.xml” ofcourse you would be able to add this in other lock layouts aswell.
  10. Open the layout you wanted and simply add this line above the clock layout or where you want
    I put this code above my clock code ( i setted minheight to 300.0dip so u would be able to swipe it at this height)
    Code:

    <com.spacecaker.swipelock.ui.SwipeView android:fadingEdge="none" android:layout_width="fill_parent" android:layout_height="wrap_content" android:minHeight="300.0dip" android:overScrollMode="never">
    And below you're clock layout
    Code:

    </com.spacecaker.swipelock.ui.SwipeView>
  11. So now we have that now we need to put the clock layout inside a LinearLayout
  12. Like this
    Code:

                    <LinearLayout android:orientation="vertical" android:minHeight="300.0dip" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_alignParentTop="true">
                            <com.android.internal.widget.DigitalClock android:id="@id/time" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="20.0dip" android:layout_marginTop="30.0dip" android:layout_below="@id/carrier">
                                    <TextView android:textAppearance="?textAppearanceMedium" android:textSize="72.0sp" android:ellipsize="none" android:id="@id/timeDisplay" android:layout_width="wrap_content" android:layout_height="wrap_content" android:singleLine="true" android:shadowColor="#c0000000" android:shadowDx="0.0" android:shadowDy="0.0" android:shadowRadius="3.0" />
                                    <TextView android:textAppearance="?textAppearanceMedium" android:textSize="22.0sp" android:ellipsize="none" android:id="@id/am_pm" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="8.0dip" android:singleLine="true" android:shadowColor="#c0000000" android:shadowDx="0.0" android:shadowDy="0.0" android:shadowRadius="3.0" android:layout_toRightOf="@id/timeDisplay" android:layout_alignBaseline="@id/timeDisplay" />
                            </com.android.internal.widget.DigitalClock>

                    </LinearLayout>

  13. So it would end up looking like this:
    Code:

            <com.spacecaker.swipelock.ui.SwipeView android:fadingEdge="none" android:layout_width="fill_parent" android:layout_height="wrap_content" android:minHeight="300.0dip" android:overScrollMode="never">               
                    <LinearLayout android:orientation="vertical" android:minHeight="300.0dip" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_alignParentTop="true">
                            <com.android.internal.widget.DigitalClock android:id="@id/time" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="20.0dip" android:layout_marginTop="30.0dip" android:layout_below="@id/carrier">
                                    <TextView android:textAppearance="?textAppearanceMedium" android:textSize="72.0sp" android:ellipsize="none" android:id="@id/timeDisplay" android:layout_width="wrap_content" android:layout_height="wrap_content" android:singleLine="true" android:shadowColor="#c0000000" android:shadowDx="0.0" android:shadowDy="0.0" android:shadowRadius="3.0" />
                                    <TextView android:textAppearance="?textAppearanceMedium" android:textSize="22.0sp" android:ellipsize="none" android:id="@id/am_pm" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="8.0dip" android:singleLine="true" android:shadowColor="#c0000000" android:shadowDx="0.0" android:shadowDy="0.0" android:shadowRadius="3.0" android:layout_toRightOf="@id/timeDisplay" android:layout_alignBaseline="@id/timeDisplay" />
                            </com.android.internal.widget.DigitalClock>
                    </LinearLayout>
            </com.spacecaker.swipelock.ui.SwipeView>

  14. Now we add another LinearLayout for you're second Page ;) i used the universal AnalogClock like this
    Code:

    <AnalogClock android:layout_gravity="center" android:layout_width="wrap_content" android:layout_height="wrap_content" />
  15. So now we again add a LinearLayout so it ends up looking like this:
    Code:

                    <LinearLayout android:orientation="vertical" android:minHeight="300.0dip" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_alignParentTop="true">
                            <AnalogClock android:layout_gravity="center" android:layout_width="wrap_content" android:layout_height="wrap_content" />
                    </LinearLayout>

  16. The end Layout would look like something like this:
    Code:

            <com.spacecaker.swipelock.ui.SwipeView android:fadingEdge="none" android:layout_width="fill_parent" android:layout_height="wrap_content" android:minHeight="300.0dip" android:overScrollMode="never">               
                    <LinearLayout android:orientation="vertical" android:minHeight="400.0dip" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_alignParentTop="true">
                            <com.android.internal.widget.DigitalClock android:id="@id/time" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="20.0dip" android:layout_marginTop="30.0dip" android:layout_below="@id/carrier">
                                    <TextView android:textAppearance="?textAppearanceMedium" android:textSize="72.0sp" android:ellipsize="none" android:id="@id/timeDisplay" android:layout_width="wrap_content" android:layout_height="wrap_content" android:singleLine="true" android:shadowColor="#c0000000" android:shadowDx="0.0" android:shadowDy="0.0" android:shadowRadius="3.0" />
                                    <TextView android:textAppearance="?textAppearanceMedium" android:textSize="22.0sp" android:ellipsize="none" android:id="@id/am_pm" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="8.0dip" android:singleLine="true" android:shadowColor="#c0000000" android:shadowDx="0.0" android:shadowDy="0.0" android:shadowRadius="3.0" android:layout_toRightOf="@id/timeDisplay" android:layout_alignBaseline="@id/timeDisplay" />
                            </com.android.internal.widget.DigitalClock>
                    </LinearLayout>
                    <LinearLayout android:orientation="vertical" android:minHeight="400.0dip" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_alignParentTop="true">
                            <AnalogClock android:layout_gravity="center" android:layout_width="wrap_content" android:layout_height="wrap_content" />
                    </LinearLayout>               
            </com.spacecaker.swipelock.ui.SwipeView>

  17. To Add More pages just add another LinearLayout with something inside ;)
  18. Now Compile framework-res.apk
  19. Now zip the files together and make sure these are set properly.
  20. framework-res.apk inside /system/framework/**
  21. And then ofcourse you’re modified framework.jar inside /system/framework/**
  22. Now you are done ;)
  23. Happy modding ;)


On what roms can u apply this mod ?

Basicly it can be applied to ALL Roms ;) atleast if u know what u are doing.


If you wanna see how i moddified mine take a look here https://github.com/spacecaker/git_st...d61cbb2c0e89ac
That shows u what changes i did ;) ^^ its on GingerBread SlidingTab Lockscreen just added it for making it look bit easier.

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

[Q] Google Play Store installation problem

$
0
0
I have a Samsung Galaxy Ace S5380i running on android 2.3.6. I have already rooted my mobile and transferred most of the applications on SD card to clear some internal space. I actually also deleted Google Play services, Google Play Books and Gmail as I am not using them. All other apps I re-installed such as Google Maps are OK apart from Google Play Store. It was initially showing No connection Retry.

I tried some methods posted on the website but nothing works. I tried clearing data and force-stopping the app, then reboot but after a while the app crashed when I tried downloading an application. I got this message: "The application Google Play Store (process com.android.vending) has stopped unexpectedly. Please try again"

I wiped also cache through the system reboot but I had the same problem but also sth strange happened, Google Play Books app re-appeared in my menu.


I tried also deleting hosts.txt from \system\etc folder and even editing it as suggested (There was only one line on my hosts.txt: 127.0.0.1 localhost):

127.0.0.1 localhost
#74.125.93.113 android.clients.google.com

but I had the same problem after a while.

I finally tried changing my Google account password and this helped only for a little bit as I got the same message. I get this message even when I am trying to download an app from the web version of Google play.

Can somebody help me please? Any ideas?

[APP/MOD] Amazing Samsung Galaxy S4 Locker (Beta)

$
0
0
Amazing Samsung Galaxy S4 Locker


Hey guys presenting the Amazing Samsung Galaxy S4 Locker for gingerbread devices, built with high quality original galaxy S4 resources..

Quote:

Features :
1. SGS4 Light effect
2. SGS4 Clock and life companion text
3. SGS4 Sounds
4. Water Drops effect after tapping screen .
5. 2 clock layouts ( normal layout and notifications layout )
6. Overall a complete S4 Lockscreen ( you will forgot gingerbread lockscreen ;) )

Bugs
1.Wallpaper is not changable (You have to change it by extracting APK)
Quote:

Installation
1. Simply install as normal apk
2. Wait for 2 minutes and dont do anything(Required to disable stock lockscreen)
3. Now press home key and select your default launcher
4. Now press the lock key and you will see s4 Lock screen :cool:
Quote:

If anyone gonna include this Locker in your ROM, please send me PM and give me credits
Quote:

Hit thanks if you liked my work It costs nothing :)
Quote:

Downloads
S4 Locker Beta
Screenshots:


Quote:

Credits..
shlnarang(me ;) )
coco locker ( Modded their locker )

[App 2.3+] Wallpaper Gallery | [Guide] Make your own Gallery!

$
0
0
[App 2.3+] Wallpaper Gallery | [Guide] Make your own Gallery!

I'm here by present you a Wallpaper Gallery Application for your android phone.



Features:-
  • Light weight, use less ram.
  • Easy to use.
  • Direct Wallpaper applying.
  • You can use it in any android version above 2.3.x
  • Compatible with Stock, CM or any AOSP Builds.
  • Can be installed on both Rooted & Un-Rooted devices.
  • Install as normal apk. Also you can include it in ROMs.

Screens:-
 




Attention ROM Developers!
No need to ask for permission to include this app in your roms, just give proper Credits & Thanks ...


Download Wallpapers.apk (1.17 MB) (Attached on xda thread)



Attached Files
File Type: apk Wallpapers.apk - [Click for QR Code] (1.17 MB)

Quest

$
0
0
Plz ne 1 tel me how to connect pendrive to my cell..??

Sent by Rakz Gt-S5830

[APP] Samsung GALAXY S5 Launcher

$
0
0
Samsung GALAXY S5 launcher



Hi , Today I am gonna show you an amazing Samsung Galaxy S5 launcher.
Actually i have modded Cooee CoCo launcher.




Quote:

Requirements:
Android 2.3+
Quote:

Installation:
Install as normal apk
Quote:

Credits:
Vishnu pv
SpaceCaker
iamareebjamal
Sniper Killer
TheRoHit18
SaM-RoN
Hyoz
coolauncher.cn/(Chinese website)
Me ;)






Hit "Thanks" if you like it... :)

Attached Thumbnails
Click image for larger version

Name:	SC20140228-113541.png
Views:	N/A
Size:	201.8 KB
ID:	2605367   Click image for larger version

Name:	SC20140228-120127.png
Views:	N/A
Size:	163.9 KB
ID:	2605368  
Attached Files
File Type: apk sgs5.apk - [Click for QR Code] (3.13 MB)
File Type: apk google.apk - [Click for QR Code] (497.0 KB)

Google now

$
0
0
Can someone please give google now for cm11 for galaxy ace


Sent from my GT-S5830 using Tapatalk

[Tapatalk2][GB] Tapatalk 4 theme [Initial][0.1]

$
0
0
Quote:

Hey!
Recently, saw that Tapatalk 2 for GB devices had no longer update support. The last version had some improvements but, it really need some more UI fixes. I was tired of tapatalk2's icon and old gingerbread menu icons so i decided to at least change these. I have wrongfully replaced search menu button so there is not a completed UI of menu icons. Anyway, this is just an initial version. Although this wasn't a big deal, its a great start for future releases.
Quote:

What are changed are the menu icons and the icon of the app itself with the latest tapatalk's icon.

Actually the menu icons are touchwiz jellybean alike as the aosp jellybean ones didn't look good, especially with the UI of menu's chooserbox so i decided to put touchwiz menu icons as they looked really nice and also much universal for all gingerbread ROMs.
Quote:

Screenshots :





Quote:

Changelog :

0.1
Initial version
File link : http://www.mediafire.com/download.php?k35k9k7jw51umnz

Next versions are coming soon. Stay tuned!

Thanks!

old recovery

$
0
0
this is recovery 5.0 for those people who have flashed 6.0 and it sometimes opens or not....
whenever your recovery opens just flash this recovery made it compatible with 6.0
reboot system and then click on cwm icon go to recovery!!
you restored your old recovery

App idea

$
0
0
sometimes when i am chatting via facebook or whatsapp at late evening i fall asleep,it is not as funny to wake up and see you friends or your girlfriend tell you: you felt asleep again
i am asking if there is any app that could play music or sound after a period of inactivty of the device.if i dont touch screen for X minutes it will play a sound and then when i will need to go sleep i will just disable it
there is any?

[App] 2 no. On whts app

$
0
0
Note : am just sharing this app real credits belong 2 da one wo made it

OGWhatsApp
OGWhatsApp is a modded version of WhatsApp for Android that always you to use 2 numbers of WhatsApp in one device Without "Root" and they works in one time 


Features:
* You can use 2 numbers in one device
* You can take a Backup of Data & restore it
* You can choose the app icon
* Copy contacts status
* Preview images without saving it locally
* Watch videos online without download (Open them on Video Players (such as MX Player))
* And more



Installation:
1. Take a backup for your messages (In case you want the messages)
2. Clear WhatsApp data (or reinstall it)
3. Rename /sdcard/WhatsApp folder to /sdcard/OGWhatsApp
4. In OG version verify the old number, and in official version verify the new one

For more details,another methods & photo instructions from here


Download:
You can download OGWhatsApp from here


FAQs:
For FAQs go to OGWhatsApp FAQs page


Donate:
Donation page from here

------------------------------
Enjoy & Share 


XDAevDB Information
OGWhatsApp, a App for the No Device

Contributors
OsamaGhareeb

Version Information
Status: Stable
Current Stable Version: v2.11.152
Stable Release Date: 2014-01-12


Sent from my GT-I9082 using xda app-developers app
Viewing all 535 articles
Browse latest View live