alpha release

main
Hemanth S 2020-09-24 16:30:54 +05:30
parent 46dc5eb58e
commit 870cf4ce2e
2 changed files with 6 additions and 3 deletions

View File

@ -16,8 +16,8 @@ android {
vectorDrawables.useSupportLibrary = true
applicationId "code.name.monkey.retromusic"
versionCode 10442
versionName '3.6.000_hot_fix' + "_" + getDate()
versionCode 10443
versionName '3.6.000' + "_" + getDate()
multiDexEnabled true
@ -88,7 +88,7 @@ static def getProperty(Properties properties, String name) {
}
static def getDate() {
new Date().format('MMddyyyy')
new Date().format('MMddyyyyss')
}

View File

@ -55,6 +55,9 @@ class LibraryFragment : AbsMainActivityFragment(R.layout.fragment_library) {
private fun setupNavigationController() {
val navController = findNavController(R.id.fragment_container)
NavigationUI.setupWithNavController(mainActivity.getBottomNavigationView(), navController)
navController.addOnDestinationChangedListener { controller, destination, arguments ->
appBarLayout.setExpanded(true,true)
}
}
override fun onPrepareOptionsMenu(menu: Menu) {