create AVD on Eclipse null error
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I installed openjdk6, Java works normally, I installed Eclipse 64bit, Android-sdk-linux and extracted it, I set the location of Android-sdk but when I try to create an AVD, It appears in console : Android-sdk-manager null.
I can't find a solution on the net :/
android sdk
add a comment |
I installed openjdk6, Java works normally, I installed Eclipse 64bit, Android-sdk-linux and extracted it, I set the location of Android-sdk but when I try to create an AVD, It appears in console : Android-sdk-manager null.
I can't find a solution on the net :/
android sdk
add a comment |
I installed openjdk6, Java works normally, I installed Eclipse 64bit, Android-sdk-linux and extracted it, I set the location of Android-sdk but when I try to create an AVD, It appears in console : Android-sdk-manager null.
I can't find a solution on the net :/
android sdk
I installed openjdk6, Java works normally, I installed Eclipse 64bit, Android-sdk-linux and extracted it, I set the location of Android-sdk but when I try to create an AVD, It appears in console : Android-sdk-manager null.
I can't find a solution on the net :/
android sdk
android sdk
asked Oct 6 '13 at 15:37
user199320user199320
112
112
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
It may be due folder permission problem.
- Open AVD Manager from Terminal (
user@tech-ubuntu:~$ android avd) - Using the AVD Manager create the new virtual device and then click OK. An error window will appear which shows the path and permission denied message.
- In terminal==>
user@tech-ubuntu:~$ sudo chown -R root:root /path_specifieduser@tech-ubuntu:~$ sudo chmod -R +r /path_specified
where path is the path_specified(eg: /home/user/.android/avd/) in the error dialog. - Now create new device from AVD Manager through eclipse or directly from terminal ...
- Hope this helps you.
add a comment |
Required libraries for 64-bit machines:
If you are running a 64-bit version of Ubuntu, you need to install some 32-bit libraries with the following command:
sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386 lib32z1 libbz2-1.0:i386
If you are running 64-bit Fedora, the command is:
sudo yum install zlib.i686 ncurses-libs.i686 bzip2-libs.i686
(source)
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f354434%2fcreate-avd-on-eclipse-null-error%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
It may be due folder permission problem.
- Open AVD Manager from Terminal (
user@tech-ubuntu:~$ android avd) - Using the AVD Manager create the new virtual device and then click OK. An error window will appear which shows the path and permission denied message.
- In terminal==>
user@tech-ubuntu:~$ sudo chown -R root:root /path_specifieduser@tech-ubuntu:~$ sudo chmod -R +r /path_specified
where path is the path_specified(eg: /home/user/.android/avd/) in the error dialog. - Now create new device from AVD Manager through eclipse or directly from terminal ...
- Hope this helps you.
add a comment |
It may be due folder permission problem.
- Open AVD Manager from Terminal (
user@tech-ubuntu:~$ android avd) - Using the AVD Manager create the new virtual device and then click OK. An error window will appear which shows the path and permission denied message.
- In terminal==>
user@tech-ubuntu:~$ sudo chown -R root:root /path_specifieduser@tech-ubuntu:~$ sudo chmod -R +r /path_specified
where path is the path_specified(eg: /home/user/.android/avd/) in the error dialog. - Now create new device from AVD Manager through eclipse or directly from terminal ...
- Hope this helps you.
add a comment |
It may be due folder permission problem.
- Open AVD Manager from Terminal (
user@tech-ubuntu:~$ android avd) - Using the AVD Manager create the new virtual device and then click OK. An error window will appear which shows the path and permission denied message.
- In terminal==>
user@tech-ubuntu:~$ sudo chown -R root:root /path_specifieduser@tech-ubuntu:~$ sudo chmod -R +r /path_specified
where path is the path_specified(eg: /home/user/.android/avd/) in the error dialog. - Now create new device from AVD Manager through eclipse or directly from terminal ...
- Hope this helps you.
It may be due folder permission problem.
- Open AVD Manager from Terminal (
user@tech-ubuntu:~$ android avd) - Using the AVD Manager create the new virtual device and then click OK. An error window will appear which shows the path and permission denied message.
- In terminal==>
user@tech-ubuntu:~$ sudo chown -R root:root /path_specifieduser@tech-ubuntu:~$ sudo chmod -R +r /path_specified
where path is the path_specified(eg: /home/user/.android/avd/) in the error dialog. - Now create new device from AVD Manager through eclipse or directly from terminal ...
- Hope this helps you.
answered Nov 29 '13 at 13:58
Valamburi MValamburi M
1114
1114
add a comment |
add a comment |
Required libraries for 64-bit machines:
If you are running a 64-bit version of Ubuntu, you need to install some 32-bit libraries with the following command:
sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386 lib32z1 libbz2-1.0:i386
If you are running 64-bit Fedora, the command is:
sudo yum install zlib.i686 ncurses-libs.i686 bzip2-libs.i686
(source)
add a comment |
Required libraries for 64-bit machines:
If you are running a 64-bit version of Ubuntu, you need to install some 32-bit libraries with the following command:
sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386 lib32z1 libbz2-1.0:i386
If you are running 64-bit Fedora, the command is:
sudo yum install zlib.i686 ncurses-libs.i686 bzip2-libs.i686
(source)
add a comment |
Required libraries for 64-bit machines:
If you are running a 64-bit version of Ubuntu, you need to install some 32-bit libraries with the following command:
sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386 lib32z1 libbz2-1.0:i386
If you are running 64-bit Fedora, the command is:
sudo yum install zlib.i686 ncurses-libs.i686 bzip2-libs.i686
(source)
Required libraries for 64-bit machines:
If you are running a 64-bit version of Ubuntu, you need to install some 32-bit libraries with the following command:
sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386 lib32z1 libbz2-1.0:i386
If you are running 64-bit Fedora, the command is:
sudo yum install zlib.i686 ncurses-libs.i686 bzip2-libs.i686
(source)
answered May 26 '17 at 10:57
Roberto LeinardiRoberto Leinardi
408511
408511
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f354434%2fcreate-avd-on-eclipse-null-error%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown