0

Я использую из этого LINK, я импортировал этот образец в мою школу Android 2.1.2, но принесу мне некоторую ошибку.Google map с actionBarSherlock - Android-студия?

Мой Gradle:

apply plugin: 'com.android.application' 

android { 
    compileSdkVersion 17 
    buildToolsVersion '19.1.0' 

    defaultConfig { 
     applicationId "com.ecs.google.maps.v2.actionbarsherlock" 
     minSdkVersion 9 
     targetSdkVersion 18 
     multiDexEnabled true 
    } 

    buildTypes { 
     release { 
      minifyEnabled false 
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' 
     } 
    } 
    compileOptions { 
     sourceCompatibility JavaVersion.VERSION_1_7 
     targetCompatibility JavaVersion.VERSION_1_7 
    } 
} 

dependencies { 
    compile 'com.android.support:gridlayout-v7:18.0.0' 
    compile 'com.actionbarsherlock:actionbarsherlock:[email protected]' 
    compile 'com.astuetz:pagerslidingtabstrip:1.0.1' 
    compile 'com.google.maps.android:android-maps-utils:0.4+' 
    compile 'com.google.android.gms:play-services-maps:9.2.1' 
    compile 'com.google.android.gms:play-services-places:9.2.1' 
    compile files('libs/commons-logging-1.1.1.jar') 
    compile files('libs/google-http-client-1.15.0-rc.jar') 
    compile files('libs/google-http-client-android-1.15.0-rc.jar') 
    compile files('libs/google-http-client-jackson2-1.15.0-rc.jar') 
    compile files('libs/httpclient-4.0.1.jar') 
    compile files('libs/httpcore-4.0.1.jar') 
    compile files('libs/jackson-core-2.1.3.jar') 
    compile files('libs/jackson-core-asl-1.9.11.jar') 
    compile files('libs/gson-2.3.1.jar') 

} 

И:

// Top-level build file where you can add configuration options common to all sub-projects/modules. 
buildscript { 
    repositories { 
     jcenter() 
    } 
    dependencies { 
     classpath 'com.android.tools.build:gradle:2.1.+' 
    } 
} 

allprojects { 
    repositories { 
     jcenter() 
    } 
} 

Вот моя ошибка:

enter image description here

ответ

1

Моя проблема решена:

apply plugin: 'com.android.application' 

android { 
    compileSdkVersion 22 
    buildToolsVersion '23.0.2' 

    defaultConfig { 
     applicationId "com.ecs.google.maps.v2.actionbarsherlock" 
     minSdkVersion 9 
     targetSdkVersion 22 
     multiDexEnabled true 
    } 

    buildTypes { 
     release { 
      minifyEnabled false 
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' 
     } 
    } 
    compileOptions { 
     sourceCompatibility JavaVersion.VERSION_1_7 
     targetCompatibility JavaVersion.VERSION_1_7 
    } 
} 

dependencies { 
    compile 'com.actionbarsherlock:actionbarsherlock:[email protected]' 
    compile 'com.astuetz:pagerslidingtabstrip:1.0.1' 
    compile 'com.google.android.gms:play-services:4.+' 
    compile 'com.google.maps.android:android-maps-utils:0.4+' 
    compile files('libs/commons-logging-1.1.1.jar') 
    compile files('libs/google-http-client-1.15.0-rc.jar') 
    compile files('libs/google-http-client-android-1.15.0-rc.jar') 
    compile files('libs/google-http-client-jackson2-1.15.0-rc.jar') 
    compile files('libs/httpclient-4.0.1.jar') 
    compile files('libs/httpcore-4.0.1.jar') 
    compile files('libs/jackson-core-2.1.3.jar') 
    compile files('libs/jackson-core-asl-1.9.11.jar') 
    compile files('libs/gson-2.3.1.jar') 
    compile 'com.android.support:gridlayout-v7:22.1.1' 
    compile 'com.android.support:support-v4:22.2.0' 
} 

И:

// Top-level build file where you can add configuration options common to all sub-projects/modules. 
buildscript { 
    repositories { 
     jcenter() 
    } 
    dependencies { 
     classpath 'com.android.tools.build:gradle:2.1.+' 
    } 
} 

allprojects { 
    repositories { 
     jcenter() 
    } 
} 
Смежные вопросы