1

私の友人は私にWindowsプラットフォームでビルドされたプロジェクトを与えました。私はubuntuを持っています。プロジェクトをインポートすると、このエラーが発生します。Androidスタジオ:サポートされていないメジャーバージョンマイナーバージョン52.0

Error:(1, 0) Cause: com/android/build/gradle/AppPlugin : Unsupported major.minor version 52.0 

プロジェクトの実行方法を教えてください。私はすべての可能な解決策を試しましたが、いずれの解決策も働かなかったのです。

私は既にSDKパスとJDK 1.7.0を使用しています。最新のGradle 2.14.1を使用しています。

ここは私のgradle.buildファイルです。

apply plugin: 'com.android.application' 

    android { 
     compileSdkVersion 23 
     buildToolsVersion "23.0.1" 
     useLibrary 'org.apache.http.legacy' 

     defaultConfig { 
      applicationId "com.example.lenovo.myapp" 
      minSdkVersion 19 
      targetSdkVersion 23 
      versionCode 1 
      versionName "1.0" 
      multiDexEnabled true 
     } 
     buildTypes { 
      release { 
       minifyEnabled false 
       proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 
      } 
     } 
     packagingOptions { 
      exclude 'META-INF/DEPENDENCIES' 
      exclude 'META-INF/NOTICE' 
      exclude 'META-INF/LICENSE' 
      exclude 'META-INF/LICENSE.txt' 
      exclude 'META-INF/NOTICE.txt' 
     } 
    } 

    dependencies { 
     compile fileTree(dir: 'libs', include: ['*.jar']) 
     compile 'com.google.api-client:google-' + 
       'api-client-gson:+' 
     compile 'com.android.support:appcompat-v7:23.4.0' 
     compile 'com.android.support:design:23.4.0' 
     compile 'com.google.http-client:google-http-client-android:+' 
     compile 'com.google.api-client:google-api-client-android:+' 
     compile 'com.google.code.gson:gson:2.2.4' 
     compile 'org.apache.httpcomponents:httpclient:4.5' 
     compile 'com.google.android.gms:play-services-identity:9.2.1' 
     compile 'com.google.android.gms:play-services-plus:9.2.1' 
     compile 'com.google.android.gms:play-services-gcm:9.2.1' 
     compile 'com.mcxiaoke.volley:library-aar:1.0.0' 
     compile 'org.apache.httpcomponents:httpcore:4.4.1' 
     compile 'org.apache.httpcomponents:httpmime:4.3.6' 
     compile 'com.squareup.retrofit2:retrofit:2.1.0' 
     compile 'com.squareup.okhttp:okhttp:2.3.0' 
     compile 'com.squareup.retrofit2:converter-gson:2.1.0' 
     compile 'com.android.support.constraint:constraint-layout:1.0.0-alpha5' 
     compile 'com.github.bumptech.glide:glide:3.6.0' 
     compile 'com.jakewharton:butterknife:6.1.0' 
     compile 'com.davemorrissey.labs:subsampling-scale-image-view:3.1.3' 
     testCompile 'junit:junit:4.12' 
    } 

いずれの解決策もあります。私は最後の2日以来立ち往生しています。

答えて

3

私はすでにあなたがStudioおよびビルドツールの新バージョンのJDK 1.8を必要とする私のSDKのパスを指し、JDK 1.7.0

を使用しています。

+0

私は自分のJDKパスを8-Oracleに変更しましたが、今は「リポジトリのインストールとプロジェクトの同期」というエラーが表示されています。何か案が? – SSR

+0

解決に失敗しました:com.android.support.constraint:constraint-layout:1.0.0-alpha5 – SSR

+0

以上は完全エラーです – SSR

関連する問題