I am using Navigation Architecture.
For debug build :
debug {
debuggable true
minifyEnabled false
useProguard false
}
and For release build :-
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
- I am using navigation drawer and when app is opened show hamburger icon in Toolbar. Thanks in advance for help.
- But when I am moving from one fragment to another fragment . I have to show back icon(Navigation back).
- In debug build it works fine.
- But in release build ,hamburger icon is showing in toolbar in place of back icon.
But I need to show back icon in place of hamburger icon in release build.