I've started integration with next guide
https://docs.appdynamics.com/display/PRO39/Instrument+an+Android+Application#InstrumentanAndroidAppl...
That guide shows version 1 :
compile 'com.appdynamics:appdynamics-runtime:1.0'
But I've found this rule for Gradle and used it
compile 'com.appdynamics:appdynamics-runtime:4.+'
There is a crash after starting the SDK:
Instrumentation.start("xxxxx", getApplicationContext());
E/ADInstrumentation: java.lang.ClassNotFoundException: com.appdynamics.eumagent.runtime.BuildInfo
E/ADInstrumentation: at java.lang.Class.classForName(Native Method)
E/ADInstrumentation: at java.lang.Class.forName(Class.java:309)
E/ADInstrumentation: at java.lang.Class.forName(Class.java:273)
E/ADInstrumentation: at com.appdynamics.eumagent.runtime.Instrumentation.a(Instrumentation.java:309)
E/ADInstrumentation: at com.appdynamics.eumagent.runtime.Instrumentation.start(Instrumentation.java:245)
E/ADInstrumentation: at com.appdynamics.eumagent.runtime.Instrumentation.start(Instrumentation.java:175)
E/ADInstrumentation: at com.fleetmatics.myapplication.MainActivity.onCreate(MainActivity.java:32)
What is the latest guide for SDK integration with Gradle?
Same problem here!