Android flavor - cannot find symbol variable in R file
问题 I have 2 flavors - paidapp and freeapp. The only difference that paidapp have 1 more button on MainActivity , say "paidbutton" . paidapp has its own layout with button android:id="@+id/paidbutton" and layout for freeapp does not have this button. In code I use this: if (BuildConfig.FLAVOR.equals("paidapp")) { View paidbutton = findViewById(R.id.paidbutton); paidbutton.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { //... } }); } But I have an error cannot