2017-11-01 14 views
2

アップデートを求めるプロンプトが表示され、アップデート前にこれらのエラーがすべてうまくいきました。v3.0にアップデートした後のAndroidスタジオビルドエラー

Information:Gradle tasks [:app:generateDebugSources, :app:generateDebugAndroidTestSources, :app:mockableAndroidJar, :app:compileDebugAndroidTestSources, :app:compileDebugUnitTestSources, :app:compileDebugSources]

/Users/.../topografie/activity/FlashCardActivity.java
Error:(60, 14) error: cannot find symbol method addOnPageChangeListener()

/Users/.../topografie/activity/MainActivity.java
Error:(87, 14) error: cannot find symbol method addOnPageChangeListener(OnPageChangeListener)

/Users/.../topografie/activity/MuscleDetailActivity.java
Error:(58, 14) error: cannot find symbol method addOnPageChangeListener()

Error:Execution failed for task ':app:compileDebugJavaWithJavac'.
Compilation failed; see the compiler error output for details.

Information:BUILD FAILED in 2s
Information:4 errors
Information:0 warnings
Information:See complete output in console

Gradleのコンソールは言う:

symbol: method addOnPageChangeListener(OnPageChangeListener)

location: variable pager of type ViewPager
Note: /Users/.../MuscleDetailActivity.java uses unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
1 error

私はいくつかの類似の質問に遭遇しましたが、答えのどれも私のために働いていません。私はプロジェクトをきれいにして再構築し、Gradleのすべての依存関係を更新しました。 EDIT:Gradleのは細かい同期が、プロジェクトのビルドはエラー

apply plugin: 'com.android.application' 

android { 
    compileSdkVersion 26 
    buildToolsVersion '26.0.2' 
    defaultConfig { 
     applicationId "com.anatomie.bny.topografie" 
     minSdkVersion 17 
     targetSdkVersion 26 
     versionCode 1 
     versionName "1.0" 
     testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 
     vectorDrawables.useSupportLibrary = true 
    } 
    buildTypes { 
     release { 
      minifyEnabled false 
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 
     } 
    } 
    productFlavors { 
    } 
} 

dependencies { 
    compile fileTree(include: ['*.jar'], dir: 'libs') 
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { 
     exclude group: 'com.android.support', module: 'support-annotations' 
    }) 
    compile files('libs/android-support-v13.jar') 
    compile files('libs/picasso-2.5.2.jar') 
    compile 'com.android.support:support-v4:26.1.0' 
    compile 'com.android.support:appcompat-v7:26.1.0' 
    compile 'com.android.support:support-vector-drawable:26.1.0' 
    compile 'com.android.support.constraint:constraint-layout:1.0.2' 
    compile 'com.android.support:design:26.1.0' 
    compile 'com.squareup.okhttp:okhttp:2.4.0' 
    compile 'com.squareup.okhttp:okhttp-urlconnection:2.2.0' 
    compile 'com.github.AndroidDeveloperLB:AutoFitTextView:4' 
    testCompile 'junit:junit:4.12' 
} 

を与える助けてください、私は時間のためにそれをしてきたとソリューション

+0

は、あなたがこの問題を解決するために管理したの再構築問題?私は同じ問題を抱えていると私は頭を数時間掻いてきた – WillEllis

+0

残念ながら私はこれを解決する方法を見つけられなかった、私は新しいプロジェクトを作成し、クラスとリソースをその新しいプロジェクトとすべて今はうまくいく。それは非常に回避策ですが、私は今これで作業を続けることができます。 – BNY

+0

Eek、それは私が望んでいた応答ではありません!私に戻ってくれてありがとう! – WillEllis

答えて

0

削除.gradleと.ideaフォルダ

を見つけることができません

そして、それは.gradleと.ideaフォルダ

を削除し、

を再起動して、再び、動作しない場合

をREBUILD

DELETE THIS

+1

また、キャッシュを無効/再起動してください。通常これらのものと一緒に動作する – Zoe

+0

さらにClean Projectを試してみて、キャッシュ/再起動を無効にしてみてください – Aldan

+0

私はそれらのフォルダを見つけるのに少し時間がかかりましたが残念ながら – BNY

0

あなたは私のanswerを試すことができます。また、これらの手順を実行した後にAndroid Studioを再起動します。

+0

効果はありません – BNY

0

変更し、プロジェクト・レベルのbuild.gradleファイル内のプラグインのバージョンを次のように

buildscript {

repositories { 
    ... 
    // You need to add the following repository to download the 
    // new plugin. 
    google() 
} 

dependencies { 

    classpath 'com.android.tools.build:gradle:3.0.0' 
} 

}

、プロジェクト

+0

プラグインバージョンはすでに現在のバージョンに設定済みです – BNY

+0

make google() –

+0

が既に追加されていることを確認してください。/ – BNY

関連する問題