I am implementing sdcard related application. How can I remove emulator sdcard below folder in android using sqlite in devtools?
I am using rm command but it's not working:
Example: sdcard--->project --->emp
Delete project folder using terminal controller in-built sqlite
Follow the below steps to remove the sdcard folder of your emulator:
open the command prompt
go to the directory where your android sdk --> platform-tools
type adb shell
type cd sdcard
type rmdir "folder name"
Related
I am trying to install appium in windows OS. I added tools and platform-tools folder path into the system path. But still adb is not recognizable by the system!!!!
CMD Output Image :
Folder View :
You have a space in your path after "platform-tools".
I have been following these directions to setup android development on a mac. I put the android sdk folder in my desktop folder so my path should be "Desktop/android-sdk-macosx", I followed the steps in the terminal but it keeps on telling me permission denied as seen here.
I went to my home directory as well and did COMMAND+SHIFT+. to show hidden files in order to add to the .bash_profile file in my home folder but couldn't find the .bash_profile there.
Here are some details of my setup that works.
Note I put my sdk folder at home, e.g. ~.
First, open up a terminal and type these commands:
cd ~
ls -a
Here is my session, and what is shows:
If you don't have a .bash_profile, then make one:
touch .bash_profile
Then, enter the command:
emacs .bash_profile
Then, set up your ANDROID_HOME and PATH, here is what mine looks like:
Note that I have the SDK manually downloaded, and I used homebrew for the NDK folder, that is why they are set up different.
I am trying to implement Couch base in my android app following the couchbase tutorial link here
I need to add a config.json file to create my own database link rather than using its default database "Sync_gateway".According to explanation it should be inside bin directory inside a data folder but I can't find a bin directory as I installed sync gatway from .exe file. I don't find run it by any command other than clicking the .exe file. What I am I missing?
If you have installed sync_gateway in Windows then open the file location for the sync_gateway.exe it will be usually in the directory "C:\Program Files (x86)\Couchbase" . You have to place your configure.json in that directory . Now open windows command prompt and do 'cd C:\Program Files (x86)\Couchbase' and run the command 'sync_gateway.exe configure.json' . Ensure that your configure.json file is perfect and does not have any syntax errors. your Sync gateway will now load with your specified configure.json
I enter this command in terminal first I change the directory to terminal and then when I try to open the studio.sh It gives bash error
sarthak#sarthak:~/development$ /android-sdk/bin/studio.sh
bash: /android-sdk/bin/studio.sh: No such file or directory
sarthak#sarthak:~/development$
Please Help
Because the script file is in bin directory you need to go there to run it.
Go to the bin directory in terminal by doing:
cd ../../bin
And then run the script by doing:
./studio.sh
You can install it from the repository here
Android studio paolorotolo repository
launch it first time from studio.sh in bin directory like this:
cd opt/android-studio/bin/
./studio.sh
this will launch android studio.
And from android stuio tools tab -> genereate desktop entry to see it in search and programs.
I want to rename the folder from DDMS. The DDMS only supports deletion of a file and an empty folder. I want to change the name of folder /mnt/sdcard/NewFolder to /mnt/sdcard/NewFolder2. Is there a way to rename the folder?
Use the following command in cmd:
C:\> adb shell
$ cd /mnt/sdcard
$ mv NewFolder NewFolder2