Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 6 years ago.
Improve this question
I'm trying to take full backup using "adb backup -all -f path" and it took backup and stored in my PC.
When i try to restore it using "adb restore path" then it restored into the target device.
ADB backup command is not taking backup of messages, contacts and pictures. Kindly guide me if im missing something.
I could see that i have to use "adb root" to take backup using pull command. Will the device warranty be there if i use adb root command?
Thanks you with anticipation
if you root your device, it won't be under warranty anymore.
Few applications actually don't allow backup by settingandroid:alloweBackup = "false" in android manifest file.This is true for both message and contacts. Also it depends on which version of android you have. You can see this AndroidManifest.xml file
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 4 years ago.
Improve this question
I tried to go to Android/data/ but my package isn't there. I tried to search the whole file system on my phone for my app's package name and found nothing. I actually want to find the SharedPreferences files that my app creates, but I can't find them.
You can't access the internal storage of the Android system without root privileges. It will simply show up blank if you open the /data/ directory without root privileges. You may be able to access your app data using command line tool adb.
Check this answer : How to access data/data folder in Android device?
I actually want to find the SharedPreferences files that my app creates
SharedPreferences are stored in what the Android SDK describes as internal storage. You do not have direct access to this on production hardware. With some difficulty, you can use adb shell run-as to access your app's portion of internal storage.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 6 years ago.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Improve this question
I'm running git 2.8.1 Setup, I want to be careful with this since I will be developing mobile apps. I'm at the part where it's asking "Which terminal emulator do you want to use with your Git Bash?" And with choices of the following:
Use MinTTY(the default terminal of MSYS2)
Use Windows' default console window
Which is the best choice for me if I'm running a Windows 7 x64 Operating system and will be developing mobile applications? And if by any chance can someone explain their difference(s) or send a link for information. Thanks in advance!
In my opinion, you should use MinTTY regardless of other stuff. Even MiTTY has no advantage, windows' default console window('cmd') has lots of disadvantages. cmd has a very limited default history scroll-back stack and terrible font encoding and so forth. By contrast, MinTTY has resizeable window and other useful configurable options that could be open through right-click on toolbar of git-bash.
First choice will not add git commands to your PATH environment variable, you need open a MSYS2 terminal to execute git in terminal.
For second choice, you can use git commands in your windows default console.
Beside, the most different matter I think is that, windows' default console use \ as path separator, MSYS2 use /.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 9 years ago.
Improve this question
I need to bypass the setup wizard on my Nexus 5 running 4.4 only using ADB as my digitizer and screen are broken. I just want to find the Setup Wizard app and remove it via ADB. Does anyone know how to do this?
The wizard is inside the "GoogleServiceFramework.apk", in the system/app folder. You need to root and remount your system to rw to delete the apk. But after you delete it, you cannot use any Goolge service.
However, the mechanism behind this setup wizard is simple. It just declares that it is also a "HOME" application with priority=2. So you can just use package manager (pm) on adb shell to disable the wizard start up activity. Then you can see the normal home application directly.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 9 years ago.
Improve this question
I have setup Mint in VirtualBox, and use the GUI.
I followed the instructions to install the GuestAdditions (with root privilege), I run VBoxLinuxAdditions.run and everything is working like a charm. My android device is detected right away.
However, as soon as after I restart Linux, I get a message Unable to Mount LGE Android Phone, the phone keeps trying to be connected without success and pops up this message.
Then if I install again the guest additions then it works.
How could I do in order to get the android device working right away after reboot?
Happened to me something similar in ubuntu, in my case I opened it without privileges, what I did was open the virtualbox with root privileges.
Then I realized I had to add my user to the plugdev group: "$ sudo add $ USER plugdev"
I hope that we can help.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
we designed a mobile application and want to hold a presentation for round about 20 people. We use Android's Samsung Galaxy S3 and want to get the display 1:1 onto a beamer.
Any ideas?
With best regards,
KjubE
We use the Droid#Screen application for our needs. Please have a look at it. Any device will work, provided the adb and the device drivers are installed. You don't have to be rooted either.
There is a simple way:
Download asm.jar file from https://code.google.com/p/android-screen-monitor/downloads/detail?name=ASM_2_50.zip&can=2&q=
Open command prompt Enter
C:\> adb devices
And then
C:\>cd Users\santhosh\Desktop\ASM_2_50
C:\>java -jar asm.jar
Then a prompt open with your mobile device id then click ok button.