Discussion Feed
06-25-2019
01:44 AM
I was trying to build a flutter plugin that would need to import the Instrumentation class to send metrics back to the SAAS platform. However, when I apply the adeum plugin in my build.gradle, an error occurs.
My build.gradle:
group 'com.example.flutter_appdynamics'
version '1.0-SNAPSHOT'
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath 'com.appdynamics:appdynamics-gradle-plugin:4.5.+'
}
rootProject.allprojects {
repositories {
google()
jcenter()
}
}
apply plugin: 'com.android.library'
apply plugin: 'adeum' // this line added for AppDynamics
android {
compileSdkVersion 28
defaultConfig {
minSdkVersion 16
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
lintOptions {
disable 'InvalidPackage'
}
}
The error:
* What went wrong:
A problem occurred configuring project ':flutter_appdynamics'.
> Failed to notify project evaluation listener.
> Transforms with scopes '[EXTERNAL_LIBRARIES, SUB_PROJECTS_LOCAL_DEPS, PROJECT_LOCAL_DEPS, SUB_PROJECTS]' cannot be applied to library projects.
> Cannot cast object 'com.android.build.gradle.LibraryExtension_Decorated@3131dac9' with class 'com.android.build.gradle.LibraryExtension_Decorated' to class 'com.android.build.gradle.AppExtension'
A similar case is found on github (https://github.com/piotrmadry/FirebaseTestLab-Android/issues/12), and the cause of it is that the plugin does not support LibrayExtension. So I would like to know does the adeum plugin only support AppExtension but not LibraryExtension?
... View more
- Tags:
- mobile
Latest Activity
- Posted Does the adeum plugin supports library extension? on End User Monitoring (EUM). 06-25-2019 01:44 AM
Community Stats
Date Registered | 06-25-2019 12:07 AM |
Date Last Visited | 06-27-2019 04:05 AM |
Total Messages Posted | 1 |