Thursday 19 February 2015

Enhance your android messaging and get free recharges too

Threaded messaging in android looks pretty and is easy to use because we can use it as a chatting application. But I'm going to tell you a way to enhance your android messaging app. You can make it look like gmail app and you can add labels, set spam box, archive messages, see unread messages in a separate folder, see sent messages in a separate folder and set reminders also. Not only this, you will get freecharge vouchers of Rs.50 also. Isn't it cool. Let's see how to do this:

1. To enhance your android sms messaging app, you need to download TBOX app. Click here to download TBOX App.
2. Now install it, open it and verify your mobile number.

install tbox and verify your mobile number

3. After opening your TBOX app, you will see your brand new messaging app for your text messages. Use it for an enhanced experience in mobile text messaging.
4. To get the recharge, you have to refer this app to your friends. For each referral, you will get Rs.10 and after 5 referrals, you will get Rs.50 freecharge coupon code to recharge your mobile for free. To get your referral link, just tap over the top right menu and then tap "Invite and Win" option.

getting referral link

Keep visiting for more tips and tricks.
Share:

Get free mobile recharges just for listening small audio jingles

Get free mobile recharges just for listening small audio jingles

Hi friends, In my previous posts I told you about so many sites to grab free mobile recharges. Today also, I'm gonna tell you about a newly launched website which is offering free mobile recharges just for listening audio ad jingles. These jingles are small in size and you don't have to worry that it will take much time of yours. So let's come to the point and see how to get started:

1. First of all visit Retunes.in and sign up for a free account.
2. Now after sign up, login to your account and in the "My Campaigns" section, you will get a list of available audio jingles.
3. Just click "Play and Listen" button given after each jingle and then play the jingle. Listen it completely (duration of each jingle is less than 1 minute) to get the reward point credited in your account.

available jingles

4. In the same way, listen all the jingles available in your account.\
5. Now when your get Rs.10 credits (you will get it easily because you get 10 jingles after sign up), you are ready to recharge your mobile. Click "My Account" from your dashboard and then click "Recharge Now" button.

account balance

6. Now fill your mobile number details and click "Recharge" button. Your recharge will be done instantly. You can earn more by inviting your friends to join the site. You will get Rs.1 per referral.


Keep visiting for more tips and tricks. Subscribe us to get our updates directly into your mailbox.
Share:

Tuesday 10 February 2015

Get WhatsApp calling feature without root and download apk

Get WhatsApp calling feature without root and download apk

WhatsApp calling feature is trending these days and everyone is trying to get it. But as I posted in my previous posts, to get whatsapp calling feature you have to root your phone and do some coding work on terminal emulator to enable whatsapp call feature. But that trick was very limited because if you close the terminal emulator, the calling feature gets lost.
So, I am back with a new trick to modify whatsapp apk file to enable calling feature without rooting the phone. After modifying the code, we will recompile the modded apk file and will use it in our phone. So, let's start the tutorial:

1. First of all, download the complete package of files required for this process. DOWNLOAD LINK
2. Now after downloading the package, extract it using winrar.
3. Now in the extracted folder, you will get New Modded WhatsApp, apktool files, SignApk, readme and whatsapp. Now lets start the process.
4. Now make sure that java development kit is installed in your computer. If not, then download the Java JDK from THIS LINK and install it in your computer. You need to install notepad++ also, so download and install notepad++ from THIS LINK.
5. After installing JDK in your computer, let's configure it. Open control panel and search for "variable" keyword. From the search results, click "Edit the system environment variables".

search system environment

6. Now "System Properties" window will be opened. Click "Environment Variables" button
7. Now search for "Path" under system variables and select it. Then click "Edit".
8. Now add a semicolon ( ; )  at the end of the variable value and then add the path of your JDK bin directory. In my case, it is "C:\Program Files\Java\jdk1.8.0_11\bin". But use your own system path for JDK bin folder because the java version may be different in your system. Now finally, add another semicolon at the end of the variable value and click OK in all the windows. See the screenshot below for better understanding.

