0
私はコルドバプラグインのインストールとトラブルによこんにちは:コルドバ・プラグインfirebaseはなぜコルドバFirebaseプラグインで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-maps
とcom.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
}
[...]
ご存じですか?
私は、それが廃止されており、Gradleの5で削除されますと言ってコンパイルすると、それを使用するには良い選択肢でありますとにかく? – Biboozz
Cordovaのビルドスタックでは、廃止予定のAPIが全面的に使用されています。私は心配しません。 – DaveAlden
ありがとうございました。ところで、あなたは2つの他のエラーのアイデアを持っています:シンボルを見つけることができませんか? このトピックはhttps://github.com/mapsplugin/cordova-plugin-googlemaps/issues/1646に関連していますが、私はcordovaにはあまり慣れていないので、問題は本当に分かりません。/ – Biboozz