android - 无法识别端点客户端库

标签 android android-studio build.gradle google-cloud-endpoints android-studio-3.0

不确定发生了什么,但在迁移到 gradle 3.0.0 rc2 后,我的应用程序模块无法识别端点模块生成的任何客户端库。

构建可以完成,没有任何问题,但有一个异常(exception)......构建不会拾取任何新 API。

这是我的应用程序模块中 gradle 文件的依赖项部分:

dependencies {
// Gradle dependency check...must be run in the project directory
// ./gradlew -q dependencies app:dependencies --configuration compile

implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation project(path: ':backend', configuration: 'android-endpoints')

更新:

我注意到,war/jar 文件在 backend/build/libs 中持续更新,zip 文件也在 backend/build/client-libs 中更新。

更新#2:

Android Studio 3.0 会出现这种情况。

更新#3: 显然,这是 3.0 rc2 的一个已知错误,请参阅 here

更新#4 这是谷歌团队的建议,但我不知道如何让它发挥作用。有人吗?

//In library module:

dependencies {
   api fileTree(include: ['*.jar'], dir: 'libs')
}

gradle 文件引用:

项目级别:

buildscript {
repositories {
    jcenter()
    google()
}
dependencies {

    // 2.0
    classpath 'com.google.guava:guava:22.0'
    classpath 'com.android.tools.build:gradle:3.0.0'

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

allprojects {
repositories {
    jcenter()
}
}

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

端点(后端)级别:

buildscript {
repositories {
    mavenCentral()
    jcenter()

}
dependencies {
    // V2: Add the new App Engine and Endpoints Frameworks plugin dependencies
    classpath 'com.google.cloud.tools:endpoints-framework-gradle-plugin:1.0.2'
    classpath 'com.google.cloud.tools:appengine-gradle-plugin:1.3.3'

}
}

repositories {
mavenCentral()
jcenter()
}

apply plugin: 'java'
apply plugin: 'war'

// V2: Apply new App Engine and Endpoints Framework server plugins
apply plugin: 'com.google.cloud.tools.appengine'
apply plugin: 'com.google.cloud.tools.endpoints-framework-server'

sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8

dependencies {
// V2: Endpoints Framework v2 migration
implementation 'com.google.endpoints:endpoints-framework:2.0.8'

testImplementation 'junit:junit:4.12'
testImplementation 'com.google.appengine:appengine-testing:1.9.59'
testImplementation 'com.google.appengine:appengine-api-stubs:1.9.59'

// 2.0
//implementation group: 'com.google.endpoints', name: 'endpoints-framework', version: '+'

implementation group: 'com.googlecode.junit-toolbox', name: 'junit-toolbox', version: '1.5'

implementation 'com.googlecode.objectify:objectify:5.1.21'
implementation 'org.json:json:20151123'
implementation 'javax.servlet:servlet-api:2.5'
implementation 'org.apache.httpcomponents:httpclient:4.5.2'
implementation 'com.ganyo:gcm-server:1.0.2'
implementation 'com.google.appengine.tools:appengine-gcs-client:0.4.4'
implementation 'com.google.apis:google-api-services-storage:v1-rev66-1.21.0'
implementation 'com.google.api-client:google-api-client:1.23.0'
implementation 'com.google.http-client:google-http-client-android:1.23.0'

// I think this can be deleted
//implementation 'commons-fileupload:commons-fileupload:1.3.1'


}

appengine {
// All commented out due to v2
//downloadSdk = true
/*appcfg {
    oauth2 = true
}*/
/*endpoints {
    getClientLibsOnBuild = true
    getDiscoveryDocsOnBuild = true
    googleClientVersion = '1.23.0'
}*/

//httpAddress = "0.0.0.0"


}

// 2.0 - optional
endpointsServer {
// Endpoints Framework Plugin server-side configuration
hostname = "mickey-mouse-pooh.appspot.com"
}

应用级别:

apply plugin: 'com.android.application'

// V2: Apply the new Endpoints Framework client plugin
apply plugin: 'com.google.cloud.tools.endpoints-framework-client'

buildscript {
repositories {
    jcenter()
}
dependencies {
    // V2: Add the new Endpoints Framework plugin dependencies
    classpath 'com.google.cloud.tools:endpoints-framework-gradle-
plugin:1.0.2'
}
}

android {
compileSdkVersion 26
buildToolsVersion '26.0.2'
defaultConfig {
    applicationId "com.inneraries.projectboon"
    minSdkVersion 20 // before to update
    targetSdkVersion 26
    android.compileOptions.sourceCompatibility 1.8
    android.compileOptions.targetCompatibility 1.8
    versionCode 112
    versionName 'Phoenix'
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
productFlavors {

}
compileOptions {
    sourceCompatibility JavaVersion.VERSION_1_8
    targetCompatibility JavaVersion.VERSION_1_8
}
}

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

dependencies {
// Gradle dependency check...must be run in the project directory
// ./gradlew -q dependencies app:dependencies --configuration compile
implementation fileTree(include: ['*.jar'], dir: 'libs')

// V2
endpointsServer project(path: ':backend', configuration: 'endpoints')

// the "force" element is in place to avoid the conflict from the Facebook SDK 4.36.0 which is
// using 25.3.1 Android SDK
api('com.android.support:appcompat-v7:26.1.0') {
    force = true
}
api('com.android.support:design:26.1.0') {
    force = true
}
// For enabling Google app invite
api 'com.google.firebase:firebase-invites:11.4.2'

api 'com.google.android.gms:play-services-plus:11.4.2'
api 'com.google.android.gms:play-services-auth:11.4.2'
api 'com.google.android.gms:play-services-identity:11.4.2'
api 'com.google.android.gms:play-services-location:11.4.2'
api 'com.google.android.gms:play-services-gcm:11.4.2'
api 'com.facebook.android:facebook-android-sdk:4.27.0'

api 'com.google.api-client:google-api-client:1.23.0'
api 'com.google.http-client:google-http-client-android:1.23.0'
}

// this is to avoid this error
// Warning:Conflict with dependency 'com.google.code.findbugs:jsr305'.
// Resolved versions for app (1.3.9) and test app (2.0.1) differ.
configurations.all {
resolutionStrategy.force 'com.google.code.findbugs:jsr305:1.3.9'
}

最佳答案

以下是截至 2017 年 11 月 1 日 Google 的立场:Upgrade the framework to v2 .

他们还提供了一些解决方法(您的经理可能不喜欢这样):

  1. Build the client library manually and copy it over. [Use gradle task : appengineEndpointsGetClientLibs]
  2. Export a pre-built jar and copy it over. [Use gradle task : appengineEndpointsExportClientLibs] NOTE : 2 and 3 will require you to add the google-api-client-lib dependency directly on the android app

  3. Try to use the new plugins that use a different mechanism, while it does automatically add source to your project, this does NOT integrate with Android Studio's UI - so you will have to use gradle/command-line tooling directly for running and deploying: https://github.com/GoogleCloudPlatform/endpoints-framework-gradle-plugin/blob/master/ANDROID_README.md

我在问题描述中提供了我的 gradle 文件,以便您需要引用。

关于android - 无法识别端点客户端库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46923036/

相关文章:

android - Android Gradle 插件无法识别 SourceSet 'instrumentTest'

java - Android Studio 3.5.3 为项目生成一些损坏的 java 类

android - Google Cloud Endpoint 不断抛出 "unexpected end of stream"异常

android - 如何实现这个 Material 设计功能? (悬浮在键盘上方的按钮)

android - 如何在android中以编程方式从通知栏中删除通知?

java - RecyclerView 项目单击的 Bottom Sheet 对话框

android-studio - 更新了 android studio 并在 Gstreamer 构建中失败了

android - 我如何通过蓝牙打印机打印线性布局上的表单数据集

android-studio - android studios/gradle 同步启动时多个重复​​的 Openjdk 二进制文件失败,96% RAM

java - Gradle Multi Project Build推送到本地Maven之前