edit system environment

8. Now to check whether java is working in your computer, open command prompt and type the following code and press enter: javac -version
9. If java is working properly, you should see the java version installed in your computer.

check java version

10. Now after installing JDK in our computer, let's start decompiling WhatsApp.apk file.
11. Create a new folder "apktool" in C: drive and then extract the downloaded "apktool files.zip" file. You will get three files, "aapt.exe", "apktool.bat" and "apktool.jre", copy these three files into C:\apktool folder which you created recently.
12. Now copy and paste the whatsapp.apk file from downloaded folder to C:\apktool folder.
13. Now open command prompt and type cd.. command until you get to the root directory of C: drive.
14. Now type cd apktool command to select the apktool directory.
15. Now type apktool if whatsapp.apk command and press enter key. By running this command, you will install the framework in your computer.
16. Now type apktool d whatsapp.apk and press enter. This command will start decompiling your apk file. Wait until the decompilation gets completed.

decompiling whatsapp apk

17. After decompilation has been completed, open C:\apktool folder and you will see a new folder named "whatsapp". Just open that folder and right click on "AndroidManifest.xml" and open with notepad++.

editing androidmanifest

18. Now search for the following code:
<activity android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize|uiMode" android:hardwareAccelerated="false" android:name="com.whatsapp.Main">
           <intent-filter>
                <action android:name="android.intent.action.MAIN"/>
               <category android:name="android.intent.category.LAUNCHER"/>
                <category android:name="android.intent.category.MULTIWINDOW_LAUNCHER"/>
            </intent-filter>
        </activity>
and replace the whole code with the following code:
<activity android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize|uiMode" android:hardwareAccelerated="false" android:name="com.whatsapp.Main"/>
replacing the code to hack calling feature of whatsapp

19.Now search for the following code:
<activity android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize|uiMode" android:label="@string/app_name" android:launchMode="singleTask" android:name="com.whatsapp.HomeActivity" android:theme="@style/Theme.App.Home"/>
and replace it with following code:
<activity android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize|uiMode" android:label="@string/app_name" android:launchMode="singleTask" android:name="com.whatsapp.HomeActivity" android:theme="@style/Theme.App.Home">
   <intent-filter>
              <action android:name="android.intent.action.MAIN"/>
                <category android:name="android.intent.category.LAUNCHER"/>
                <category android:name="android.intent.category.MULTIWINDOW_LAUNCHER"/>
         </intent-filter>
     </activity>
20. Now save the xml file and close notepad++
21. Let's compile the new whatsapp apk file. Open command prompt again and then type the command apktool b whatsapp This command will start building the apk file as shown in the image below.

building new apk file to enable calling in whatsapp

22. When building of apk file will be finished, you will find a new folder named "dist" in "whatsapp" folder. Open that folder and you will find your new whatsapp apk file. But still this file is not ready to use because we need to sign this file.
23. Create a new folder in C: drive and rename it as "signapk". Now open the downloaded folder and extract the signapk.zip file. You will get 3 files, "signapk.jar", "certificate.pem" and "key.pk8". Copy these three files and paste them in the signapk folder you created in C: drive.
24. Now copy the newly compiled whatsapp.apk file from C:\whatsapp\dist folder and paste into C:\signapk folder.
25. Now open command prompt and again use cd.. command to reach the root drive and then type the command cd signapk to select the signapk directory.
26. Now type the command java –jar signapk.jar certificate.pem key.pk8 whatsapp.apk whatsappnew.apk and press enter key.

signing whatsapp calling app

27. Now when the apk will be signed, you will get the final whatsappnew.apk file in the folder signapk. Copy that whatsappnew.apk file to anywhere to use it in your phone.

new whatsapp app with calling feature enabled

