XLog
XLog copied to clipboard
Method call logging based on dexposed.
Add this code to my build.gradle: ``` debugCompile 'com.github.promeg:xlog-compiler:2.1.1' // ~6kB debugCompile 'com.github.promeg:xlog-android:2.1.1' // ~150kB ``` then build error: com.android.build.api.transform.TransformException: java.util.zip.ZipException: duplicate entry: com/google/gson/annotations/Expose.class
Hello
Hi, after adding XLog to my project, it no longer runs. I added also following lines to my project: ``` debug { minifyEnabled false } ``` Here is stacktrace: ```...
Hi @promeG, I really appreciate your awesome work. XLog is very flexible to use. I have one feature request. With the new Instant Run in Android Studio 2.0, the changes...
cannot find class `XLogConfig`
After add this line, my app crashed: ``` java XLogConfig.config(XLogConfig.newConfigBuilder(mApp).build()); ``` Exception log: ``` java FATAL EXCEPTION: main Process: com.github.piasy.template, PID: 29192 java.lang.NoClassDefFoundError: com/github/piasy/common/android/provider/RestProvider$RestAdapterHolder at com.github.piasy.common.android.provider.RestProvider.provideRestAdapter(RestProvider.java:48) at com.github.piasy.common.android.provider.ProviderModule.provideRestAdapter(ProviderModule.java:77) at com.github.piasy.common.android.provider.ProviderModule_ProvideRestAdapterFactory.get(ProviderModule_ProvideRestAdapterFactory.java:23)...