Ошибка сборки Gradle: «Плагин с идентификатором com.google.ar.sceneform.plugin» не найден ». - PullRequest
0 голосов
/ 28 июня 2019

Я следую этому уроку Sceneform SDK (https://www.raywenderlich.com/5485-arcore-sceneform-sdk-getting-started)) и столкнулся с некоторыми проблемами при сборке Gradle. Вот файл моего приложения build.gradle:

apply plugin: 'com.android.application'

apply plugin: 'kotlin-android'

apply plugin: 'kotlin-android-extensions'


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

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
    implementation 'com.android.support:appcompat-v7:28.0.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    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'


    implementation 'com.google.ar.ar:core:1.10.0'
    implementation 'com.google.ar.sceneform.ux:sceneform-ux:1.10.0'
    implementation 'com.google.ar.sceneform:core:1.10.0'
}

apply plugin: 'com.google.ar.sceneform.plugin'

sceneform.asset('sampledata/models/andy.obj',
        'default',
        'sampledata/models/andy.sfa',
        'src/main/res/raw/andy')

На выходе отображается следующая ошибка:

Plugin with id 'com.google.ar.sceneform.plugin' not found.

1 Ответ

1 голос
/ 28 июня 2019

Вам не хватает пути к классам в файле build.gradle (Project):

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        google()
        jcenter()

}
dependencies {
    classpath 'com.android.tools.build:gradle:3.4.1'        
    classpath 'com.google.ar.sceneform:plugin:1.10.0'

    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
}
...