28. Now clear cache and data and uninstall any previous version of whatsapp from your mobile and install the new whatsapp we build recently.
29. After installing the new whatsapp, launch it, register your phone number etc and after setting it up, close the app.
30. Now restart your phone and then open whatsapp. You will get your calling tab ready.

NOTE : If you don't like this coding stuff and are not a geek, then I have added the final signed apk file in the download package. Just open "New Modded WhatsApp" folder and use the whatsappnew.apk file given inside that folder.

Keep visiting for more tips and tricks. If you liked this post, please share it in your social media profiles.

UPDATE #1
Whatsapp has now closed the beta testing in India and now you can't call after installing the modded app also. You will not see the contact list in calling tab. But there is still a way to enable the calling but unfortunately you will have to root your phone because we will have to add the 2 lines of code in the whatsapp reference file which is installed in the root. So here is how you can use the call feature in whatsapp:
1. Root your phone and then install "ES FILE EXPLORER" from playstore.
2. Now open ES File Explorer and from its menu, enable root access and allow the root permissions.

allow root permission

3. Now navigate to the path "/data/data/com.whatsapp/shared_prefs/" and open com.whatsapp_preferences.xml file in ES File Editor.

navigate to xml file

4. Now, edit the xml file and below the <map> tag, add the following code:
<boolean name =”call” value=”true”/>
<string name=”call_allowed”>all</string>
5. Now save the xml file and close ES File Explorer

edit xml file

6. Now go to Settings > Apps > WhatsApp and force stop whatsapp. Then open whatsapp again and you will be able to see a new dial button while chatting with your friends and will be able to see the contact list after tapping add contact button of whatsapp.
Share:

Monday 9 February 2015

Get unlimited free mobile recharge

Get unlimited free mobile recharge
I'm back with another free recharge trick. This trick is awesome because you can earn unlimited mobile recharges using this trick. I tested it and it is working perfectly. Just follow the steps below:

1. Visit the free recharge site by clicking the link given ahead. CLICK HERE<<<
2. Now you will see a registration form. Fill your details and sign up for an account.
3. Now open the inbox of the email which you registered on the site. You will get a mail from the free recharge site having a verification code in it. Just use that verification code on the free recharge site to verify your account.
4. You will get Rs.10 as joining bonus. Now on the homepage of your dashboard, you will see some options, just click "Referral Bonus" and then you will get your referral link. Just copy that link and share with your friends.

free recharge dashboard

5. If any friend joins through your referral link, you will get Rs.2 as a referral bonus. So the more referrals you generate, the more you earn.
6. Minimum recharge amount is Rs.30, so when your account balance reaches Rs.30, click "FREE RECHARGE" button given in the right side of your dashboard.
7. Recharge page will open. Just fill your mobile number details and click "Recharge For Free" button. You will see "Recharge Request Submitted" and within 2 minutes your mobile will be recharged.
8. After every recharge, click "Fixed Bonus" from your dashboard. You will get Rs.10 extra bonus. You will get more bonuses from your dashboard.
9. You can see your account summery by clicking "Account History" button.

free recharge account summery

Unlimited Free Mobile Recharge Trick:

Now the best part comes here. You can get unlimited free mobile recharges from this site without referring your friends. Just follow the steps below:
1. Create so many fake email ids.
2. Make sure that you are using google chrome browser. Open google chrome's "Incognito Window" by pressing ctrl+shift+N buttons from your keyboard.
3. Now open your own referral link in the incognito window of chrome and register using fake details. Enter fake mobile number and enter the fake mail id you recently created.
4. Now open your fake mail id's inbox and get the verification code to verify your new free recharge account.
5. Now you will get Rs.2 in your main id's account balance, which referral id you used to create new account in incognito mode.
6. Keep repeating step 3 and 4 and you will keep getting Rs.2+2+2+2+2+......
7. That's it. When your main account crosses Rs.30, recharge your mobile free.
Keep visiting for more free recharge tricks.
Share:

Monday 2 February 2015

