Unable to open or develop applications in Android studio

I just downloaded android studio for linux

The problem is that I start with a new project, I can not see any action files.
I precisely followed the standard instructions for opening a new project.

Here is a screenshot of the project Also, the sdk manager icon is not displayed. Please, help



The fault could probably be the following error:

Unable to deserialize the target data of the IdeaAndroidProject key. This class of loaders: [PluginClassLoader [org.jetbrains.android, 10.0]]: Unable to deserialize the target data of the "IdeaAndroidProject" key. This class of loaders: [PluginClassLoader [org.jetbrains.android, 10.0]]

UPDATE

I tried to install that all libraries, and also made some changes to build.gradle

Libraries I installed:

zlib.i686
libstdc ++. i686
Ncurses-libs.i686
libgcc.i686
glibc.i686



The code I added to build.gradle:

buildscript { repositories { mavenCentral() } dependencies { classpath 'com.android.tools.build:gradle:0.4' } } apply plugin: 'android' repositories { mavenCentral() } dependencies { compile files('libs/android-support-v4.jar') compile 'com.google.code.gson:gson:2.2.4' } android { compileSdkVersion 17 buildToolsVersion "17.0.0" defaultConfig { minSdkVersion 4 targetSdkVersion 16 } } 


I finally ended up with one error:

Gradle: There was a problem evaluating the root project "App1Project". Gradle version 1.6 is required. Current Version - 1.7

+6
source share
1 answer

Finally, I successfully completed the compilation.

I just went on an upgrade from version 0.2.8 to 0.2.9 and emptied build.gradle.
It was probably a mistake.

+3
source

Source: https://habr.com/ru/post/953833/


All Articles