Ugurcan Yildirim

Results 31 comments of Ugurcan Yildirim

There is memory leak in "Base" class as LeakCanary shows.

Nope, `@Extra` annotation was added.

Proguard is not enabled for my project. I am having these lines in my proguard rules file anyway.

Here is my `ViewPagerFragment` class: ``` java public class ViewPagerFragment extends Fragment { @Extra("TEXT") String text; @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View rootView = inflater.inflate(R.layout.fragment_viewpager,...

I checked under my `build` folder. `ViewPagerFragment$$ExtraBinder` is not created. What should I do to fix this?

1. Yes, I am using `compile 'com.jakewharton:butterknife:7.0.1'`. 2. Yes, `apt 'com.thefinestartist:compilers:0.8.5'` and `apply plugin: 'com.neenbedankt.android-apt'` are added to module-level gradle file. And `classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'` is added to project-level gradle file....

Here it is: https://github.com/ugurcany/ACN-Android-Framework `test` module contains the `ViewPagerFragment` class that I shared.

Thank you for the solution. I will try.

Could you please let me know when it is possible to solve the problem without a need to apply the plugin to main module?

Have you found any solution?