Get Free Rs.50 Paytm free recharge coupon by downloading Times of India News App

Hi friends, in my previous posts, I told you about the best free recharge sites and in some posts, I told you about some apps which were offering free recharge coupons. Today, I'm going to tell you another trick to get Rs.50 paytm coupon free. Just follow the steps below:

1. Download "Times of India News" app from playstore.
2. Now install the app and open it. You will see a popup saying you to login with facebook.
3. Login using facebook and allow the app permissions. Within seconds, you will see another popup having your Rs.50 paytm coupon and it will be mailed to your email also.
4. That's it. Just use the coupon in paytm app and recharge your mobile.

Get Free Rs.50 Paytm free recharge coupon by downloading Times of India News App

Keep visiting for more tips and tricks.
Share:

Enable WhatsApp voice calling feature unofficially

Enable WhatsApp voice calling feature unofficially
WhatsApp has announced that they will provide voice calling feature very soon and beta testing has also started. Recently, a reddit user posted some screenshots of WhatsApp calling feature and it is said in the news that this feature is currently available on invite by any user who got this update officially. If you want to give WhatsApp voice calling a try, I'm going to tell you how can you use this feature without being invited by anyone. Just follow the steps given below:

  • The first thing you need is rooting your android phone. After rooting your phone, proceed to the next step.
  • Now download and install latest version of whatsapp from the official website (not from playstore).
  • Download and install "Terminal Emulator For Android" from this playstore link.
  • Now open the terminal emulator and write the following code exactly:
su <tap enter>
am start -n com.whatsapp/com.whatsapp.HomeActivity <tap enter>
  • Now whatsapp will open automatically and you will find the calling screen there. Don't close the terminal emulator because calling feature works only if the command in terminal keeps running.

typing code in terminal emulator

  • Now its time to add contacts to make calls. (Note : You will be able to call only those friends who are using this hack at present and are online) Just tap the new call icon to make the call to your friend.

making calls using whatsapp

  • That's it. Your call will be connected and you will be able to talk with whatsapp. Enjoy whatsapp calling feature with your friends.
Keep visiting for more tips and tricks.
Share:

How To Root Xiaomi Redmi 1S Without Using Computer

How To Root Xiaomi Redmi 1S Without Using Computer

Xiaomi Redmi 1S is the greatest hit by Xiaomi which broke the Indian market. This phone has lots of features which more than its cost, Rs.5999 only. Recently, Xiaomi has announced that rooting Xiaomi phones will not void the warranty of your phone so It's great if you are a developer or want to perform some actions which can't be performed on unrooted phones.
Many times, users brick their phones while rooting and it feels very bad if your phone gets bricked. Well, in this article, I'm going to tell you the simplest way to root your Xiaomi Redmi 1S without using any computer. It can be done just with the help of small update packages which can be downloaded in your phone and can be used to root and unroot your Xiaomi Redmi 1S.

1. The first thing you need is to download the update packages. They are very small in size (2.52 MB). Download them from THIS LINK.
2. Now after downloading the update files, just extract them anywhere in your SD card.
3. Now, open "Updater" in your phone and tap menu button. Now, from the menu, tap "Select Update Package" and locate to the update file you extracted in your SD Card. Now select "update.zip" file and phone will ask you to update. Just allow it to update and then your phone will reboot and rooting file will be installed. After that the phone will reboot again.

select update package to root xiaomi redmi 1s

4. Now open "Security" and then "Permission". You will see that Root Permission option is active and you can access the root.

root permission activated in xiaomi redmi 1s

To unroot the phone, just follow the same procedure and instead of using "update.zip" file, use "UnRootNative_Redmi1S.zip" file as update package. After unrooting your phone, the Root Permission option will be disabled.

Keep visiting for more tips and tricks.
Share:

Custom Search Box

Earn Money With Crypto

WazirX

Offers and Deals

Blog Archive

Contact Form

Name

Email *

Message *