Nick Unuchek

Results 19 comments of Nick Unuchek

it will be great to see alpha value of the color

By default colors.xml is in android res... or just add field to Settings

@amnsinghl seems the lib is no more supported, so now I suggest to use this one compile 'com.github.marcinmoskala.activitystarter:activitystarter:0.30' apt 'com.github.marcinmoskala.activitystarter:activitystarter-compiler:0.30'

@r0adkll Any update?

at start it was set to ``` new ExpectAnim() .expect(mPlayerMediaView) .toBe( Expectations.invisible() ) ```

@orhanobut Library `module/build.gradle` file looks like this: ``` buildscript { repositories { jcenter() } dependencies { classpath 'com.orhanobut.tracklytics:tracklytics-plugin:2.0.0' } } apply plugin: 'com.android.library' apply plugin: 'com.orhanobut.tracklytics' ``` Error is: ```...

@orhanobut is any way to review the issue? I tried to add the lib to the module like: ``` implementation "com.orhanobut.tracklytics:tracklytics-runtime:2.1.0" ``` But in result the plugin doesn't see annotations...

fixed in https://github.com/orhanobut/tracklytics/pull/49

for example: ``` findViewById(R.id.button).setOnClickListener(new View.OnClickListener() { @TrackEvent("button_click") @FixedAttribute(key = "button_name", value = "Login") @Override public void onClick(View v) { new KotlinObject().track(); new JavaObject().track(); } }); ``` ``` class KotlinObject {...