不能使用play-services-10.0.1

时间:2018-03-06 14:08:48

标签: java android gradle

在Android O中的android studio 3.0.1中的

services-10.0.1 它会导致错误的文本"当定位O"时,版本必须至少为10.2.1。在Android工作室2.3.3它工作,但当我将我的android工作室更新到3.0.1时,我收到了这个错误。

apply plugin: 'com.android.application'
apply plugin: 'io.fabric'

android {
    compileSdkVersion 26
    buildToolsVersion '26.0.2'
    defaultConfig {
        applicationId "com.adlift.adliftapp"
        minSdkVersion 15
        targetSdkVersion 26
        versionCode 1
        versionName "1"
        testInstrumentationRunner                 
       "android.support.test.runner.AndroidJUnitRunner"
      }
       buildTypes {
        release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 
      'proguard-rules.pro'
           }
        }
 }

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('com.crashlytics.sdk.android:crashlytics:2.7.1@aar') {
    transitive = true
}
compile 'com.android.support:appcompat-v7:26.1.0'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.android.support:cardview-v7:26.1.0'
compile 'com.squareup.retrofit2:retrofit:2.3.0'
compile 'com.google.code.gson:gson:2.6.2'
compile 'com.squareup.retrofit2:converter-gson:2.0.2'
compile 'com.google.android.gms:play-services-gcm:10.0.1'
testCompile 'junit:junit:4.12'
}
 apply plugin: 'com.google.gms.google-services'

0 个答案:

没有答案