2017-10-04 31 views
0

你好,我是在安装了一个插件科尔多瓦麻烦:科尔多瓦 - 插件 - 火力为什么我收到AbstractSafeParcelable没有发现错误科尔多瓦火力地堡插件

这里构建的输出:

BUILD FAILED 

Total time: 1.223 secs 
Error: /home/thor/Projects/App_CDP/platforms/android/gradlew: Command failed with exit code 1 Error output: 
/home/thor/Projects/App_CDP/platforms/android/src/plugin/google/maps/GoogleMaps.java:479: error: cannot access AbstractSafeParcelable 
    options.compassEnabled(controls.getBoolean("compass")); 
     ^
    class file for com.google.android.gms.common.internal.safeparcel.AbstractSafeParcelable not found 
/home/thor/Projects/App_CDP/platforms/android/src/plugin/google/maps/GoogleMaps.java:717: error: cannot find symbol 
    String msg = GooglePlayServicesUtil.getOpenSourceSoftwareLicenseInfo(activity); 
           ^
    symbol: method getOpenSourceSoftwareLicenseInfo(Activity) 
    location: class GooglePlayServicesUtil 
/home/thor/Projects/App_CDP/platforms/android/src/plugin/google/maps/AsyncLicenseInfo.java:22: error: cannot find symbol 
    String licenseInfo = GooglePlayServicesUtil.getOpenSourceSoftwareLicenseInfo(mActivity); 
             ^
    symbol: method getOpenSourceSoftwareLicenseInfo(Activity) 
    location: class GooglePlayServicesUtil 
Note: Some input files use or override a deprecated API. 
Note: Recompile with -Xlint:deprecation for details. 
Note: Some input files use unchecked or unsafe operations. 
Note: Recompile with -Xlint:unchecked for details. 
3 errors 

FAILURE: Build failed with an exception. 

* What went wrong: 
Execution failed for task ':compileDebugJavaWithJavac'. 
> Compilation failed; see the compiler error output for details. 

* Try: 
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. 

我发现,这是因为com.google.android.gms:play-services-mapscom.google.firebase:firebase-messaging是不一样的版本下,但我不能编辑我的build.gradle,因为它产生的每一次我建立

$ cat platforms/android/build.gradle 

[...] 

dependencies { 
    compile fileTree(dir: 'libs', include: '*.jar') 
    // SUB-PROJECT DEPENDENCIES START 
    debugCompile(project(path: "CordovaLib", configuration: "debug")) 
    releaseCompile(project(path: "CordovaLib", configuration: "release")) 
    compile "com.google.gms:google-services:+" 
    compile "com.google.firebase:firebase-core:+" 
    compile "com.google.firebase:firebase-messaging:+" 
    compile "com.google.firebase:firebase-crash:+" 
    compile "com.google.firebase:firebase-config:+" 
    compile "com.google.android.gms:play-services-maps:9.8.0" 
    compile "com.google.android.gms:play-services-location:9.8.0" 
    compile "com.facebook.android:facebook-android-sdk:4.+" 
    // SUB-PROJECT DEPENDENCIES END 
} 

[...] 

有什么想法?

回答

0

您可以尝试使用cordova-android-play-services-gradle-release覆盖播放服务的版本与火力地堡对齐:

cordova plugin add cordova-android-play-services-gradle-release --variable PLAY_SERVICES_VERSION=+ 
+0

当我编译它说,它已被弃用,将在gradle这个5除去它是一个不错的选择使用它无论如何? – Biboozz

+0

Cordova构建堆栈遍地都使用不推荐的API - 我不担心它 – DaveAlden

+0

好的,谢谢:D。顺便说一下,你有2个其他错误的想法:无法找到符号? 我发现这个主题相关的https://github.com/mapsplugin/cordova-plugin-googlemaps/issues/1646但我不是很熟悉科尔多瓦,我不太明白这个问题:/ – Biboozz