テスト

らびブログ

2024年 2023年 2022年 ...

[Android] 古いプロジェクトを開くと「Failed to sync Gradle project」

古いプロジェクトをAndroid Studioで開くと以下のようなエラーが表示されました。
 Failed to sync Gradle project '(ProjectName)'
 Error:failed to find target android-22 : C:\Users\(UserName)\AppData\Local\Android\sdk  Install missing platform(s) and sync project
Android Studioの「SDK Manager」アイコンをクリック、インストールされているSDKの「API Level」を確認して、 build.gradleファイルを編集します。
"compileSdkVersion 22" を "compileSdkVersion 23"
にしました。
 Gradle project sync failed. Basic functionality (e.g. editing, debugging) will not work properly.  Try Again Open 'Messages' View Show Log in Explorer
と表示されている「Try Again」をクリックすると、次のようなエラーが表示されました。
 Error:failed to find Build Tools revision 22.0.0  Install Build Tools 22.0.0 and sync project
「SDK Manager」の「Launch Sandalone SDK Manager」をクリック、「Android SDK Build-tools」の「Rev.」を確認して、build.gradleファイルを編集します。
buildToolsVersion '22.0.0' を buildToolsVersion '23.0.2'
にしました。再び「Tray Again」をクリックするとエラーが無くなりました。
テスト
©2015-2024 RabiSoft