Не удалось разрешить: com.google.android.material: material: 1.0.0-alpha1 - PullRequest
0 голосов
/ 05 мая 2018

Итак, я следую официальной документации, чтобы добавить библиотеку компонентов материалов в мой проект https://github.com/material-components/material-components-android/blob/master/docs/getting-started.md

Но это выдает мне следующую ошибку "Не удалось разрешить: com.google.android.material: material: 1.0.0-alpha1"

Я попытался установить проект репозитория и синхронизации, который Android Studio предлагает безрезультатно.

Конфигурация моего проекта

buildscript {

repositories {
    google()
    jcenter()
}
dependencies {
    classpath 'com.android.tools.build:gradle:3.1.2'


    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
    classpath 'com.google.gms:google-services:3.2.1'
}
}

allprojects {
repositories {
    google()
    jcenter()
    maven {
        url "https://maven.google.com"
    }
}


task clean(type: Delete) {
delete rootProject.buildDir
}

и настройка приложения

apply plugin: 'com.android.application'

android {
compileSdkVersion 27
defaultConfig {
    applicationId "mlluell.eftremp"
    minSdkVersion 21
    targetSdkVersion 27
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:cardview-v7:27.1.1'
implementation 'com.android.support:customtabs:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.0'
implementation 'com.google.firebase:firebase-auth:15.1.0'
implementation 'com.google.android.gms:play-services-auth:15.0.1'
implementation 'com.google.firebase:firebase-database:15.0.1'
implementation 'com.google.firebase:firebase-storage:15.0.2'
implementation 'com.android.support:design:27.1.1'
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.google.android.material:material:1.0.0-alpha1'

//imatges recyclerview
implementation 'com.android.support:recyclerview-v7:27.1.1'
implementation 'com.github.bumptech.glide:glide:4.6.1'
annotationProcessor 'com.github.bumptech.glide:compiler:4.6.1'

// FirebaseUI for Firebase Realtime Database
implementation 'com.firebaseui:firebase-ui-database:3.3.0'

// FirebaseUI for Firebase Auth
implementation 'com.firebaseui:firebase-ui-auth:3.3.0'

// FirebaseUI for Cloud Storage
implementation 'com.firebaseui:firebase-ui-storage:3.3.0'


testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}

apply plugin: 'com.google.gms.google-services'

Ответы [ 3 ]

0 голосов
/ 11 июня 2018

Вот настройка моего приложения, которая сработала для меня ..

    apply plugin: 'com.android.application'

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "com.techmadmax.nodemcu.nodemcuautomation"
        minSdkVersion 21
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:28.0.0-alpha3'
    implementation 'com.android.support:design:28.0.0-alpha3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
    compile 'com.github.warkiz.widget:indicatorseekbar:1.2.9'
}
0 голосов
/ 03 апреля 2019

Вместо:

implementation 'com.google.android.material:material:1.1.0'

Использование:

   implementation group: 'com.google.android.material', name: 'material', version: '1.1.0-alpha05'

И это работает.

0 голосов
/ 09 мая 2018

Думаю, я поделюсь тем, что исправило это для меня сейчас, когда я начал.

У меня была примерно такая же начальная настройка, как и у вас. Чтобы это работало, мне пришлось изменить следующее:

  • compileSdkVersion to 'android-P'
  • Поддержка библиотек до '28.0.0-alpha1'
  • включает api 'com.android.support:design:28.0.0-alpha1' в блоке зависимостей.
  • Обновление платформы SDK - Android P Preview (последняя версия)
  • targetSdkVersion 'P'

Затем я выполнил ритуал «Неправильные кэши / перезапуск» и заново собрал проект для хорошей меры.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...