I'm trying to add Firebase Performance Monitoring to the app
Here are my version numbers:
FIREBASE_VERSION = '2.3.0'
PLAY_SERVICES_VERSION = '11.2.0'
SUPPORT_LIB_VERSION = '26.0.2'
BUILD_TOOLS_VERSION = '26.0.1'
COMPILE_SDK_VERSION = 26
TARGET_SDK_VERSION = 25
MIN_SDK_VERSION = 19
Adding next two lines to the app-level build.gradle file:
//other code
apply plugin: 'com.google.firebase.firebase-perf'
//other code
compile "com.google.firebase:firebase-perf:$PLAY_SERVICES_VERSION"
leads to the next error:
Execution failed for task ':app:transformClassesWithFirebasePerformancePluginForProductionDebug'.
> android/support/v7/app/ActionBarActivity
Similar issue as in Firebase performance monitor issue with support lib 26.0.0
This issue might be caused by some 3rd party lib, is there some way to determine which lib uses old support lib?