Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error:Cause: failed to find target with hash string 'Google Inc.:Google APIs:23' in: E:\AndroidStudio\SDK

I have the above error and have no clue why I still have it. I have reinstalled API 23 numerous times and done googling and the only fix I found was to reinstall the API but still have the issue.

Does anyone have a fix for it?

        apply plugin: 'com.android.application'

    android {
      compileSdkVersion 'Google Inc.:Google APIs:23'
      buildToolsVersion '23.0.2'

      defaultConfig {
        applicationId "com.example.app"
        minSdkVersion 16
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
      }

      lintOptions {
        disable 'InvalidPackage'
      }


      buildTypes {
        release {
          minifyEnabled false
          proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
      }
    }

    dependencies {
      compile fileTree(dir: 'libs', include: ['*.jar'])
      testCompile 'junit:junit:4.12'
      compile 'com.android.support:appcompat-v7:23.1.1'
      compile 'com.android.support:design:23.1.1'
      compile 'me.neavo:volley:2014.12.09'
      compile 'com.google.code.gson:gson:2.5'
      compile 'com.jakewharton:butterknife:7.0.1'
      compile 'com.android.support:support-v4:23.1.1'
    }
like image 781
Stillie Avatar asked Feb 17 '16 07:02

Stillie


3 Answers

Try to use compileSdkVersion 23 instead of compileSdkVersion 'Google Inc.:Google APIs:23'

like image 179
Vasily Kabunov Avatar answered Nov 14 '22 03:11

Vasily Kabunov


I got this error when trying to build a project on Windows that was originally built on Ubuntu. If you're not sure which build.gradle file is causing it and the project has multiple modules, do a project search for "compileSdkVersion."

Windows expects: compileSdkVersion 'Google Apis:Google Apis:23'

Ubuntu expects: compileSdkVersion "Google Inc.:Google APIs:23"

like image 39
winchella Avatar answered Nov 14 '22 04:11

winchella


Main module or any library must be using 'Google Inc.:Google APIs:23' which is not installed in SDK. So try to change it and compile

Change : compileSdkVersion 'Google Apis:Google Apis:23'

To : compileSdkVersion 23 (You should have android-23 installed in SDK)

like image 4
Kushal Avatar answered Nov 14 '22 04:11

Kushal