Jump to content
Reliance Jio & Reliance Mobile Discussion Forums

digitalnirvana

RIM Guru
  • Content count

    1,983
  • Joined

  • Last visited

  • Days Won

    31

Everything posted by digitalnirvana

  1. Motorola Droid Verizon Does It Work On Reliance?

    ^ Please see I would assume you would need to get MEID registered first on RCDMA, see Sadikk bhai's post for information.
  2. India Card Rupay - To Replace Visa, Mastercard

    Good initiative but will not succeed unless the new card is accepted globally. MasterCard and Visa have global presence and Rupay will somewhere down the line need to have a global presence or alternatively have tieup with these companies outside India. Also it will need to have tieup with e commerce payment systems like PayPal.
  3. Want To Ship 1.5 Kg Box To USA For Warranty Repairs. How?

    Try TNT or UPS.
  4. NetConnect BroadBand+ Unlimited for Rs.750 Only Offer?

    Who comes up with these marketing tactics? 5GB FUP as unlimited should be reported to DoT as misleading customers.
  5. [Android Guide] ADB For Dummies

    Here are few utilities which allows adb functionality in GUI. ANDROID COMMANDER - copy multiple files/dirs between Phone and PC - copy multiple files/dirs between Phone folders - delete multiple files/dirs from Phone - new dir and rename options - drag&drop multiple files/dirs in to progrm - drag&drop files/dirs between program tabs - partitions size info - bookmarks - windows integration - backup multiple apps to any dir on Phone/PC - batch/single apps install - install as private - update - batch/single uinstall apps - uninstall with option to keep data or not - type any shell command - run sh script from PC - flashing zip and img files - options to reboot, reboot to recovery, reboot to bootloader, power off phone - screenshots (beta) - tools... Sreenshot : Phone Requirements: - ROOT (only for Applications Manager and flashing options) - BusyBox (required only for rooted phones; included to most ROMs) - Settings->Applications->Development->USB debuging must be enabled - USB cable PC Requirements: - Windows - Android SDK * - Installed ADB USB Driver from Android SDK * - SDK/Tools set in System Path * *see post 1 Download: Here DROID EXPLORER - Multiple Device Support - Copy and auto-apply update.zip - Copy local files to device - Auto detection of connected/disconnected device - APK file icon and extended information - Device command shell window - Reboot device - Reboot device in to recovery mode - Open files for viewing / execution locally with the default file type executable - Drag & Drop file copy from Explorer - Flash Recovery Image - Package Manager (Install & Uninstall) - No need to mount SD card to access files from computer - Access files in other directories besides SD card - Copy files from device to local clipboard - Paste files from local clipboard to device - Open files on local machine - Display open with dialog to specify what to open a file with - Right click APK and Uninstall - Right click APK and Install - Delete files from device - Take a Screen Shot (landscape or portrait) - Plugins can register as a component to open files - Open from within Computer - Should now work with more ROMs as long as they are Rooted and have busybox - Device "Friendly Name" instead of device serial number. - Android Screencast Plugin - Control your android device with your mouse and keyboard - Install/Uninstall APK files right from explorer - Standalone plugin runner (will mainly be used for windows 7 jump lists and the apk installer but can be used to run any plugin. - Better Hero Support - Backup the "Google Experience" applications and creates an update.zip containing the applications - Use an existing Android SDK with Droid Explorer, or let Droid Explorer set up the SDK for you. Screenshot: Here Download: Here Source: Modaco
  6. Download Full Anti-Virus software for free

    ^ Thank you brother.
  7. [Android Guide] ADB For Dummies

    BASIC ADB COMMANDS How to get your logcat To use logcat simply Code: adb shell logcat To logcat to sdcard Code: adb shell logcat > /sdcard/logcat.txt Copy an app from your phone to your computer Code: adb pull /system/app/filename.apk C:\path (replace filename.apk with the app your pulling also replace path with the folder your placing the app in) Install an app from your computer on your phone This is also known as sideloading. Unlike installing from the SD card, it does not require unknown sources to be enabled. Code: adb install filename.apk This assumes that you are working from the directory where the file is located. This will install the application to /data/app. It will also show sometimes useful errors if install fails. That is not something you will see from the Android GUI. If you want to do anything which needs admin access, first we go to the adb shell which logs into the phone. Code: adb shell If we end up with a $, we will want admin rights, in many cases. To get admin rights, you want to type Code: su Look at your phone if this is the first time, it may prompt you to allow access. Else you will get permission denied. If you are not rooted, this will not work Push an app from your computer to your phones filesystem Code: adb push filename /pathtodirectoryonphone So for instance, if I have test.txt that I want to send to root of /sdcard, I would type: Code: adb push test.txt /sdcard/ Pushing files can be done to any directory, however, some are protected. For instance, /system is going to give you a permission denied or a read only filesystem error. To get around this, the easiest thing to do is push the file to your sdcard, then log into the shell: Code: adb shell Code: su We will then mount the system as writable Code: mount -o rw,remount /dev/block/stl9 /system Then we can use something like Code: cp /sdcard/test.txt /system/app/test.txt cp stands for copy and it requires the path of the file and destination path. When you copy it, you can rename it to whatever you like. For instance, if we wanted to backup a file Code: cp /sdcard/test.txt /sdcard/backuptest.txt Pulling files from your phone to your computer Lets say you want to get a file from your phone, to modify, backup, etc. To do this, we simply use adb in this manner: Code: adb pull /pathtofile/filename destinationname For instance, if I wanted to backup ADW launcher in system/app I would do this Code: adb pull /system/app/ADWLauncher.apk ADWLauncher.apk And it will pull the file from the phone and put it in the current directory. Like above, you can specifcy where it goes. Changing permissions We use something called chmod. This is used in this manner Code: adb shell su chmod 755 /pathtoapplication/applicationname An example Code: adb shell su chmod 755 /system/app/ADWLauncher.apk 755 is good for applications and script files. Remove an app from your phone This becomes especially handy for removing rogue applications. To do this, we must be in the adb shell. Code: adb shell su rm /system/app/ADWLauncher.apk You may first need to remount system as writable with: Code: mount -o rw,remount /dev/block/stl9 /system That applies when using chmod as well. So what I did above was delete ADW Launcher from system/app Flash a recovery image to your phone First pace the recovery image in your sdcard root and rename it to recovery (so the full name will now be recovery.img) Code: adb shell su (prompt changes from $ to #) flash_image recovery /sdcard/recovery.img (wait till this# sign shows up again before you type the next command) reboot recovery Get your current battery level Code: adb shell cat /sys/class/power_supply/battery/capacity Get your current rom build Code: adb shell getprop ro.build.description If we want to merely reboot the phone Code: adb reboot If we want to go to recovery Code: adb reboot recovery Source and credit: XDA
  8. [Android Guide] ADB For Dummies

    INSTALLING ADB ON MAC What you will need: A Mac USB cable Android SDK for OSX - http://developer.android.com/sdk/index.html This guide refers to the version "android-sdk_r08-mac_86". So download the zip file and extract it to a folder where you are happy to keep it such as within your user home folder i.e. Macintosh HD/Users/{Your User Name} and for this guide the example folder is is Users/test. Then open then still in Finder, open "android-sdk-mac_86" then "tools". Now launch Terminal - ⌘ + space then type Terminal or Applications>Utilities>Terminal Now drag and drop the file called "android" in the "tools" folder into your terminal window and you should see something like: /Users/test/android-sdk-mac_86/tools/android Then hit enter - this should load Android SDK Next go to Available Packages on the left and Android Repository > Android SDK Platform-tools, revision 1 -tick the box and hit "Install Selected" It should download and install the Platform Tools which includes ADB !!!! Now quit Android SDK after it has downloaded and go back into Finder. Now you should see a new folder "platform-tools" in the "android-sdk-mac_86" folder. Open that and you can now see a file called adb. Now go back to your Terminal window and type (or copy & paste): Code: cd ~ The screen should then look like NAME_OF_YOUR_MACHINE:~ USERNAME$ For example: Mac-Pro:~ test$ Next, type Code: touch .bash_profile to create your new bash / path file Next, type Code: open -e .bash_profile to open it in TextEdit. Now into Text Edit please copy: Code: export PATH=${PATH}: Then go into Finder and navigate your your "android-sdk-mac_86" folder. Then click on the "platform-tools" folder and drag and drop this into TextEdit at the end of the code above that you copied. Mine looks like: export PATH=${PATH}:/Users/test/android-sdk-mac_86/platform-tools/ Yours should look like: export PATH=${PATH}:insert your path to the "platform-tools" folder in your Android SDK here All you need is that one line. Then Save and exit TextEdit and then very importantly QUIT TERMINAL. Now to turn on USB Debugging in your handset Settings > Applications > Development > USB Debugging - ticked and also go to Settings > Connect to PC > Default connection type > Charge Only and also UNTICK "Ask me ..." there also. You can always go back here and change these settings back. Now plug in your phone to a USB port. Now to launch ADB - re-open terminal (remember that you had quit it - very important!) then type in: Code: adb devices And you should see: List of devices attached HXXXXXXXXXX device where XXXXXXXX is your unique phone ID. Now you can run all of your favourite ADB commands straight by typing: Code: adb shell etc straight into Terminal. Source and credit: XDA
  9. Happy Holi !

    ^ Very nice.
  10. Download Full Anti-Virus software for free

    Heard good things about AVG though never have used it myself, stuck to McAfee as got used to it. @Rajan - thanks. @Kamal - thanks, can I post a link to the Dr. Web and Kasperky mobile AVs in the Android software thread? Most Android users would visit that thread and with Android market being unmonitored, there are many malware floating around so everyone on Android should have an AV. Wary of double posting hence asking.
  11. Want To Ship 1.5 Kg Box To USA For Warranty Repairs. How?

    Know DTDC and Aramex have international shipping no idea about electronics specifically though. You could try contacting Aramex they do international express though in restricted items list it is mentioned and see what they say.
  12. MNP Retention Offer You Received

    ^ OK then I suggest you generate port code and have a word with MNP retention department and see if/what they offer if you threaten port out, no harm in trying. All the best.
  13. Download Full Anti-Virus software for free

    PC Tools Spyware Doctor 2011 - 1 year free [german promotion] 1) If the promotion page is not opening it can be accessed through german proxy list here . 2) Copy and paste the promotion link . 3) Fill in the form (provide a secondary and working E-Mail address). 4) Check your in box. 5) Download PC Tools Spyware Doctor from here . 6) Once installed, click on Register and enter your license data to activate it. Edit this seems to be not working.
  14. Download Full Anti-Virus software for free

    Get Free Kaspersky Mobile Security 9 for 6 months Click here and enter your E-Mail address and D4N7D-PD625 as Gutschein-Code/CouponCode. Then click on the button named Absenden/Submit. You would then get a license key in E-Mail. Please download the installer from here according to mobile OS and use the license. Supported OS are given below. Symbian 9.1, 9.2, 9.3 and 9.4 Series 60 (Nokia) Windows Mobile 5.0, 6.0, 6.1 and 6.5 Symbian^3 BlackBerry Android 1.5, 1.6, 2.0, 2.1, 2.2
  15. Download Full Anti-Virus software for free

    Dr.Web Mobile Security Suite 1 year license for free Protection of mobile devices running Symbian OS/Windows Mobile/Android. Visit this Promo Page please note limited time offer. For info on Dr.Web Mobile Security Suite please visit here .
  16. Download Full Anti-Virus software for free

    Free Ashampoo Registry Cleaner 2011 v1.00 License This is not an antivirus rather a registry cleaner. Create a Ashampoo account or Log in to your account. Then click here or here to get your license. Download the installer from here. Appreciate if someone needing a registry cleaner tries and confirms.
  17. Download Full Anti-Virus software for free

    Free 6 months License Avira Premium Security Suite + Star Money 7.0 Visit the promotion page here, download and install it. Until 28 March 2011, after install, it is available for using with 6 months. Please note you have to install the german version first to obtain the license follow these instructions. While installing the german setup you will be asked to fill in a form. Provide them a valid e-mail and send your details. Then abort the installation. Check your in box: you will get a message from Avira Germany (In german, of course) with you user name and password. Now log in to you account, set the Avira webpage in english. Click on "Resend my avira key" (or something similar). Check again your inbox. You will recieve a message from Avira with your key attached "HDBEV.KEY". Download Avira Security Suite 10 in your language, during setup you will be prompted to insert a valid KEY file, add HDBEV.KEY" file and go on).
  18. Download Full Anti-Virus software for free

    BitDefender Total Security 2011 Absolutely FREE for 3 months up through a Facebook promotion Australia. To get a license for 3 months visit the Facebook Australia Offer Page
  19. Download Full Anti-Virus software for free

    Grab Lavasoft Ad-Aware Plus 1 year license worth $26.95 for FREE Features : Complete Malware Protection, Including Anti-Virus and Anti-Spyware Ad-Watch Live! Advanced Real-time Protection Genotype Detection Technology Behavior-Based Heuristics Detection Advanced Level Rootkit Removal System The Neutralizer Malware Removal Tool Minimal Strain on System Resources Download Guard for Internet Explorer E-mail Scanner Customizable Profile Scans Pin-Point Scanning Automatic Pulse Updates & Free Technical Support Full Integration with Windows Security Center
  20. ^ Well we can agree to disagree brother that is what discussion is about, I have hardly used GSM in India myself so cannot comment but RCDMA does have quite good voice quality. Hardly any network promotes voice quality as USP which is strange.
  21. Download Full Anti-Virus software for free

    How To Download McAfee Antivirus Plus 2011 Via Facebook With Free 6-Month License Go to the McAfee Facebook page Here. Click on the “Like” button in order to make yourself a fan of McAfee. To get started, select your country and click on “Get Yours Now” button. Now, you must create your McAfee account by allowing them to connect to your Facebook account. Create and re-enter your password, then click the “Submit” button. Get your McAfee Antivirus Plus 2011 by Clicking the download button.
  22. Thanks for the info, I have used Orange UK and can vouch for their call quality, however in a market like India do you think HD voice is really a deciding factor, I think what scores more is network reliability i.e. fewer call drops either intra cell or inter cell during BTS handover. GSM/UMTS is inherently inferior to CDMA in terms of call quality, even though CDMA has problems in network efficiency I think purely in terms of network quality, RCDMA leads.
  23. Apple iPhone 3G (8GB) worth Rs 31,000 for Rs 21,999 - http://www.dealsandyou.com/bangalore-c-4.html
  24. Tsunami Hit Japan!

    ^ With extremely low radiation levels, most of the news is scaremongering, any effect of meltdown will be local. The bigger problem for affected people right now is shortage of essential supplies. Google has pitched in with this informative page which accepts donations and information http://www.google.com/crisisresponse/japanquake2011.html
×