Skip to content

7.0.0-beta10

Compare
Choose a tag to compare
@jayohms jayohms released this 20 Apr 14:04
· 241 commits to main since this release
eb84d6b
  • Upgraded build tools and AndroidX navigation/fragment dependencies #166
  • Limit pre-caching requests to 2 requests concurrently #168
  • API change: Require AppCompatActivity (not Activity) in the TurboSessionNavHostFragment.registeredActivities definition #167
  • API change: TurboFragment subclasses can no longer override onActivityCreated(), since it’s now deprecated in AndroidX. Use onViewCreated() for code touching the Fragment's view and onCreate() for other initialization. #169
  • API change: TurboFragment subclasses can no longer override onActivityResult(), since it’s now deprecated in AndroidX. Use Fragment.registerForActivityResult with the androidx.activity.result.contract.ActivityResultContract and its callback. Turbo provides the new TurboNavDestination.activityResultLauncher interface to obtain registered result launchers from any destination. #170