জীবনচক্র
এই সারণিতে androidx.lifecycle গ্রুপের অন্তর্গত সমস্ত আর্টিফ্যাক্ট তালিকাভুক্ত করা হয়েছে।
| প্রত্নবস্তু | স্থিতিশীল রিলিজ | রিলিজ প্রার্থী | বিটা রিলিজ | আলফা রিলিজ |
|---|---|---|---|---|
| জীবনচক্র-* | ২.১০.০ | - | - | ২.১১.০-আলফা০৩ |
| লাইফসাইকেল-ভিউমডেল-নেভিগেশন৩ | ২.১০.০ | - | - | ২.১১.০-আলফা০৩ |
নির্ভরতা ঘোষণা করা
লাইফসাইকেল-এর উপর ডিপেন্ডেন্সি যোগ করতে হলে, আপনাকে আপনার প্রজেক্টে গুগল মেভেন রিপোজিটরি যুক্ত করতে হবে। আরও তথ্যের জন্য গুগলের মেভেন রিপোজিটরি পড়ুন।
আপনার অ্যাপ বা মডিউলের build.gradle ফাইলে প্রয়োজনীয় আর্টিফ্যাক্টগুলোর ডিপেন্ডেন্সি যোগ করুন:
কোটলিন
খাঁজকাটা
dependencies { def lifecycle_version = "2.10.0" def arch_version = "2.2.0" // ViewModel implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version" // ViewModel utilities for Compose implementation "androidx.lifecycle:lifecycle-viewmodel-compose:$lifecycle_version" // LiveData implementation "androidx.lifecycle:lifecycle-livedata-ktx:$lifecycle_version" // Lifecycles only (without ViewModel or LiveData) implementation "androidx.lifecycle:lifecycle-runtime-ktx:$lifecycle_version" // Lifecycle utilities for Compose implementation "androidx.lifecycle:lifecycle-runtime-compose:$lifecycle_version" // Saved state module for ViewModel implementation "androidx.lifecycle:lifecycle-viewmodel-savedstate:$lifecycle_version" // ViewModel integration with Navigation3 implementation "androidx.lifecycle:lifecycle-viewmodel-navigation3:2.11.0-alpha03" // Annotation processor kapt "androidx.lifecycle:lifecycle-compiler:$lifecycle_version" // alternately - if using Java8, use the following instead of lifecycle-compiler implementation "androidx.lifecycle:lifecycle-common-java8:$lifecycle_version" // optional - helpers for implementing LifecycleOwner in a Service implementation "androidx.lifecycle:lifecycle-service:$lifecycle_version" // optional - ProcessLifecycleOwner provides a lifecycle for the whole application process implementation "androidx.lifecycle:lifecycle-process:$lifecycle_version" // optional - ReactiveStreams support for LiveData implementation "androidx.lifecycle:lifecycle-reactivestreams-ktx:$lifecycle_version" // optional - Test helpers for LiveData testImplementation "androidx.arch.core:core-testing:$arch_version" // optional - Test helpers for Lifecycle runtime testImplementation "androidx.lifecycle:lifecycle-runtime-testing:$lifecycle_version" }
কোটলিন
dependencies { val lifecycle_version = "2.10.0" val arch_version = "2.2.0" // ViewModel implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version") // ViewModel utilities for Compose implementation("androidx.lifecycle:lifecycle-viewmodel-compose:$lifecycle_version") // LiveData implementation("androidx.lifecycle:lifecycle-livedata-ktx:$lifecycle_version") // Lifecycles only (without ViewModel or LiveData) implementation("androidx.lifecycle:lifecycle-runtime-ktx:$lifecycle_version") // Lifecycle utilities for Compose implementation("androidx.lifecycle:lifecycle-runtime-compose:$lifecycle_version") // Saved state module for ViewModel implementation("androidx.lifecycle:lifecycle-viewmodel-savedstate:$lifecycle_version") // ViewModel integration with Navigation3 implementation("androidx.lifecycle:lifecycle-viewmodel-navigation3:2.11.0-alpha03") // Annotation processor kapt("androidx.lifecycle:lifecycle-compiler:$lifecycle_version") // alternately - if using Java8, use the following instead of lifecycle-compiler implementation("androidx.lifecycle:lifecycle-common-java8:$lifecycle_version") // optional - helpers for implementing LifecycleOwner in a Service implementation("androidx.lifecycle:lifecycle-service:$lifecycle_version") // optional - ProcessLifecycleOwner provides a lifecycle for the whole application process implementation("androidx.lifecycle:lifecycle-process:$lifecycle_version") // optional - ReactiveStreams support for LiveData implementation("androidx.lifecycle:lifecycle-reactivestreams-ktx:$lifecycle_version") // optional - Test helpers for LiveData testImplementation("androidx.arch.core:core-testing:$arch_version") // optional - Test helpers for Lifecycle runtime testImplementation ("androidx.lifecycle:lifecycle-runtime-testing:$lifecycle_version") }
জাভা
খাঁজকাটা
dependencies { def lifecycle_version = "2.10.0" def arch_version = "2.2.0" // ViewModel implementation "androidx.lifecycle:lifecycle-viewmodel:$lifecycle_version" // LiveData implementation "androidx.lifecycle:lifecycle-livedata:$lifecycle_version" // Lifecycles only (without ViewModel or LiveData) implementation "androidx.lifecycle:lifecycle-runtime:$lifecycle_version" // Saved state module for ViewModel implementation "androidx.lifecycle:lifecycle-viewmodel-savedstate:$lifecycle_version" // Annotation processor annotationProcessor "androidx.lifecycle:lifecycle-compiler:$lifecycle_version" // alternately - if using Java8, use the following instead of lifecycle-compiler implementation "androidx.lifecycle:lifecycle-common-java8:$lifecycle_version" // optional - helpers for implementing LifecycleOwner in a Service implementation "androidx.lifecycle:lifecycle-service:$lifecycle_version" // optional - ProcessLifecycleOwner provides a lifecycle for the whole application process implementation "androidx.lifecycle:lifecycle-process:$lifecycle_version" // optional - ReactiveStreams support for LiveData implementation "androidx.lifecycle:lifecycle-reactivestreams:$lifecycle_version" // optional - Test helpers for LiveData testImplementation "androidx.arch.core:core-testing:$arch_version" // optional - Test helpers for Lifecycle runtime testImplementation "androidx.lifecycle:lifecycle-runtime-testing:$lifecycle_version" }
কোটলিন
dependencies { val lifecycle_version = "2.10.0" val arch_version = "2.2.0" // ViewModel implementation("androidx.lifecycle:lifecycle-viewmodel:$lifecycle_version") // LiveData implementation("androidx.lifecycle:lifecycle-livedata:$lifecycle_version") // Lifecycles only (without ViewModel or LiveData) implementation("androidx.lifecycle:lifecycle-runtime:$lifecycle_version") // Saved state module for ViewModel implementation("androidx.lifecycle:lifecycle-viewmodel-savedstate:$lifecycle_version") // Annotation processor annotationProcessor("androidx.lifecycle:lifecycle-compiler:$lifecycle_version") // alternately - if using Java8, use the following instead of lifecycle-compiler implementation("androidx.lifecycle:lifecycle-common-java8:$lifecycle_version") // optional - helpers for implementing LifecycleOwner in a Service implementation("androidx.lifecycle:lifecycle-service:$lifecycle_version") // optional - ProcessLifecycleOwner provides a lifecycle for the whole application process implementation("androidx.lifecycle:lifecycle-process:$lifecycle_version") // optional - ReactiveStreams support for LiveData implementation("androidx.lifecycle:lifecycle-reactivestreams:$lifecycle_version") // optional - Test helpers for LiveData testImplementation("androidx.arch.core:core-testing:$arch_version") // optional - Test helpers for Lifecycle runtime testImplementation("androidx.lifecycle:lifecycle-runtime-testing:$lifecycle_version") }
নির্ভরতা সম্পর্কে আরও তথ্যের জন্য, 'বিল্ড নির্ভরতা যোগ করুন ' দেখুন।
প্রতিক্রিয়া
আপনার মতামত জেটপ্যাককে আরও উন্নত করতে সাহায্য করে। আপনি যদি নতুন কোনো সমস্যা খুঁজে পান অথবা এই লাইব্রেরিটি উন্নত করার জন্য কোনো ধারণা থাকে, তবে আমাদের জানান। নতুন কোনো সমস্যা তৈরি করার আগে অনুগ্রহ করে এই লাইব্রেরির বিদ্যমান সমস্যাগুলো দেখে নিন। আপনি তারকা বোতামে ক্লিক করে কোনো বিদ্যমান সমস্যায় আপনার ভোট যোগ করতে পারেন।
আরও তথ্যের জন্য ইস্যু ট্র্যাকার ডকুমেন্টেশন দেখুন।
সংস্করণ ২.১১
সংস্করণ 2.11.0-alpha03
২৫ মার্চ, ২০২৬
androidx.lifecycle:lifecycle-*:2.11.0-alpha03 প্রকাশিত হয়েছে। সংস্করণ 2.11.0-alpha03-এ এই কমিটগুলো রয়েছে।
এপিআই পরিবর্তন
-
ViewModelStoreProviderকনস্ট্রাক্টরেparentKeyএকটি ঐচ্ছিক প্যারামিটার করুন, যার ডিফল্ট মানnullহবে, এবং এটিকেparentStoreবাparentOwnerপরে সরিয়ে দিন। যখন একটি শেয়ার্ড স্কোপ কী-এর প্রয়োজন হয় না, তখন এটি ইনস্ট্যানসিয়েশনকে সহজ করে তোলে। ( I66b67 ) -
ViewModelStoreNavEntryDecoratorএখনViewModelStoreএর পরিবর্তেViewModelStoreOwnerগ্রহণ করে। এর ফলে Navigation3 প্যারেন্টের ডিফল্টCreationExtrasএবংViewModelProvider.Factoryকে নেস্টেড ViewModel-গুলোতেও প্রয়োগ করতে পারে, যা অ্যাপ্লিকেশন-স্তরের নির্ভরতার জন্য সমর্থন নিশ্চিত করে। ( Ia6018 , b/434651920 ) - একটি অনন্য কী ব্যবহার করে
ViewModelStoreProviderস্টেটকে পৃথক করুন। এটি ডিসপোজালের সময় সিibling প্রোভাইডারদের একে অপরের ViewModel-কে অনিচ্ছাকৃতভাবে মুছে ফেলা থেকে বিরত রাখে। ( I59c0b , b/434651920 ) -
ViewModelProvider.get<VM>(key: String)এক্সটেনশন ফাংশনটি যোগ করা হয়েছে। এর ফলে ডেভেলপাররা কোটলিন রিফাইয়েড টাইপ প্যারামিটার ব্যবহার করে একটি কাস্টমkeyসাহায্যে আরও সহজে ভিউমডেল পুনরুদ্ধার করতে পারবেন, এবং এর জন্য ক্লাস টাইপ স্পষ্টভাবে পাস করার প্রয়োজন হবে না। ( Ic1f59 ) - ডিফল্ট
SavedStateমান দিয়ে ViewModel-গুলি ইনিশিয়ালাইজ করার জন্যViewModelStoreProviderএdefaultArgsসাপোর্ট যোগ করা হয়েছে। ( I1e933 , b/434651920 , b/165642391 ) -
removeViewModelStoreOnPopএবং এর সাথে যুক্তViewModelStoreNavEntryDecoratorDefaultsএপিআই-কে অপ্রচলিত ঘোষণা করা হলো। এই এপিআইটি কনফিগারেশন পরিবর্তনের জন্য একটি বিকল্প ব্যবস্থা ছিল, যা এখন অভ্যন্তরীণভাবে পরিচালিত হয়। এখন থেকে, পপ করার সময় ViewModel সহ সমস্ত ডেকোরেটর স্টেট অবশ্যই একই সাথে মুছে ফেলতে হবে। যখন ব্যাক স্ট্যাকটি একটি NavDisplay-তে পাঠানো হয়, তার বাইরেও ডেকোরেটর স্টেট ধরে রাখতে,rememberDecoratedNavEntriesএপিআই ব্যবহার করুন। ( I852d9 )
বাগ সংশোধন
- ক্লাসের নাম প্রদর্শন করতে
CreationExtras.KeyতেtoString()যোগ করুন। ( I5de52 )
সংস্করণ 2.11.0-alpha02
১১ মার্চ, ২০২৬
androidx.lifecycle:lifecycle-*:2.11.0-alpha02 প্রকাশিত হয়েছে। সংস্করণ 2.11.0-alpha02-এ এই কমিটগুলো অন্তর্ভুক্ত রয়েছে।
স্কোপড ভিউমডেল
এই রিলিজে Compose-এ স্কোপড
ViewModelStoreইনস্ট্যান্স তৈরি করার জন্য API চালু করা হয়েছে। এর ফলেViewModelsনির্দিষ্ট UI স্কোপের (যেমন স্বতন্ত্রPagerপেজ বাLazyListআইটেম) সাথে যুক্ত করা যায়। এইViewModelsকনফিগারেশন পরিবর্তনের পরেও অক্ষত থাকে এবং যখন এদের সংশ্লিষ্ট Composable-টি হায়ারার্কি থেকে স্থায়ীভাবে সরিয়ে ফেলা হয়, তখন এগুলো স্বয়ংক্রিয়ভাবে মুছে যায়।// Hoist the parent provider outside the Pager. val provider = rememberViewModelStoreProvider() val pagerState = rememberPagerState(pageCount = { 5 }) HorizontalPager(state = pagerState) { page -> // Create an owner scoped to the current page. val storeOwner = rememberViewModelStoreOwner(provider, key = page) // Provide the scoped owner to this composition. CompositionLocalProvider(LocalViewModelStoreOwner provides storeOwner) { // ViewModel is now scoped specifically to this page. val viewModel: PageViewModel = viewModel() } }
উল্লেখ্য যে, ViewModelStoreProvider Compose ছাড়াও ব্যবহার করা যায় এবং এটি Activities, Fragments এবং/অথবা Views-এর সাথে ব্যবহার করা যেতে পারে।
নতুন বৈশিষ্ট্য
- ViewModel Navigation3-এ সকল KMP টার্গেটের জন্য সমর্থন যোগ করুন। ( I60fa5 )
- কাস্টম ওনার কম্পোনেন্ট তৈরি করার সময় বয়লারপ্লেট কমাতে
LifecycleOwner,ViewModelStoreOwner, এবংSavedStateRegistryOwnerএর জন্য ফ্যাক্টরি ফাংশন যোগ করুন। ( I9682c ) - একটি অ্যানোনিমাস অবজেক্ট ইনস্ট্যানশিয়েট না করেই লাইফসাইকেল ইভেন্ট পর্যবেক্ষণ করার জন্য একটি ল্যাম্বডা-ভিত্তিক
Lifecycle.addObserverএক্সটেনশন ফাংশন যোগ করুন। ( I94f38 ) -
ViewModelStoreOwnerএdefaultViewModelProviderFactoryএবংdefaultViewModelCreationExtrasএক্সটেনশন যোগ করুন। এগুলিHasDefaultViewModelProviderFactoryএর সাথে ম্যানুয়াল টাইপ চেকের প্রয়োজন ছাড়াই ডিফল্টগুলিতে নিরাপদ অ্যাক্সেস প্রদান করে। ( Ifa83d )
এপিআই পরিবর্তন
- Compose-এ সহজে স্কোপড
ViewModelStoreOwnerতৈরি করতেrememberViewModelStoreOwnerযোগ করুন। এই ফাংশনটি এমন একজন মালিককে রিটার্ন করে যিনি Composable-এর লাইফসাইকেলের সাথে যুক্ত থাকেন এবং UI থেকে Composable-টি সরিয়ে ফেলা হলে এর ViewModel-গুলো স্বয়ংক্রিয়ভাবে মুছে ফেলেন। ( I2a15b , b/165642391 ) - Compose-এ স্কোপড
ViewModelStoreইনস্ট্যান্স তৈরি করার জন্যrememberViewModelStoreProviderযোগ করুন। এই ফাংশনটি একটি চাইল্ড স্টোরকে তার প্যারেন্ট মালিকের সাথে লিঙ্ক করে, যা কনফিগারেশন পরিবর্তনের পরেও ViewModel-গুলিকে অক্ষত রাখে এবং হায়ারার্কি থেকে Composable-টি সরিয়ে ফেলা হলে সেগুলিকে স্বয়ংক্রিয়ভাবে মুছে ফেলে। ( I0f57a , b/165642391 ) - স্কোপড
ViewModelStoreইনস্ট্যান্সগুলি পরিচালনা করতেViewModelStoreProviderযোগ করুন। এই ক্লাসটি এমন চাইল্ড স্কোপ তৈরি করতে সক্ষম করে যা কনফিগারেশন পরিবর্তনের পরেও টিকে থাকে কিন্তু স্বাধীনভাবে পরিষ্কার করা যায়। এটিViewModelStoreOwnerর্যাপারও প্রদান করে যা প্যারেন্ট থেকে ডিফল্ট ফ্যাক্টরি এবং ক্রিয়েশন এক্সট্রা উত্তরাধিকার সূত্রে পায়। ( I87f4f , b/434651920 )
সংস্করণ 2.11.0-alpha01
২৫শে ফেব্রুয়ারি, ২০২৬
androidx.lifecycle:lifecycle-*:2.11.0-alpha01 প্রকাশিত হয়েছে। সংস্করণ 2.11.0-alpha01-এ এই কমিটগুলো অন্তর্ভুক্ত রয়েছে।
নতুন বৈশিষ্ট্য
- ViewModel-Compose-এ সমস্ত Kotlin Multiplatform (KMP) টার্গেট সমর্থন করুন।
LocalViewথেকে ওনার রেজোলিউশনকে বিচ্ছিন্ন করুন, যাতে প্ল্যাটফর্ম হোস্টগুলি একটি ডিফল্টViewModelStoreOwnerপ্রদান করতে পারে এবং একই সাথে Android-এLocalViewএকটি নিরাপদ ফলব্যাক হিসেবে বজায় রাখা যায়। ( I09fab , b/434940570 , Ic8526 , b/478146897 )
এপিআই পরিবর্তন
- ডিবাগিং সহজ করার জন্য
ViewModelStoreএ একটিtoStringইমপ্লিমেন্টেশন যোগ করুন যা সমস্ত সংরক্ষিত কী তালিকাভুক্ত করবে। ( I0a6f4 ) -
HasDefaultViewModelProviderFactory.defaultViewModelProviderFactoryএর জন্য একটি ডিফল্ট ইমপ্লিমেন্টেশন যোগ করা হয়েছে, যার ফলে ইন্টারফেসটি ইমপ্লিমেন্ট করার সময় আপনাকে আর এই প্রপার্টিটি স্পষ্টভাবে ওভাররাইড করতে হবে না। ( Ia7095 ) - ওভাররাইড করা মেথডগুলোর জন্য
super.onCleared()কল করার প্রয়োজন নেই, তা স্পষ্টভাবে বোঝানোর জন্যViewModel.onCleared@EmptySuperদিয়ে অ্যানোটেট করুন। ( I8c226 )
সংস্করণ ২.১০
সংস্করণ ২.১০.০
১৯ নভেম্বর, ২০২৫
androidx.lifecycle:lifecycle-*:2.10.0 প্রকাশিত হয়েছে। সংস্করণ 2.10.0-এ এই কমিটগুলো অন্তর্ভুক্ত রয়েছে।
২.৯.০ সংস্করণের পর থেকে গুরুত্বপূর্ণ পরিবর্তনসমূহ:
সরাসরি UI-এর মধ্যে স্কোপড লাইফসাইকেল তৈরি করার সুবিধা পেতে একটি
rememberLifecycleOwnerকম্পোজেবল যোগ করুন। এটি সেইসব কম্পোনেন্টের জন্য উপযোগী যাদের নিজেদের লাইফসাইকেল স্বাধীনভাবে পরিচালনা করার প্রয়োজন হয়, যেমন একটিHorizontalPagerযা শুধুমাত্র বর্তমান পেজটিকেRESUMEDকরতে চায় অথবা Navigation3-এর মতো লাইব্রেরি।@Composable fun MyComposable() { // This LifecycleOwner is automatically moved to DESTROYED when // it leaves composition and its maxLifecycle is the maximum of either // the maxLifecycle you set or the Lifecycle.State of the parentLifecycleOwner val lifecycleOwner = rememberLifecycleOwner( maxLifecycle = RESUMED, parentLifecycleOwner = LocalLifecycleOwner.current, ) CompositionLocalProvider(LocalLifecycleOwner provides lifecycleOwner) { val childLifecycleOwner = LocalLifecycleOwner.current } }lifecycle-viewmodel-navigation3আর্টিফ্যাক্টটি Navigation3-এর জন্য একটি প্রি-বিল্ট ইন্টিগ্রেশন প্রদান করে, যা আপনাকেrememberViewModelStoreNavEntryDecorator()API ব্যবহার করেViewModelইনস্ট্যান্সগুলোকে স্বতন্ত্র স্ক্রিন ('এন্ট্রি')-তে স্কোপিং সক্ষম করতে দেয়:@Composable fun MyComposable() { NavDisplay( backStack = backStack, entryDecorators = listOf( rememberSaveableStateHolderNavEntryDecorator(), // Add this line to automatically scope ViewModels to each entry rememberViewModelStoreNavEntryDecorator(), ), entryProvider = entryProvider { // Add your entries here } } }CreationExtrasজন্য একটি বিল্ডার ফ্যাক্টরি ফাংশন যোগ করুন, যা আরও সুবিধাজনক এবং প্রচলিত কোটলিন এপিআই প্রদান করবে।override val defaultViewModelCreationExtras: CreationExtras // Use the CreationExtras builder to add in a custom value to the default // CreationExtras in your Activity or Fragment get() = super.defaultViewModelCreationExtras + CreationExtras { this[CustomKey] = "customValue" }SavedStateHandle.savedএ নালযোগ্য টাইপের জন্য নেটিভ সাপোর্ট যোগ করা হয়েছে, যা নালযোগ্য প্রোপার্টি সংরক্ষণ ও পুনরুদ্ধারকে আরও সহজ করে।SavedStateHandleকনস্ট্রাক্টরগুলোকে@VisibleForTestingহিসেবে চিহ্নিত করুন।minSdk-টি API 21 থেকে API 23-এ পরিবর্তিত হয়েছে।
সংস্করণ 2.10.0-rc01
০৫ নভেম্বর, ২০২৫
androidx.lifecycle:lifecycle-*:2.10.0-rc01 প্রকাশিত হয়েছে। সংস্করণ 2.10.0-rc01-এ এই কমিটগুলো অন্তর্ভুক্ত রয়েছে।
সংস্করণ 2.10.0-beta01
২২ অক্টোবর, ২০২৫
androidx.lifecycle:lifecycle-*:2.10.0-beta01 প্রকাশিত হয়েছে। সংস্করণ 2.10.0-beta01-এ এই কমিটগুলো অন্তর্ভুক্ত রয়েছে।
এপিআই পরিবর্তন
-
ViewModelStoreNavEntryDecoratorDefaultনাম পরিবর্তন করেViewModelStoreNavEntryDecoratorDefaultsরাখা হয়েছে, যেখানে একটি 's' যুক্ত হয়েছে। ( I6d27b , b/444447434 )
বাগ সংশোধন
- যদি মালিক
Lifeycle.State.CREATEDএ যাওয়ার আগে একটিLifecycle.Event.ON_DESTROYইভেন্ট পায়, তাহলেrememberLifecycleOwnerআর ক্র্যাশ করে না। ( I6f98e , b/444594991 )
সংস্করণ ২.১০.০-আলফা০৫
০৮ অক্টোবর, ২০২৫
androidx.lifecycle:lifecycle-*:2.10.0-alpha05 প্রকাশিত হয়েছে। সংস্করণ 2.10.0-alpha05-এ এই কমিটগুলো অন্তর্ভুক্ত রয়েছে।
এপিআই পরিবর্তন
-
removeViewModelStoreOnPopCallback()এখন একটিViewModelStoreNavEntryDecoratorDefaultঅবজেক্টের অংশ, যেখান থেকে অন্যান্য প্ল্যাটফর্ম এবং ইমপ্লিমেন্টেশনগুলো ডিফল্টটিকে কল করতে পারে। ( Ia1f23 , b/444447434 ) -
NavEntryDecoratorএর ফ্যাক্টরি হিসেবে এর কার্যকারিতা আরও ভালোভাবে প্রতিফলিত করার জন্যViewModelStoreNavEntryDecoratorএকটি ফাংশন থেকে ক্লাসে রিফ্যাক্টর করা হয়েছে, এবং এটি স্পষ্ট করার জন্য ডেকোরেটরটিরshouldRemoveViewModelStoreপ্যারামিটারের নাম পরিবর্তন করেremoveViewModelStoreOnPopরাখা হয়েছে যে এই কলব্যাকটি শুধুমাত্র তখনই চালু হয় যখনbackStackথেকে কোনো এন্ট্রি পপ করা হয়। ( Iefdc5 , b/444447434 )
সংস্করণ ২.১০.০-আলফা০৪
২৪ সেপ্টেম্বর, ২০২৫
androidx.lifecycle:lifecycle-*:2.10.0-alpha04 প্রকাশিত হয়েছে। সংস্করণ 2.10.0-alpha04-এ এই কমিটগুলো রয়েছে।
এপিআই পরিবর্তন
-
LifecycleOwnerকম্পোজেবলটিকেrememberLifecycleOwnerএ রিফ্যাক্টর করুন। ফাংশনটি এখন সরাসরিLifecycleOwnerরিটার্ন করে। কোনো সাব-কম্পোজিশনে এই ওনারটি সরবরাহ করতেCompositionLocalProviderব্যবহার করুন। ( Ic57f0 , b/444446629 ) - JetBrains-কে এই টার্গেটগুলো পূরণকারী ফর্ক সরবরাহ করতে এবং এর মাধ্যমে CMP সমর্থন করতে সক্ষম করার জন্য lifecycle-viewmodel-navigation3-এ KMP স্টাব যোগ করুন। ( I44a4c )
সংস্করণ ২.১০.০-আলফা০৩
২৭ আগস্ট, ২০২৫
androidx.lifecycle:lifecycle-*:2.10.0-alpha03 প্রকাশিত হয়েছে। সংস্করণ 2.10.0-alpha03-এ এই কমিটগুলো অন্তর্ভুক্ত রয়েছে।
এপিআই পরিবর্তন
- Compose 1.9.0 সংস্করণে আপডেট করুন। ( I2b9de )
সংস্করণ 2.10.0-alpha02
১৩ আগস্ট, ২০২৫
androidx.lifecycle:lifecycle-*:2.10.0-alpha02 প্রকাশিত হয়েছে। সংস্করণ 2.10.0-alpha02-এ এই কমিটগুলো অন্তর্ভুক্ত রয়েছে।
নতুন বৈশিষ্ট্য
LifecycleOwnerকম্পোজেবলটি এখন একটি স্বতন্ত্র রুট লাইফসাইকেল তৈরি করতে পারে।parent = null(স্পষ্টভাবে) সেট করার মাধ্যমে, নতুন লাইফসাইকেলটি যেকোনো হোস্ট (যেমনActivity,FragmentবাNavBackStackEntry) থেকে স্বাধীনভাবে কাজ করে। কম্পোজেবলটি কম্পোজিশনে প্রবেশ করার সাথে সাথেই এটি শুরু হয় এবং কম্পোজিশন থেকে বেরিয়ে গেলে স্বয়ংক্রিয়ভাবে ধ্বংস হয়ে যায়। ( I8dfbe , b/433659048 )@Composable fun IndependentComponent() { // Create a standalone lifecycle, not tied to the parent Activity/Fragment. LifecycleOwner(parent = null) { val rootLifecycle = LocalLifecycleOwner.current.lifecycle } }
এপিআই পরিবর্তন
-
LifecycleOwnerকম্পোজেবলে,parentLifecycleOwnerপ্যারামিটারটির নাম পরিবর্তন করেparentরাখা হয়েছে। ( I080bc )
বাগ সংশোধন
-
LifecycleOwnerকম্পোজেবলটি এখন ডিসপোজালের সময় তার লাইফসাইকেলকে সঠিকভাবেDESTROYEDএ পরিবর্তন করে। এটি সেইসব এক্সটার্নাল কোডের জন্য সম্ভাব্য মেমরি লিক প্রতিরোধ করে, যেগুলো লাইফসাইকেলটির একটি রেফারেন্স ধারণ করে। ( I9e5b7 , b/433659048 ) - ডিফল্ট minSdk API 21 থেকে API 23-এ স্থানান্তর করা হচ্ছে ( Ibdfca , b/380448311 , b/435705964 , b/435705223 )
বাহ্যিক অবদান
-
LifecycleOwnerথেকে অপ্রয়োজনীয় অভ্যন্তরীণ ব্যাকিং ফিল্ডগুলো অপসারণ করা হয়েছে। অবদানের জন্য জেক হোয়ার্টনকে ধন্যবাদ। ( Ideddb )
সংস্করণ 2.10.0-alpha01
৩০ জুলাই, ২০২৫
androidx.lifecycle:lifecycle-*:2.10.0-alpha01 প্রকাশিত হয়েছে। সংস্করণ 2.10.0-alpha01-এ এই কমিটগুলো অন্তর্ভুক্ত রয়েছে।
নতুন বৈশিষ্ট্য
সরাসরি UI-এর মধ্যে স্কোপড লাইফসাইকেল তৈরি করার জন্য একটি
LifecycleOwnerকম্পোজেবল যোগ করুন। এটি সেইসব কম্পোনেন্টের জন্য উপযোগী যাদের নিজেদের লাইফসাইকেল স্বাধীনভাবে পরিচালনা করার প্রয়োজন হয়। Navigation3 কীভাবে এই নতুন কম্পোজেবলটি ইন্টিগ্রেট করে তার একটি উদাহরণের জন্য, aosp/3708610 দেখুন। ( 76cbf7 )@Composable fun MyComposable() { LifecycleOwner( maxLifecycle = RESUMED, parentLifecycleOwner = LocalLifecycleOwner.current, ) { val childLifecycleOwner = LocalLifecycleOwner.current } }
এপিআই পরিবর্তন
-
CreationExtrasজন্য একটি বিল্ডার ফ্যাক্টরি ফাংশন যোগ করুন, যা আরও সুবিধাজনক এবং প্রচলিত কোটলিন এপিআই প্রদান করবে। ( Iab2bd ) -
SavedStateHandle.savedএ নালযোগ্য টাইপের জন্য নেটিভ সাপোর্ট যোগ করা হয়েছে, যা নালযোগ্য প্রোপার্টি সংরক্ষণ এবং পুনরুদ্ধার করাকে সহজ করে। ( I54d69 , b/421325690 ) -
SavedStateHandleকনস্ট্রাক্টরগুলোকে@VisibleForTestingহিসেবে চিহ্নিত করুন। ( Iff0e0 , b/408002794 )
সংস্করণ ২.৯
সংস্করণ ২.৯.৪
১৭ সেপ্টেম্বর, ২০২৫
androidx.lifecycle:lifecycle-*:2.9.4 প্রকাশিত হয়েছে। সংস্করণ 2.9.4-এ এই কমিটগুলো অন্তর্ভুক্ত রয়েছে।
বাগ সংশোধন
- কম্পোজ কম্পাইলার প্লাগইন প্রয়োগ না হওয়ার একটি ত্রুটি সংশোধন করা হয়েছে, যার কারণে লাইফসাইকেল KMP আর্টিফ্যাক্টগুলো নষ্ট হয়ে যাচ্ছিল। ( Ie95bc , b/443096483 , b/443965665 )
সংস্করণ ২.৯.৩
২৭ আগস্ট, ২০২৫
androidx.lifecycle:lifecycle-*:2.9.3 প্রকাশিত হয়েছে। সংস্করণ 2.9.3-এ এই কমিটগুলো অন্তর্ভুক্ত রয়েছে।
নতুন বৈশিষ্ট্য
- লাইফসাইকেল
*-composeআর্টিফ্যাক্টে নতুন কোটলিন মাল্টিপ্ল্যাটফর্ম (KMP) টার্গেট যোগ করা হয়েছে। লাইফসাইকেল এখন মোট নিম্নলিখিত প্ল্যাটফর্মগুলিকে সমর্থন করে: JVM (অ্যান্ড্রয়েড এবং ডেস্কটপ), নেটিভ (লিনাক্স, iOS, watchOS, macOS, MinGW), এবং ওয়েব (জাভাস্ক্রিপ্ট, WasmJS)। ( I0a0e4 )
বাগ সংশোধন
-
androidx.annotation1.9.1-এ আপডেট করুন ( Ic9e4f , b/397701294 )
সংস্করণ ২.৯.২
১৬ জুলাই, ২০২৫
androidx.lifecycle:lifecycle-*:2.9.2 প্রকাশিত হয়েছে। সংস্করণ 2.9.2-এ এই কমিটগুলো অন্তর্ভুক্ত রয়েছে।
বাগ সংশোধন
- লাইফসাইকেল আর্টিফ্যাক্টে নতুন কোটলিন মাল্টিপ্ল্যাটফর্ম (KMP) টার্গেট যোগ করা হয়েছে। লাইফসাইকেল এখন মোট নিম্নলিখিত প্ল্যাটফর্মগুলো সমর্থন করে: JVM (অ্যান্ড্রয়েড এবং ডেস্কটপ), নেটিভ (লিনাক্স, iOS, watchOS, macOS, MinGW), এবং ওয়েব (জাভাস্ক্রিপ্ট, WasmJS)। উল্লেখ্য যে,
*-composeআর্টিফ্যাক্টে কোনো নতুন KMP টার্গেট যোগ করা হয়নি, কারণ এটি Compose 1.9-এর স্থিতিশীল রিলিজের উপর নির্ভরশীল। ( I01cb8 )।
নির্ভরতা আপডেট
- নতুন KMP টার্গেটগুলোর ( Ic9e4f , b/397701294 ) সাপোর্ট চালু করার জন্য লাইফসাইকেল এখন অ্যানোটেশন
1.9.1এর উপর নির্ভরশীল।
সংস্করণ ২.৯.১
৪ জুন, ২০২৫
androidx.lifecycle:lifecycle-*:2.9.1 প্রকাশিত হয়েছে। সংস্করণ 2.9.1-এ এই কমিটগুলো অন্তর্ভুক্ত রয়েছে।
বাগ সংশোধন
-
SavedStateHandle.remove(key)দ্বারাSavedStateHandle.getMutableStateFlow(key)এর স্টেটগুলো ক্লিয়ার না হওয়ার সমস্যাটি সমাধান করা হয়েছে। ( d5f939 , b/418746333 )
সংস্করণ ২.৯.০
৭ মে, ২০২৫
androidx.lifecycle:lifecycle-*:2.9.0 প্রকাশিত হয়েছে। সংস্করণ 2.9.0-এ এই কমিটগুলো অন্তর্ভুক্ত রয়েছে।
2.8.0 থেকে গুরুত্বপূর্ণ পরিবর্তনসমূহ
-
androidx.lifecycle:lifecycle-viewmodel-testingএকটি নতুন KMP আর্টিফ্যাক্ট উপলব্ধ হয়েছে, যাViewModelsবিচ্ছিন্নভাবে পরীক্ষা করার জন্য একটিViewModelScenarioক্লাস প্রদান করে। এতেonClearedওSavedStateHandleএর পাশাপাশিrecreate()মাধ্যমে প্রসেসের মৃত্যু ও পুনঃসৃষ্টিও পরীক্ষা করার সুবিধা রয়েছে। - একটি
MutableStateFlowরিটার্ন করার জন্যSavedStateHandleএgetMutableStateFlowযোগ করুন। এই নতুন ফাংশনটি শুধুমাত্র কী-এর জন্য সীমাবদ্ধ এবংgetLiveDataসাথে ব্যবহার করা যাবে না। একই স্টেট অ্যাক্সেস করার জন্য উভয়টি ব্যবহার করার চেষ্টা করলে একটি এক্সেপশন থ্রো করা হবে। -
CreationExtrasএখন ম্যাপের মতো অপারেটর ওভারলোড অন্তর্ভুক্ত করা হয়েছে, যা কোটলিনে কন্টেন্টের প্রচলিত রীতি অনুযায়ী পরিবর্তন করতে সক্ষম করে। এটিCreationExtrasসাথেin,+=, এবং+ব্যবহারের সুযোগ দেয়।
কোটলিনএক্স সিরিয়ালাইজেশন সাপোর্ট
SavedState
1.3.0-এ যুক্ত হওয়া KotlinX Serialization-এর সাপোর্টের সাথে, আমরাsavedএকটি লেজি প্রপার্টি ডেলিগেট চালু করেছি। এর ফলে@Serializableক্লাসগুলোকে একটিSavedStateHandleএ সহজে সংরক্ষণ করা যায় এবং প্রসেস বন্ধ ও পুনরায় চালু হওয়ার পরেও ক্লাসগুলো স্বয়ংক্রিয়ভাবে পুনরুদ্ধার হয়। অনুগ্রহ করে মনে রাখবেন যেsavedডেলিগেটটি লেজি এবং এটি অ্যাক্সেস না করা পর্যন্তinitল্যাম্বডাকে কল করবে না বাSavedStateHandleএ কিছু সংরক্ষণ করবে না।@Serializable data class Person(val firstName: String, val lastName: String) class MyViewModel(handle: SavedStateHandle) : ViewModel() { var person by handle.saved { Person("John", "Doe") } fun onPersonChanged(person: Person) { this.person = person } }
কোটলিন মাল্টিপ্ল্যাটফর্ম
-
lifecycle-testingমডিউলটি এখন KMP-এর সাথে সামঞ্জস্যপূর্ণ, যার মধ্যেTestLifecycleOwnerমতো API-গুলোও অন্তর্ভুক্ত। -
lifecycle-viewmodel-savedstateমডিউলটি এখন KMP-এর সাথে সামঞ্জস্যপূর্ণ, যার মধ্যেSavedStateHandleমতো API-গুলোও অন্তর্ভুক্ত। -
androidx.compose.ui.platform.LocalLifecycleOwnerএখন কমন সোর্স সেটে উপলব্ধ। -
NewInstanceFactoryএখন JVM ডেস্কটপ এবং অ্যান্ড্রয়েড টার্গেটে উপলব্ধ।
আচরণগত পরিবর্তন
-
Lifecycle.DESTROYEDঅবস্থাটি চূড়ান্ত, এবং এখন থেকে কোনোLifecycleএই অবস্থা থেকে অন্য কোনো অবস্থায় সরানোর চেষ্টা করলে একটিIllegalStateExceptionদেখা দেবে। -
SavedStateHandleএখন আর এমন কোনোSavedStateProvider.saveState()অন্তর্ভুক্ত করে না, যেখানে ফেরত আসাBundleখালি থাকে।
সংস্করণ 2.9.0-rc01
২৩ এপ্রিল, ২০২৫
androidx.lifecycle:lifecycle-*:2.9.0-rc01 প্রকাশিত হয়েছে। সংস্করণ 2.9.0-rc01-এ এই কমিটগুলো অন্তর্ভুক্ত রয়েছে।
লিন্ট এপিআই সামঞ্জস্যতা সতর্কতা
- JetBrains,
KaCallableMemberCallএকটি ক্লাস থেকে ইন্টারফেসে পরিবর্তন করেছে, যা বাইনারি সামঞ্জস্য নষ্ট করে। আপনার প্রোজেক্টের AGP ভার্সন যদি লিন্ট চেক কম্পাইল করতে ব্যবহৃত ভার্সন থেকে ভিন্ন হয়, তবে এটি ক্র্যাশ ঘটাতে পারে। এই আপডেটটি aosp/3577172- এ করা হয়েছিল কিন্তু রিলিজ নোটে এটি উল্লেখ ছিল না — আমরা এখানে বিষয়টি স্পষ্ট করছি। প্রস্তাবিত সমাধান: সর্বশেষ স্থিতিশীল AGP-তে আপডেট করুন। যদি আপনি সম্পূর্ণ আপডেট করতে না পারেন, তবে আপনার AGP ভার্সনের সাথে লিন্ট চেকগুলো মেলানোর জন্যandroid.experimental.lint.versionব্যবহার করুন — বিস্তারিত জানতে Compose Runtime-এর আচরণগত পরিবর্তনসমূহ দেখুন।
সংস্করণ ২.৯.০-বিটা০১
৯ এপ্রিল, ২০২৫
androidx.lifecycle:lifecycle-*:2.9.0-beta01 প্রকাশিত হয়েছে। সংস্করণ 2.9.0-beta01-এ এই কমিটগুলো রয়েছে।
এপিআই পরিবর্তন
-
Lifecycle ViewModel Composeএখন কম্পোজ রানটাইম ১.৭.১ এবং তার পরবর্তী সংস্করণগুলোর মতো একই কোটলিন মাল্টিপ্ল্যাটফর্ম সেটআপ ব্যবহার করে --desktopআর্টিফ্যাক্টগুলো এখন সরিয়ে ফেলা হয়েছে এবং-jvmStubsও-linuxx64Stubsআর্টিফ্যাক্টগুলো যোগ করা হয়েছে। এই টার্গেটগুলোর কোনোটিই ব্যবহারের জন্য নয়, এগুলো জেটব্রেইনসের কম্পোজ প্রচেষ্টাকে সাহায্য করার জন্য প্লেসহোল্ডার হিসেবে রয়েছে। ( I5cb14 , b/406592090 )
নির্ভরতা আপডেট
- এই লাইব্রেরিটি এখন কোটলিন ২.০ ল্যাঙ্গুয়েজ লেভেলকে টার্গেট করে এবং এর জন্য কেজিপি ২.০.০ বা তার নতুন সংস্করণ প্রয়োজন। ( Idb6b5 )
-
Lifecycle ViewModel Composeএখন কম্পোজ ১.৭.৮-এর উপর নির্ভরশীল। ( I5cb14 , b/406592090 )
সংস্করণ ২.৯.০-আলফা১৩
২৬ মার্চ, ২০২৫
androidx.lifecycle:lifecycle-*:2.9.0-alpha13 কোনো উল্লেখযোগ্য পাবলিক পরিবর্তন ছাড়াই প্রকাশ করা হয়েছে। সংস্করণ 2.9.0-alpha13-এ এই কমিটগুলো রয়েছে।
সংস্করণ ২.৯.০-আলফা১২
১২ মার্চ, ২০২৫
androidx.lifecycle:lifecycle-*:2.9.0-alpha12 প্রকাশিত হয়েছে। সংস্করণ 2.9.0-alpha12-এ এই কমিটগুলো রয়েছে।
এপিআই পরিবর্তন
- সকল সমর্থিত KMP প্ল্যাটফর্মে
ViewModelProvider.getএ@MainThreadঅ্যানোটেশন যোগ করুন। ( I7e8dd , b/397736115 ) -
SavedState*DelegatesSavedState*Delegateএ পুনঃনামকরণ করুন। ( I8589b , b/399629301 )
সংস্করণ ২.৯.০-আলফা১১
২৬ ফেব্রুয়ারি, ২০২৫
androidx.lifecycle:lifecycle-*:2.9.0-alpha11 প্রকাশিত হয়েছে। সংস্করণ 2.9.0-alpha11-এ এই কমিটগুলো অন্তর্ভুক্ত রয়েছে।
এপিআই পরিবর্তন
-
saved()ডেলিগেটগুলিতেSavedStateConfigপ্যারামিটার যোগ করুন ( I39b3a )
সংস্করণ ২.৯.০-আলফা১০
১২ ফেব্রুয়ারী, ২০২৫
androidx.lifecycle:lifecycle-*:2.9.0-alpha10 প্রকাশিত হয়েছে। সংস্করণ 2.9.0-alpha10-এ এই কমিটগুলো অন্তর্ভুক্ত রয়েছে।
এপিআই পরিবর্তন
-
MutableStateSerializerlifecycle-viewmodel-composeথেকেsavedstate-composeএ স্থানান্তর করা হয়েছে। ( I4f690 , b/378895074 )
বাহ্যিক অবদান
- কম্পোজিশনের সময়
Lifecycle::currentStateকল করার জন্য একটি নতুন লিন্ট ইস্যু যোগ করা হয়েছে। এর পরিবর্তেcurrentStateAsalue().valueব্যবহার করার পরামর্শ দেওয়া হচ্ছে, যাতে লাইফসাইকেল স্টেটের পরিবর্তনগুলো সঠিকভাবে রিকম্পোজিশন ঘটাতে পারে। ধন্যবাদ স্টিভেন শোয়েন! ( Iad484 )
সংস্করণ ২.৯.০-আলফা০৯
২৯ জানুয়ারী, ২০২৫
androidx.lifecycle:lifecycle-*:2.9.0-alpha09 প্রকাশিত হয়েছে। সংস্করণ 2.9.0-alpha09-এ এই কমিটগুলো অন্তর্ভুক্ত রয়েছে।
নতুন বৈশিষ্ট্য
-
androidx.compose.runtime.MutableStateকে সিরিয়ালাইজ করার জন্যMutableStateSerializerযোগ করা হয়েছে। ( Idfc48 , b/378895074 )
এপিআই পরিবর্তন
- ডিফল্ট প্যারামিটার সহ ওভারলোডেড
SavedStateHandle.saved()ডেলিগেট ফাংশনগুলি প্রতিস্থাপন করুন ( Icd1c1 ) -
AbstractSavedStateViewModelFactoryএখন আর ব্যবহার করা হয় না, কারণ এটি প্রতিটিViewModelজন্য একটিSavedStateHandleতৈরি করে, যা অপ্রয়োজনীয় অতিরিক্ত কাজের চাপ সৃষ্টি করে। আরও কার্যকরভাবেViewModelতৈরির জন্য এর পরিবর্তেViewModelProvider.FactoryসাথেCreationExtras.createSavedStateHandleব্যবহার করুন। ( Ia920b , b/388590327 )
সংস্করণ ২.৯.০-আলফা০৮
১১ ডিসেম্বর, ২০২৪
androidx.lifecycle:lifecycle-*:2.9.0-alpha08 প্রকাশিত হয়েছে। সংস্করণ 2.9.0-alpha08-এ এই কমিটগুলো রয়েছে।
নতুন বৈশিষ্ট্য
- পরীক্ষাধীন
ViewModelএবং এর সাথে যুক্ত সমস্ত উপাদান পুনরায় তৈরি করে একটি সিস্টেম প্রসেস ডেথ অনুকরণ করতেViewModelScenario.recreateযোগ করুন। ( Id6a69 , b/381063087 ) - তাদের নিজ নিজ
findViewTreeAPI-এর মাধ্যমে প্রাপ্তLifecycleOwnerএবংViewModelStoreOwnerইনস্ট্যান্সগুলিকে এখন একটি ভিউ-এর বিচ্ছিন্ন প্যারেন্ট, যেমন একটিViewOverlayমাধ্যমে সমাধান করা যাবে। বিচ্ছিন্ন ভিউ প্যারেন্ট সম্পর্কে আরও তথ্যের জন্য core-এর রিলিজ নোট অথবাViewTree.setViewTreeDisjointParentএর ডকুমেন্টেশন দেখুন। ( I800f4 )
এপিআই পরিবর্তন
-
SavedStateRegistryOwnerDelegate( I8c135 , b/376026744 ) এর সাথে নামকরণ এবং প্যাকেজ সংগঠনকে আরও সামঞ্জস্যপূর্ণ করুন।
বাগ সংশোধন
- এই লাইব্রেরিটি এখন JSpecify নালনেস অ্যানোটেশন ব্যবহার করে, যা টাইপ-ইউজ। সঠিক ব্যবহার নিশ্চিত করতে কোটলিন ডেভেলপারদের নিম্নলিখিত কম্পাইলার আর্গুমেন্টটি ব্যবহার করা উচিত:
-Xjspecify-annotations=strict(কোটলিন কম্পাইলারের ২.১.০ সংস্করণ থেকে এটি ডিফল্ট হিসেবে ব্যবহৃত হয়)। ( Ie4340 , b/326456246 ) - ডকুমেন্ট
ViewModel.onClearedক্লিয়ারিং সিকোয়েন্স। ( I586c7 , b/363984116 )
সংস্করণ ২.৯.০-আলফা০৭
১৩ নভেম্বর, ২০২৪
androidx.lifecycle:lifecycle-*:2.9.0-alpha07 প্রকাশিত হয়েছে। সংস্করণ 2.9.0-alpha07-এ এই কমিটগুলো অন্তর্ভুক্ত রয়েছে।
কোটলিন মাল্টিপ্ল্যাটফর্ম সামঞ্জস্যতা
- লাইফসাইকেল
ViewModel SavedStateএখন কেএমপি (KMP) সামঞ্জস্যপূর্ণ। এর ফলে আপনি সাধারণ কোডেSavedStateHandle) ব্যবহার করতে পারবেন। ( Ib6394 , b/334076622 )
কোটলিনএক্স সিরিয়ালাইজেশন সাপোর্ট
SavedState
1.3.0-alpha05এ যুক্ত হওয়া KotlinX Serialization-এর সাপোর্টের সাথে, আমরাsavedএকটি লেজি প্রপার্টি ডেলিগেট চালু করেছি। এর ফলে@Serializableক্লাসগুলোকে একটিSavedStateHandleএ সহজে সংরক্ষণ করা যায় এবং প্রসেস বন্ধ ও পুনরায় চালু হওয়ার পরেও ক্লাসগুলো স্বয়ংক্রিয়ভাবে পুনরুদ্ধার হয়। অনুগ্রহ করে মনে রাখবেন যেsavedডেলিগেটটি লেজি এবং এটি অ্যাক্সেস না করা পর্যন্তinitল্যাম্বডাকে কল করবে না বাSavedStateHandleএ কিছু সংরক্ষণ করবে না। ( I47a88 , b/376026744 )@Serializable data class Person(val firstName: String, val lastName: String) class MyViewModel(handle: SavedStateHandle) : ViewModel() { var person by handle.saved { Person("John", "Doe") } fun onPersonChanged(person: Person) { this.person = person } }
এপিআই পরিবর্তন
- একটি
MutableStateFlowরিটার্ন করার জন্যSavedStateHandleএgetMutableStateFlowযোগ করুন। এই নতুন ফাংশনটি কী-এক্সক্লুসিভ এবংgetLiveDataসাথে ব্যবহার করা যাবে না। একই স্টেট অ্যাক্সেস করার জন্য উভয়টি ব্যবহার করার চেষ্টা করলে একটি এক্সেপশন থ্রো করা হবে। ( I04a4f , b/375408415 )
সংস্করণ ২.৯.০-আলফা০৬
৩০ অক্টোবর, ২০২৪
androidx.lifecycle:lifecycle-*:2.9.0-alpha06 প্রকাশিত হয়েছে। সংস্করণ 2.9.0-alpha06-এ এই কমিটগুলো রয়েছে।
আচরণগত পরিবর্তন
-
Lifecycle.DESTROYEDঅবস্থাটি চূড়ান্ত, এবং এখন থেকে কোনোLifecycleএই অবস্থা থেকে অন্য কোনো অবস্থায় সরানোর চেষ্টা করলে একটিIllegalStateExceptionদেখা দেবে। ( I116c4 , b/370577987 ) -
SavedStateHandleএখন আর এমন কোনোSavedStateProvider.saveState()অন্তর্ভুক্ত করে না, যেখানে ফেরত আসাBundleখালি থাকে। ( I910b5 , b/370577987 )
বাগ সংশোধন
-
LifecycleDESTROYEDহলেLifecycle.eventFlowএখন সঠিকভাবে সম্পন্ন হয় ( I293b2 , b/374043130 )
সংস্করণ ২.৯.০-আলফা০৫
১৬ অক্টোবর, ২০২৪
androidx.lifecycle:lifecycle-*:2.9.0-alpha05 কোনো উল্লেখযোগ্য পরিবর্তন ছাড়াই প্রকাশ করা হয়েছে। সংস্করণ 2.9.0-alpha05-এ এই কমিটগুলো রয়েছে।
সংস্করণ ২.৯.০-আলফা০৪
২ অক্টোবর, ২০২৪
androidx.lifecycle:lifecycle-*:2.9.0-alpha04 প্রকাশিত হয়েছে। সংস্করণ 2.9.0-alpha04-এ এই কমিটগুলো রয়েছে।
কোটলিন মাল্টিপ্ল্যাটফর্ম
- ভবিষ্যতের কোনো রিলিজে
SavedStateHandleমতো API-গুলো কমন সোর্স সেটে উপলব্ধ করার প্রস্তুতির অংশ হিসেবেlifecycle-viewmodel-savedstateমডিউলটিকে এখন KMP-উপযোগী করে কনফিগার করা হয়েছে। ( I503ed , I48764 , b/334076622 )
সংস্করণ ২.৯.০-আলফা০৩
১৮ সেপ্টেম্বর, ২০২৪
androidx.lifecycle:lifecycle-*:2.9.0-alpha03 প্রকাশিত হয়েছে। সংস্করণ 2.9.0-alpha03-এ এই কমিটগুলো রয়েছে।
বাগ সংশোধন
- লাইফসাইকেল
2.8.6থেকে:NullSafeMutableLiveDataলিন্ট এররটিতে স্মার্ট কাস্টের জন্য উন্নত সাপোর্ট যুক্ত করা হয়েছে, যা ফলস পজিটিভ এড়ায়। ( 85fed6 , b/181042665 )
নির্ভরতা আপডেট
- লাইফসাইকেল
2.8.6থেকে: লাইফসাইকেল রানটাইম কম্পোজ এখন কম্পোজ রানটাইম1.7.1এর উপর নির্ভরশীল। - লাইফসাইকেল রানটাইম এখন প্রোফাইলইনস্টলার
1.4.0এর উপর নির্ভরশীল।
সংস্করণ ২.৯.০-আলফা০২
৪ সেপ্টেম্বর, ২০২৪
androidx.lifecycle:lifecycle-*:2.9.0-alpha02 প্রকাশিত হয়েছে। সংস্করণ 2.9.0-alpha02-এ এই কমিটগুলো রয়েছে।
বাগ সংশোধন
- লাইফসাইকেল
2.8.5থেকে: অবফাসকেশন অনুমোদনের জন্যandroidx.lifecycle.ReportFragmentProGuard নিয়মগুলো আপডেট করুন। ( ff898e1 )
বাহ্যিক অবদান
-
androidx.compose.ui.platform.LocalLifecycleOwnerকে কমন সোর্স সেট (KMP)-এ স্থানান্তর করা হয়েছে। অবদানের জন্য JetBrains-এর ইভান ম্যাটকভকে ধন্যবাদ। ( 8cd5d03 ) - লাইফসাইকেল
2.8.5থেকে: `SavedStateHandle.saveable` এক্সটেনশন ডেলিগেট এখন নাল (null) ভ্যালু সমর্থন করে। এই অবদানের জন্য রোমান কালুকিউইচকে ধন্যবাদ। ( 0d78ea6 )
সংস্করণ ২.৯.০-আলফা০১
৭ আগস্ট, ২০২৪
androidx.lifecycle:lifecycle-*:2.9.0-alpha01 প্রকাশিত হয়েছে। সংস্করণ 2.9.0-alpha01-এ এই কমিটগুলো রয়েছে।
কোটলিন মাল্টিপ্ল্যাটফর্ম
-
lifecycle-testingএখন KMP সামঞ্জস্যপূর্ণ। ( Iea41e ) -
linuxArm64কোটলিন মাল্টিপ্ল্যাটফর্ম টার্গেটের জন্য সমর্থন যোগ করা হয়েছে ( I139d3 , b/338268719 )
নতুন বৈশিষ্ট্য
- একটি নতুন
androidx.lifecycle:lifecycle-viewmodel-testingKMP আর্টিফ্যাক্ট উপলব্ধ হয়েছে, যা ViewModel-গুলিকে বিচ্ছিন্নভাবে পরীক্ষা করার জন্য একটিViewModelScenarioক্লাস প্রদান করে এবং এতেonCleared(সকল প্ল্যাটফর্মের জন্য) ওSavedStateHandle(শুধুমাত্র অ্যান্ড্রয়েডের জন্য) সাপোর্ট রয়েছে। ( 337f68d , c9b3409 , 9799a95c , b/264602919 ) -
ViewModelProviderব্যবহার করেViewModelতৈরি করা এখন থ্রেড সেফ;@MainThreadঅ্যানোটেশনগুলো সরিয়ে ফেলা হয়েছে। ( Ifd978 , b/237006831 )
এপিআই পরিবর্তন
- বেনামী
CreationExtras.Keyঅবজেক্ট তৈরি সহজ করার জন্যCreationExtras.Key()ফ্যাক্টরি ফাংশনটি যোগ করুন। ( I970ee ) -
CreationExtrasএখন ম্যাপের মতো অপারেটর ওভারলোড অন্তর্ভুক্ত করা হয়েছে, যা কোটলিনে কন্টেন্টের প্রচলিত রীতি অনুযায়ী পরিবর্তন করতে সক্ষম করে। এটিCreationExtrasসাথেin,+=, এবং+ব্যবহারের সুযোগ দেয়। ( Ib4353 ) -
CreationExtrasএখনequals,hashCode, এবংtoStringমেথডগুলো ইমপ্লিমেন্ট করে। ( Ib4353 ) -
NewInstanceFactoryএখন JVM ডেস্কটপ এবং অ্যান্ড্রয়েড টার্গেটে উপলব্ধ। ( d3d0892 ) - কোটলিন ভাষা সংস্করণ ২.০ ( I39df2 )-এ অন্তর্নিহিত অ্যাপ্লিকেশনকে নিরাপদে প্রকাশ করার জন্য ইনলাইন এক্সটেনশন প্রপার্টি।
বাগ সংশোধন
- নতুন প্ল্যাটফর্ম এপিআই-গুলিতে অ্যাক্সেসের ম্যানুয়াল রূপরেখা সরিয়ে দেওয়া হয়েছে, কারণ AGP 7.3 বা তার পরবর্তী সংস্করণের (যেমন R8 সংস্করণ 3.3) সাথে R8 ব্যবহার করার সময় এবং AGP 8.1 বা তার পরবর্তী সংস্করণের (যেমন D8 সংস্করণ 8.1) সাথে সমস্ত বিল্ডের জন্য এটি এপিআই মডেলিংয়ের মাধ্যমে স্বয়ংক্রিয়ভাবে ঘটে। যেসব ক্লায়েন্ট AGP ব্যবহার করছেন না, তাদের D8 সংস্করণ 8.1 বা তার পরবর্তী সংস্করণে আপডেট করার পরামর্শ দেওয়া হচ্ছে। আরও বিস্তারিত জানতে এই নিবন্ধটি দেখুন। ( If6b4c , b/345472586 )
সংস্করণ ২.৮
সংস্করণ ২.৮.৭
৩০ অক্টোবর, ২০২৪
androidx.lifecycle:lifecycle-*:2.8.7 প্রকাশিত হয়েছে। সংস্করণ 2.8.7-এ এই কমিটগুলো অন্তর্ভুক্ত রয়েছে।
এপিআই পরিবর্তন
-
androidx.compose.ui.platform.LocalLifecycleOwnerএখন কমন সোর্স সেট (KMP)-এ উপলব্ধ। ( 6a3f5b3 ) -
lifecycle-runtime-compose:desktopআর্টিফ্যাক্টগুলো সরানো হয়েছে এবং-jvmStubsও-linuxx64Stubsআর্টিফ্যাক্টগুলো যোগ করা হয়েছে। এই টার্গেটগুলোর কোনোটিই ব্যবহারের জন্য নয়, এগুলো Jetbrains Compose-এর কাজে সহায়তার জন্য প্লেসহোল্ডার হিসেবে রয়েছে। ( 6a3f5b3 )
সংস্করণ ২.৮.৬
১৮ সেপ্টেম্বর, ২০২৪
androidx.lifecycle:lifecycle-*:2.8.6 প্রকাশিত হয়েছে। সংস্করণ 2.8.6-এ এই কমিটগুলো অন্তর্ভুক্ত রয়েছে।
বাগ সংশোধন
-
NullSafeMutableLiveDataLint error-টিতে স্মার্ট কাস্টের জন্য উন্নত সাপোর্ট দেওয়া হয়েছে, যা ফলস পজিটিভ এড়ায়। ( 85fed6 , b/181042665 )
নির্ভরতা আপডেট
- লাইফসাইকেল রানটাইম কম্পোজ এখন কম্পোজ রানটাইম
1.7.1এর উপর নির্ভরশীল।
সংস্করণ ২.৮.৫
৪ সেপ্টেম্বর, ২০২৪
androidx.lifecycle:lifecycle-*:2.8.5 প্রকাশিত হয়েছে। সংস্করণ 2.8.5-এ এই কমিটগুলো অন্তর্ভুক্ত রয়েছে।
বাগ সংশোধন
- অবফাসকেশন অনুমোদনের জন্য
androidx.lifecycle.ReportFragmentProGuard নিয়মগুলো আপডেট করুন। ( ff898e1 )
বাহ্যিক অবদান
-
SavedStateHandle.saveableএক্সটেনশন ডেলিগেট এখন নাল (null) ভ্যালু সমর্থন করে। এই অবদানের জন্য রোমান কালুকিউইচকে ধন্যবাদ। ( 0d78ea6 )
সংস্করণ ২.৮.৪
২৪ জুলাই, ২০২৪
androidx.lifecycle:lifecycle-*:2.8.4 প্রকাশিত হয়েছে। সংস্করণ 2.8.4-এ এই কমিটগুলো অন্তর্ভুক্ত রয়েছে।
বাগ সংশোধন
-
LiveData.asFlow()এখন সেইসব পরিস্থিতি সঠিকভাবে সামাল দেয় যেখানেLiveDataতে আগে থেকেই সেট করা কোনো মান পাওয়ার পর রিটার্ন করা Flow-টি সাথে সাথেই সম্পন্ন হয়ে যায় (উদাহরণস্বরূপ,take(1)ব্যবহার করার সময়)। ( I9c566 ) -
Lifecycle*Effectকমপ্লিশন এখন আইডম্পোটেন্ট (অর্থাৎ, যদি লাইফসাইকেল বন্ধ হওয়ার কারণেonStopOrDisposeকল করা হয়ে থাকে, তবে ডিসপোজালের সময় এটি দ্বিতীয়বার কল করা হবে না, যদি না লাইফসাইকেলটি আবারSTARTEDঅবস্থায় ফিরে যায়)। ( I5f607 , b/352364595 )
সংস্করণ ২.৮.৩
১ জুলাই, ২০২৪
androidx.lifecycle:lifecycle-*:2.8.3 প্রকাশিত হয়েছে। সংস্করণ 2.8.3-এ এই কমিটগুলো অন্তর্ভুক্ত রয়েছে।
বাগ সংশোধন
- কোড শ্রিংকিং ব্যবহার করার সময় Compose 1.6.0 এবং তার নিম্নতর সংস্করণগুলোর সাথে Lifecycle 2.8-এর ব্যাকওয়ার্ড কম্প্যাটিবিলিটির একটি সমস্যা সমাধান করা হয়েছে। ( aosp/3133056 , b/346808608 )
সংস্করণ ২.৮.২
১২ জুন, ২০২৪
androidx.lifecycle:lifecycle-*:2.8.2 প্রকাশিত হয়েছে। সংস্করণ 2.8.2-এ এই কমিটগুলো অন্তর্ভুক্ত রয়েছে।
বাগ সংশোধন
- Compose 1.6.X বা তার আগের সংস্করণের সাথে Lifecycle 2.8.X ব্যবহার করার সময়
CompositionLocal LocalLifecycleOwner not present' ত্রুটিগুলো সমাধান করা হয়েছে - এখন আপনি কোনো বিকল্প পদ্ধতি ছাড়াই Compose-এর যেকোনো সংস্করণের সাথে Lifecycle 2.8.2 ব্যবহার করতে পারবেন। ( aosp/3105647 , b/336842920 ) - পূর্ববর্তী সংস্করণের
compileOnlyলাইফসাইকেল ডিপেন্ডেন্সিগুলোকে 2.8+ সংস্করণের সাথে মিশ্রিত করলেViewModelProviderআর ক্র্যাশ করবে না, এর ফলে LeakCanary-এর মতো লাইব্রেরিগুলোর সমস্যা সমাধান হয়েছে। ( I80383 , b/341792251 )
সংস্করণ ২.৮.১
২৯ মে, ২০২৪
androidx.lifecycle:lifecycle-*:2.8.1 প্রকাশিত হয়েছে। সংস্করণ 2.8.1-এ এই কমিটগুলো অন্তর্ভুক্ত রয়েছে।
বাগ সংশোধন
-
lifecycle-viewmodel-composeএখন শুধুমাত্রcompose-runtimeউপর একটি সাধারণ নির্ভরতা রাখে, যার ফলেcompose-uiউপর থেকে এর সাধারণ নির্ভরতা দূর হয়েছে। সামঞ্জস্যের জন্য অ্যান্ড্রয়েড আর্টিফ্যাক্টটি তারcompose-uiধরে রেখেছে। ( aosp/3079334 , b/339562627 ) - প্রপার্টি ডেলিগেট ব্যবহার করে
ViewModelএরsaveableইন্টিগ্রেশন এখন স্বয়ংক্রিয়ভাবে তৈরি হওয়া কী-এর অংশ হিসেবে ক্লাসের নাম ব্যবহার করে, ফলে একাধিক ক্লাস একইSavedStateHandleব্যবহার করলে দ্বন্দ্ব এড়ানো যায়। ( aosp/3063463 )
সংস্করণ ২.৮.০
১৪ মে, ২০২৪
androidx.lifecycle:lifecycle-*:2.8.0 প্রকাশিত হয়েছে। সংস্করণ 2.8.0-এ এই কমিটগুলো অন্তর্ভুক্ত রয়েছে।
২.৭.০ সংস্করণ থেকে গুরুত্বপূর্ণ পরিবর্তনসমূহ
-
LocalLifecycleOwnerCompose UI থেকেlifecycle-runtime-composeএ স্থানান্তর করা হয়েছে, যাতে এর Compose-ভিত্তিক হেল্পার API-গুলো Compose UI-এর বাইরেও ব্যবহার করা যায়। -
lifecycle-runtime-composeআর্টিফ্যাক্টটিতে এখনdropUnlessResumedএবংdropUnlessStartedAPI রয়েছে, যা আপনাকে এমন ক্লিক বা অন্যান্য ইভেন্ট বাদ দেওয়ার সুযোগ দেয় যাLifecycleOwnerপ্রদত্তLifecycle.Stateএর নিচে নেমে যাওয়ার পরেও ঘটে। উদাহরণস্বরূপ, অন্য স্ক্রিনে ট্রানজিশন শুরু হয়ে যাওয়ার পরে ক্লিক ইভেন্ট হ্যান্ডেল করা এড়াতে এটি Navigation Compose-এর সাথে ব্যবহার করা যেতে পারে:onClick: () -> Unit = dropUnlessResumed { navController.navigate(NEW_SCREEN) } ViewModel.viewModelScopeএখন একটি ওভাররাইডযোগ্য কনস্ট্রাক্টর প্যারামিটার, যা আপনাকে আপনার নিজস্ব ডিসপ্যাচার এবংSupervisorJob()ইনজেক্ট করার অথবাrunTestমধ্যে উপলব্ধbackgroundScopeব্যবহার করে ডিফল্টটিকে ওভাররাইড করার সুযোগ দেয়। ( I2817c , b/264598574 )class MyViewModel( // Make Dispatchers.Main the default, rather than Dispatchers.Main.immediate viewModelScope: CoroutineScope = Dispatchers.Main + SupervisorJob() ) : ViewModel(viewModelScope) { // Use viewModelScope as before, without any code changes } // Allows overriding the viewModelScope in a test fun Test() = runTest { val viewModel = MyViewModel(backgroundScope) }ViewModelকোটলিনে নতুন করে লেখা হয়েছে এবং এখন এটিCloseableএর পরিবর্তেAutoClosableব্যবহার করে। এটি এখন এমন একটিkey) সহAutoCloseableঅবজেক্ট যোগ করা সমর্থন করে, যার মাধ্যমেgetCloseable()ব্যবহার করে সেগুলোকে পুনরুদ্ধার করা যায়।এই API-গুলো যে
DisposableEffectAPI-কে অনুকরণ করে, তার প্রচলিত নিয়ম অনুসরণ করে এখন কোনো কী (key) ছাড়াLifecycleStartEffectএবংLifecycleResumeEffectকল করলে ত্রুটি দেখা দেয়।LiveDataReactiveStreams.toPublisher(lifecycleOwner, liveData)এর পরিবর্তেLiveData.toPublisher(lifecycleOwner)ব্যবহার করা হচ্ছে।lifecycle-livedata-core-ktxকোটলিন এক্সটেনশনগুলো এখনlifecycle-livedata-coreমডিউলে স্থানান্তরিত করা হয়েছে।অনেক ভুল শনাক্তকরণ এড়ানোর জন্য
NullSafeMutableLiveDataকে রিফ্যাক্টর করা হয়েছে।
লাইফসাইকেল কোটলিন মাল্টিপ্ল্যাটফর্ম সামঞ্জস্যতা
Lifecycle , LifecycleOwner , LifecycleObserver , Lifecycle.State , Lifecycle.Event এবং LifecycleRegistry এর মতো মূল লাইফসাইকেল এপিআইগুলো এখন কোটলিন মাল্টিপ্ল্যাটফর্মের সাথে সামঞ্জস্যপূর্ণ আর্টিফ্যাক্ট হিসেবে অন্তর্ভুক্ত করা হয়েছে।
প্রভাবিত প্রত্নবস্তুসমূহ:
-
lifecycle-commonবেশিরভাগ API-কেcommonএ স্থানান্তরিত করে এবং Android-এর পাশাপাশি jvm ও iOS-কে সমর্থন করে। -
lifecycle-runtimeবেশিরভাগ এপিআই-কেcommon-এ স্থানান্তরিত করে এবং অ্যান্ড্রয়েডের পাশাপাশি জেভিএম ও আইওএস সমর্থন করে। -
lifecycle-runtime-ktxএখন খালি, কারণ এর সমস্ত API-কেlifecycle-runtimeএ স্থানান্তর করা হয়েছে। -
lifecycle-runtime-composeসমস্ত API-কেcommonএর অন্তর্ভুক্ত করে এবং একটি Android আর্টিফ্যাক্ট প্রদান করে, যাandroidx.composeএর মাল্টিপ্ল্যাটফর্ম সমর্থনের সাথে সামঞ্জস্যপূর্ণ।
ভিউমডেল কোটলিন মাল্টিপ্ল্যাটফর্ম সামঞ্জস্যতা
lifecycle-viewmodel আর্টিফ্যাক্ট এবং ViewModel , ViewModelStore , ViewModelStoreOwner , ও ViewModelProvider এর মতো এপিআইগুলো এখন কোটলিন মাল্টিপ্ল্যাটফর্মের সাথে সামঞ্জস্যপূর্ণ আর্টিফ্যাক্ট হিসেবে অন্তর্ভুক্ত করা হয়েছে।
এই পরিবর্তনটি সমন্বয় করার জন্য, ViewModelProvider এর মতো যেসব মেথড java.lang.Class<T> গ্রহণ করত, সেগুলোর এখন একটি সমতুল্য মেথড রয়েছে যা kotlin.reflect.KClass<T> গ্রহণ করে।
অ্যান্ড্রয়েডে বাইনারি সামঞ্জস্যতা বজায় রাখা হয়েছে, কিন্তু অ্যান্ড্রয়েড এপিআই সারফেসের সাথে সাধারণ এপিআই সারফেসের তুলনা করলে কয়েকটি উল্লেখযোগ্য পরিবর্তন দেখা যায়:
- এখন সরাসরি কনস্ট্রাক্টরকে কল করার পরিবর্তে
ViewModelProvider.create()মেথডের মাধ্যমে একটিViewModelProviderইনস্ট্যান্স তৈরি করা হয়। -
ViewModelProvider.NewInstanceFactoryএবংViewModelProvider.AndroidViewModelFactoryশুধুমাত্র অ্যান্ড্রয়েডে উপলব্ধ।- কাস্টম ফ্যাক্টরিগুলোর জন্য
ViewModelProvider.Factoryথেকে এক্সটেন্ড করা এবংCreationExtrasগ্রহণকারীcreateমেথড অথবাviewModelFactoryKotlin DSL ব্যবহার করার পরামর্শ দেওয়া হয়।
- কাস্টম ফ্যাক্টরিগুলোর জন্য
- নন-জেভিএম প্ল্যাটফর্মে কাস্টম ফ্যাক্টরি ছাড়া
ViewModelProviderব্যবহার করলে একটিUnsupportedOperationExceptionদেখা দেবে। জেভিএম প্ল্যাটফর্মে, কাস্টম ফ্যাক্টরি প্রদান করা না হলে নো-আর্গস ViewModel কনস্ট্রাক্টর ব্যবহার করে সামঞ্জস্যতা বজায় রাখা হয়। - যেসব প্ল্যাটফর্মে
Dispatchers.Mainউপলব্ধ নয় (যেমন, লিনাক্স), সেখানেviewModelScopeএকটিEmptyCoroutineContextএ ফিরে যাবে।
প্রভাবিত প্রত্নবস্তুসমূহ:
-
lifecycle-viewmodelবেশিরভাগ এপিআই-কেcommonএ নিয়ে আসে এবং অ্যান্ড্রয়েডের পাশাপাশি জেভিএম ও আইওএস সমর্থন করে। -
lifecycle-viewmodel-ktxএখন খালি, কারণ এর সমস্ত API-কেlifecycle-viewmodelএ স্থানান্তর করা হয়েছে। -
lifecycle-viewmodel-composeসমস্ত API-কেcommonএ স্থানান্তরিত করে এবং একটি Android আর্টিফ্যাক্ট সরবরাহ করে, যাandroidx.composeএর মাল্টিপ্ল্যাটফর্ম সমর্থনের সাথে সামঞ্জস্যপূর্ণ।
আচরণগত পরিবর্তন
-
InitializerViewModelFactory(viewModelFactoryবিল্ডার ফাংশন সহ) এখন একটিIllegalArgumentExceptionথ্রো করবে যদি একইclazz: KClass<VM : ViewModel>সহ একটিinitializerআগে থেকেই যোগ করা হয়ে থাকে। ( Ic3a36 )
পরিচিত সমস্যা
-
lifecycle-*:2.8.0জন্য Compose এর ন্যূনতম সংস্করণ 1.7.0-alpha05 ( b/336842920 ) প্রয়োজন।
সংস্করণ 2.8.0-rc01
১ মে, ২০২৪
androidx.lifecycle:lifecycle-*:2.8.0-rc01 প্রকাশিত হয়েছে। সংস্করণ 2.8.0-rc01-এ এই কমিটগুলো রয়েছে।
বাগ সংশোধন
-
lifecycle-commonক্লাসগুলির বেসলাইন প্রোফাইল সঠিকভাবে প্যাকেজ না হওয়ার সমস্যাটি সমাধান করা হয়েছে। এগুলি এখনlifecycle-runtimeAAR-এ প্যাকেজ করা হয়েছে। ( aosp/3038274 , b/322382422 ) - একটি ViewModel-এর সাথে সংযুক্ত
AutoCloseableইনস্ট্যান্সগুলি যেভাবে ক্লিয়ার করা হতো, সেই পদ্ধতিতে একটি অনিচ্ছাকৃত পরিবর্তন সংশোধন করা হয়েছে - পূর্ববর্তী ক্রম অর্থাৎ প্রথমেaddCloseable(String, AutoCloseable), তারপরaddClosable(AutoCloseable), এবং সবশেষেonCleared()পুনরুদ্ধার করা হয়েছে। ( aosp/3041632 ) - নেটিভ এবং জেভিএম ডেস্কটপ এনভায়রনমেন্টের জন্য
viewModelScopeএর ডিফল্ট তৈরির আচরণ উন্নত করুন। ( aosp/3039221 )
বাহ্যিক অবদান
- JVM ডেস্কটপে প্রধান থ্রেডের চেকিং উন্নত করার জন্য ভিক্টর ক্রপকে ধন্যবাদ। ( aosp/3037116 )
সংস্করণ 2.8.0-beta01
১৭ এপ্রিল, ২০২৪
androidx.lifecycle:lifecycle-*:2.8.0-beta01 প্রকাশিত হয়েছে। সংস্করণ 2.8.0-beta01-এ এই কমিটগুলো রয়েছে।
নতুন বৈশিষ্ট্য
-
lifecycle-runtime-composeআর্টিফ্যাক্টটি এখন Kotlin Multiplatform-এর সাথে সামঞ্জস্যপূর্ণ। এর কোডcommonএ স্থানান্তরিত করা হয়েছে এবং এটিandroidx.composeএর মাল্টিপ্ল্যাটফর্ম সমর্থনের সাথে মিল রেখে একটি Android আর্টিফ্যাক্টও সরবরাহ করে। ( If7a71 , I4f4a0 , b/331769623 )
সংস্করণ 2.8.0-alpha04
৩ এপ্রিল, ২০২৪
androidx.lifecycle:lifecycle-*:2.8.0-alpha04 প্রকাশিত হয়েছে। সংস্করণ 2.8.0-alpha04-এ এই কমিটগুলো রয়েছে।
নতুন বৈশিষ্ট্য
- `
lifecycle-viewmodel-composeআর্টিফ্যাক্টটি এখন কোটলিন মাল্টিপ্ল্যাটফর্মের সাথে সামঞ্জস্যপূর্ণ। এর কোড `commonএ স্থানান্তরিত করা হয়েছে এবং এটি একটি অ্যান্ড্রয়েড আর্টিফ্যাক্ট সরবরাহ করে, যাandroidx.composeএর মাল্টিপ্ল্যাটফর্ম সমর্থনের সাথে মেলে। এই পরিবর্তনটি সমন্বয় করার জন্য, `ComposableviewModelমেথডটি এখন `java.lang.Classএর পাশাপাশি একটিKClassও গ্রহণ করে। ( b/330323282 )
বাগ সংশোধন
- অনেক ভুল শনাক্তকরণ এড়ানোর জন্য
NullSafeMutableLiveDataকে রিফ্যাক্টর করা হয়েছে। ( I2d8c1 , Iafb18 , I03463 , I7ecef )
নির্ভরতা আপডেট
-
lifecycle-viewmodel-composeআর্টিফ্যাক্টটি এখন Compose 1.6.0-এর উপর নির্ভরশীল। - লাইফসাইকেল এখন প্রোফাইল ইনস্টলার ১.৩.১ এর উপর নির্ভরশীল।
সংস্করণ ২.৮.০-আলফা০৩
২০ মার্চ, ২০২৪
androidx.lifecycle:lifecycle-*:2.8.0-alpha03 is released. Version 2.8.0-alpha03 contains these commits .
নতুন বৈশিষ্ট্য
ViewModel.viewModelScopeis now an overridable constructor parameter, allowing you to inject your own dispatcher andSupervisorJob()or to override the default by using thebackgroundScopeavailable withinrunTest. ( I2817c , b/264598574 )class MyViewModel( // Make Dispatchers.Main the default, rather than Dispatchers.Main.immediate viewModelScope: CoroutineScope = Dispatchers.Main + SupervisorJob() ) : ViewModel(viewModelScope) { // Use viewModelScope as before, without any code changes } // Allows overriding the viewModelScope in a test fun Test() = runTest { val viewModel = MyViewModel(backgroundScope) }
Kotlin Multiplatform Compatibility
The lifecycle-viewmodel artifact and APIs like ViewModel , ViewModelStore , ViewModelStoreOwner , and ViewModelProvider are now shipped in artifacts compatible with Kotlin Multiplatform. ( b/214568825 )
To accommodate this change, methods such as those on ViewModelProvider that took a java.lang.Class<T> now have an equivalent method that takes a kotlin.reflect.KClass<T> .
Binary compatibility on Android has been maintained, but there are a few notable changes when comparing the Android API surface to the common API surface:
- Constructing a
ViewModelProviderinstance is now done through theViewModelProvider.create()methods rather than directly calling its constructor. -
ViewModelProvider.NewInstanceFactoryandViewModelProvider.AndroidViewModelFactoryare only available on Android.- Custom Factories are recommended to extend from
ViewModelProvider.Factoryand use thecreatemethod that takes aCreationExtrasor use theviewModelFactoryKotlin DSL.
- Custom Factories are recommended to extend from
- Using
ViewModelProviderwithout a custom factory on non-JVM platforms will result in anUnsupportedOperationException. On JVM platforms, compatibility is preserved by using the no-args ViewModel constructor if a custom factory is not provided. -
viewModelScopewill fallback to anEmptyCoroutineContextin platforms whereDispatchers.Mainis not available (eg, Linux).
আচরণগত পরিবর্তন
-
InitializerViewModelFactory(includingviewModelFactorybuilder function) will now throw anIllegalArgumentExceptionif ainitializerwith the sameclazz: KClass<VM : ViewModel>has already been added. ( Ic3a36 )
বাগ সংশোধন
-
ViewModel.getCloseablenow handles duplicated keys: if thekeyalready has anAutoCloseableresource associated with it, the old resource will be replaced and closed immediately. ( Ibeb67 ) - Accessing the
viewModelScopeof aViewModelis now thread safe. ( If4766 , b/322407038 )
বাহ্যিক অবদান
-
LocalLifecycleOwnermoved from Compose UI to lifecycle-runtime-compose so that its Compose-based helper APIs can be used outside of Compose UI. Thanks Jake Wharton for the contribution. ( I6c41b , b/328263448 )
Version 2.8.0-alpha02
২১শে ফেব্রুয়ারি, ২০২৪
androidx.lifecycle:lifecycle-*:2.8.0-alpha02 is released. Version 2.8.0-alpha02 contains these commits.
নতুন বৈশিষ্ট্য
- The
dropUnlessResumedanddropUnlessStartedAPIs have been added which allow you to drop click or other events that occur even after theLifecycleOwnerhas dropped below the givenLifecycle.State. For example, this can be used with Navigation Compose to avoid handling click events after a transition to another screen has already begun:onClick: () -> Unit = dropUnlessResumed { navController.navigate(NEW_SCREEN) }( Icba83 , b/317230685 )
Kotlin Conversions
-
ViewModelis now written in Kotlin ( I16f26 , b/214568825 ) - The
lifecycle-viewmodel-ktxkotlin extensions have now been moved to the base lifecycle module. ( Id787b , b/274800183 ) - The
lifecycle-runtime-ktxkotlin extensions have now been moved to the base lifecycle module. ( Ic3686 , b/274800183 ) - The
lifecycle-livedata-core-ktxkotlin extensions have now been moved to the base lifecycle module. ( I54a3d , b/274800183 )
Kotlin Multiplatform Compatibility
- The core Lifecycle APIs in
Lifecycle,LifecycleOwner,LifecycleObserver,Lifecycle.State,Lifecycle.Event, andLifecycleRegistryare now shipped in artifacts compatible with Kotlin Multiplatform. ( b/317249252 )
এপিআই পরিবর্তন
- Calling
LifecycleStartEffectandLifecycleResumeEffectwithout a key is now an error, following the same convention as theDisposableEffectAPI that these APIs mirror. ( Ib0e0c , b/323518079 ) -
ViewModelnow usesAutoCloseableinstead ofCloseable. That is a backward compatible change. ( I27f8e , b/214568825 ) - Deprecated
LiveDataReactiveStreams.toPublisher(lifecycleOwner, liveData)in favor ofLiveData.toPublisher(lifecycleOwner). ( Iabe29 , b/262623005 )
বাহ্যিক অবদান
- Thanks Ivan Matkov from Jetbrains for helping move Lifecycle to Kotlin Multiplatform. ( aosp/2926690 , I0c5ac , If445d )
Version 2.8.0-alpha01
২৪ জানুয়ারী, ২০২৪
androidx.lifecycle:lifecycle-*:2.8.0-alpha01 is released. Version 2.8.0-alpha01 contains these commits.
নতুন বৈশিষ্ট্য
-
ViewModelnow supports addingCloseableobjects with akeythat allows retrieving them viagetCloseable(). ( I3cf63 )
সংস্করণ ২.৭
সংস্করণ ২.৭.০
১০ জানুয়ারী, ২০২৪
androidx.lifecycle:lifecycle-*:2.7.0 is released. Version 2.7.0 contains these commits.
Important changes since 2.6.0
-
TestLifecycleOwnernow includes a suspending functionsetCurrentState()which ensures that the state change and allLifecycleObservercallbacks are completed before returning. Notably, unlike setting thecurrentStateproperty directly, this does not userunBlocking, making it safe to use within a coroutine such as one provided byrunTest. - The
LiveDataextensions ofmapandswitchMapnow mirror the behavior ofdistinctUntilChanged- if theLiveDatahas avalueset, themap/switchMapfunction will be immediately called to populate thevalueof the returnedLiveData. This ensures that the initial value will be set as part of the first composition (when used withobserveAsState()), but does not change the observation behavior - updates values from the sourceLiveDatawill still only apply once you start observing theLiveData. - This release fixes an issue where
SavedStateHandlewould not properly restore customParcelableclasses after process death and recreation. Due to type information that is lost by the Android framework, arrays of custom Parcelables require additional work (manually creating a typed array of the right type) and the documentation onget,getLiveData, andgetStateFlownow specifically calls this limitation out. - The proguard keep rules associated with
LifecycleObserverhave been removed. This means that proguarded code that wishes to use APIs via reflection (such as using the long since deprecated@OnLifecycleEventannotation) will need to provide their own keep rules for their specific use case.
Lifecycle Event Observability
- As an alternative to using a
LifecycleEventObserver, you can now observe aFlowofLifecycle.Eventvia theLifecycle.asFlow()extension method. - Jetpack Compose users can now use
LifecycleEventEffectto run Compose side effects based onLifecycle.Event.
@Composable
fun HomeScreen(viewModel: HomeViewModel = viewModel()) {
LifecycleEventEffect(Lifecycle.Event.ON_RESUME) {
viewModel.refreshData()
}
// …
}
- Jetpack Compose users can use
LifecycleStartEffectandLifecycleResumeEffectto handle pairs of events - started to stopped and resumed to paused, respectively. This API mirrors the one found inDisposableEffectand is suitable for cases where the change being made when the state is going up needs to be reversed when going back down.
fun HomeScreen(viewModel: HomeViewModel = viewModel()) {
LifecycleStartEffect(viewModel) {
val timeTracking = viewModel.startTrackingTimeOnScreen()
onStopOrDispose {
timeTracking.stopTrackingTimeOnScreen()
}
}
// …
}
See Run code on lifecycle events for more information.
Lifecycle State Observability
- The current
Lifecycle.Statecan now be observed via theLifecycle.currentStateFlowproperty, which returns aStateFlowwhere thevalueis the currentLifecycle.State. - Jetpack Compose users can use the
Lifecycle.currentStateAsState()extension to directly exposeLifecycle.Stateas ComposeState. This is equivalent (and a shorter alternative) tolifecycle.currentStateFlow.collectAsState().
See Collect lifecycle state with flows for more information.
Version 2.7.0-rc02
১৩ ডিসেম্বর, ২০২৩
androidx.lifecycle:lifecycle-*:2.7.0-rc02 is released. Version 2.7.0-rc02 contains these commits.
বাগ সংশোধন
- Fixed an issue where
SavedStateHandlewould not properly restore customParcelableclasses after process death and recreation. Due to type information that is lost by the Android framework, arrays of custom Parcelables require additional work (manually creating a typed array of the right type) and the documentation onget,getLiveData, andgetStateFlownow specifically calls this limitation out. ( I0b55a )
Version 2.7.0-rc01
১৫ নভেম্বর, ২০২৩
androidx.lifecycle:lifecycle-*:2.7.0-rc01 is released. Version 2.7.0-rc01 contains these commits.
বাগ সংশোধন
-
LifecycleStartEffectandLifecycleResumeEffectnow correctly dispose and recreate the effect block if theLifecycleOwneris changed. ( Ia25c6 )
Version 2.7.0-beta01
১ নভেম্বর, ২০২৩
androidx.lifecycle:lifecycle-*:2.7.0-beta01 is released with no changes. Version 2.7.0-beta01 contains these commits.
- A beta version bump, no major changes to this release version.
Version 2.7.0-alpha03
১৮ অক্টোবর, ২০২৩
androidx.lifecycle:lifecycle-*:2.7.0-alpha03 is released. Version 2.7.0-alpha03 contains these commits.
নতুন বৈশিষ্ট্য
-
lifecycle-runtime-testingnow contains a new Lint check to avoid setting theLifecycle.Stateof theTestLifecycleOwnerby using thecurrentStatefield when inside of a coroutine. The Lint check now suggests the suspendingsetCurrentStatewhich allows setting theLifecycle.Statewithout blocking. ( Icf728 , b/297880630 )
বাগ সংশোধন
- Fixed an issue with
LiveData.switchMapwhere returning the sameLiveDatainstance both on the initial call and a subsequent call would prevent theLiveDatainstance from being added as a source. ( Ibedcba7 )
Version 2.7.0-alpha02
৬ সেপ্টেম্বর, ২০২৩
androidx.lifecycle:lifecycle-*:2.7.0-alpha02 is released. Version 2.7.0-alpha02 contains these commits.
নতুন বৈশিষ্ট্য
-
TestLifecycleOwnernow includes the suspending functionsetCurrentState()to give users the option of usingTestLifecycleOwnerfrom within a coroutine such as one provided byrunTest. ( I329de , b/259344129 )
এপিআই পরিবর্তন
- All files from the
lifecycle-livedata-ktxmodules have been moved into the mainlifecycle-livedatamodule. ( I10c6f , b/274800183 )
আচরণগত পরিবর্তন
- The
LiveData.map()andLiveData.switchMap()extensions now sets thevalueof the returnedLiveDataif the previousLiveDatahas had a value set on it, ensuring that using the resulting LiveData in Jetpack Compose has the right state on the initial composition. ( I91d2b , b/269479952 ) -
ViewModel'saddCloseable()now immediately closes theCloseableif theViewModelhas already received a call toonCleared(). ( I4712e , b/280294730 )
বাগ সংশোধন
- From Lifecycle
2.6.2: Fixed an issue whereSavedStateHandlewould not correctly be restored after process death if the state was restored,save()was called without actually saving the state in the parentSavedStateRegistry, and then the state was restored again. This fixes the interaction betweenrememberSaveableand Navigation Compose'sNavHost. ( aosp/2729289 )
Version 2.7.0-alpha01
২৬ জুলাই, ২০২৩
androidx.lifecycle:lifecycle-*:2.7.0-alpha01 is released. Version 2.7.0-alpha01 contains these commits.
এপিআই পরিবর্তন
-
Lifecycle.Stateis now Compose-observable viaLifecycle.currentStateFlow, which returns aStateFlowwhere thevalueis the currentLifecycle.State. ( Ib212d , b/209684871 ) -
Lifecycle.Events can now able to be observed as aFlowwithLifecycle.asFlow().( If2c0f , b/176311030 ) -
LifecycleResumeEffectAPI has been added to run ComposeSideEffects based on bothLifecycle.Event.ON_RESUMEandLifecycle.Event.ON_PAUSEevent callbacks. ( I60386 , b/235529345 ) -
LifecycleStartEffectAPI has been added to run ComposeSideEffects based onLifecycle.Event.ON_STARTandLifecycle.Event.ON_STOPevent callbacks. ( I5a8d1 , b/235529345 ) -
LifecycleEventEffectAPI has been added to run ComposeSideEffects based onLifecycle.Event. ( Ic9794 , b/235529345 ) -
Lifecycle.collectAsState()extension has been added to directly exposeLifecycle.Stateas ComposeState. This is equivalent (and a shorter alternative) tolifecycle.currentStateFlow.collectAsState(). ( I11015 , b/235529345 )
বাগ সংশোধন
- The
LiveData.distinctUntilChanged()extension now sets thevalueof the returnedLiveDataif the previousLiveDatahas had a value set on it. This does not change the observation behavior - updated values from the sourceLiveDatawill still only apply once you start observing theLiveDatareturned fromdistinctUntilChanged(). ( Ib482f ) - The proguard keep rules associated with
LifecycleObserverhave been removed. This means that proguarded code that wishes to use APIs via reflection will need to provide their own keep rules for their specific use case. ( Ia12fd )
সংস্করণ ২.৬
Version 2.6.2
৬ সেপ্টেম্বর, ২০২৩
androidx.lifecycle:lifecycle-*:2.6.2 is released. Version 2.6.2 contains these commits.
বাগ সংশোধন
- Fixed an issue where
SavedStateHandlewould not correctly be restored after process death if the state was restored,save()was called without actually saving the state in the parentSavedStateRegistry, and then the state was restored again. This fixes the interaction betweenrememberSaveableand Navigation Compose'sNavHost. ( aosp/2729289 )
সংস্করণ ২.৬.১
২২ মার্চ, ২০২৩
androidx.lifecycle:lifecycle-*:2.6.1 is released. Version 2.6.1 contains these commits.
Dependency Updates
-
lifecycle-viewmodel-savedstatenow depends on SavedState1.2.1. ( cd7251 ) - Lifecycle now depends on ProfileInstaller
1.3.0. ( f9d30b )
সংস্করণ ২.৬.০
৮ মার্চ, ২০২৩
androidx.lifecycle:lifecycle-*:2.6.0 is released. Version 2.6.0 contains these commits.
Important changes since 2.5.0
-
LiveDatanow includes a newisInitializedproperty that indicates whether an explicit value has ever been set on theLiveData, allowing you to distinguish betweenliveData.valuereturningnullbecause no value has ever been set or an explicitnullvalue. -
MediatorLiveDatanow includes a constructor to set an initial value. - Added a new extension on
StateFlowandFlowofcollectAsStateWithLifecycle()that collect from flows and represents its latest value as Compose State in a lifecycle-aware manner. -
Lifecycle.launchWhenXmethods andLifecycle.whenXmethods have been deprecated as the use of a pausing dispatcher can lead to wasted resources in some cases. It is recommended to useLifecycle.repeatOnLifecycle. For more information about one-time suspending work, please see this explanation on why this is inherently unsafe. - Kotlin Conversion - A large number of Lifecycle classes have been converted to Kotlin. All converted classes still retain their binary compatibility with previous versions. The following classes have source incompatible changes for classes written in Kotlin:
ViewTreeLifecycleOwner,LiveDataReactiveStreams,HasDefaultViewModelProviderFactory,ViewTreeViewModelStoreOwner,Transformations,ViewModelStoreOwner,LifecycleOwner
The table below provides the source conversions for the new version of lifecycle.
| Lifecycle 2.5 | Lifecycle 2.5 (KTX) | Lifecycle 2.6 |
|---|---|---|
Transformations.switchMap(liveData) {...} | liveData.switchMap {...} | liveData.switchMap {...} |
Transformations.map(liveData) {...} | liveData.map {...} | liveData.map {...} |
Transformations.distinctUntilChanged(liveData) {...} | liveData.distinctUntilChanged{...} | liveData.distinctUntilChanged{...} |
LiveDataReactiveStreams.fromPublisher(publisher) | publisher.toLiveData() | publisher.toLiveData() |
LiveDataReactiveStreams.toPublisher(lifecycleOwner, liveData) | liveData.toPublisher(lifecycleOwner) | liveData.toPublisher(lifecycleOwner) |
override fun getDefaultViewModelProviderFactory(): ViewModelProvider.Factory = factory | override fun getDefaultViewModelProviderFactory(): ViewModelProvider.Factory = factory | override val defaultViewModelProviderFactory = factory |
override fun getDefaultViewModelCreationExtras(): CreationExtras = extras | override fun getDefaultViewModelCreationExtras(): CreationExtras = extras | override val defaultViewModelProviderCreationExtras = extras |
ViewTreeLifecycleOwner.set(view, owner) | ViewTreeLifecycleOwner.set(view, owner) | view.setViewTreeLifecycleOwner(owner) |
ViewTreeLifecycleOwner.get(view) | view.findViewTreeLifecycleOwner() | view.findViewTreeLifecycleOwner() |
override fun getViewModelStore(): ViewModelStore = store | override fun getViewModelStore(): ViewModelStore = store | override val viewModelStore: ViewModelStore = store |
override fun getLifecycle(): Lifecycle = registry | override fun getLifecycle(): Lifecycle = registry | override val lifecycle: Lifecycle get() = registry |
- The nullability of the
onChangedmethod of aObservercreated in Kotlin now matches the nullability of the generic type. If you wantObserver.onChanged()to accept a nullable type, you must instantiate theObserverwith a nullable type. - These classes were also converted to Kotlin, but remain source compatible:
DefaultLifecycleObserver,LifecycleEventObserver,Lifecycle,LifecycleRegistry,LifecycleObserver,ViewModelStore,AndroidViewModel,AbstractSavedStateViewModelFactory,LifecycleService,ServiceLifecycleDispatcher, andProcessLifecycleOwner
Version 2.6.0-rc01
২২ ফেব্রুয়ারী, ২০২৩
androidx.lifecycle:lifecycle-*:2.6.0-rc01 is released. Version 2.6.0-rc01 contains these commits.
বাগ সংশোধন
- The
LiveData.distinctUntilChanged()extension now sets thevalueof the returnedLiveDataif the previousLiveDatahas had a value set on it. This does not change the observation behavior - updated values from the sourceLiveDatawill still only apply once you start observing theLiveDatareturned fromdistinctUntilChanged(). ( Ib482f )
Version 2.6.0-beta01
৮ ফেব্রুয়ারী, ২০২৩
androidx.lifecycle:lifecycle-*:2.6.0-beta01 is released. Version 2.6.0-beta01 contains these commits.
Kotlin Conversions
-
LifecycleOwneris now written in Kotlin. This is a source incompatible change for classes written in Kotlin - they must now override thelifecycleproperty rather than implementing the previousgetLifecycle()function. ( I75b4b , b/240298691 ) -
ViewModelStoreOwneris now in Kotlin. This is a source incompatible change for classes written in Kotlin - they must now override theviewModelStoreproperty rather than implementing the previousgetViewModelStore()function. ( I86409 , b/240298691 ) - The Kotlin extension on
LifecycleOwnerthat provides thelifecycleScopefield has been moved to thelifecycle-commonartifact fromlifecycle-runtime-ktx. ( I41d78 , b/240298691 ) - The Kotlin extension on
Lifecyclethat provides thecoroutineScopefield has been moved to thelifecycle-commonartifact fromlifecycle-runtime-ktx. ( Iabb91 , b/240298691 )
Version 2.6.0-alpha05
২৫শে জানুয়ারী, ২০২৩
androidx.lifecycle:lifecycle-*:2.6.0-alpha05 is released. Version 2.6.0-alpha05 contains these commits.
Kotlin Conversions
-
Transformationsis now written in Kotlin. This is a source incompatible change for those classes written in Kotlin that were directly using syntax such asTransformations.map- Kotlin code must now use the Kotlin extension method syntax that was previously only available when usinglifecycle-livedata-ktx. When using the Java programming language, the versions of these methods that take anandroidx.arch.core.util.Functionmethod are deprecated and replaced with the versions that take a KotlinFunction1. This change maintains binary compatibility. ( I8e14f ) -
ViewTreeViewModelStoreOwneris now written in Kotlin. This is a source incompatible change for those classes written in Kotlin - you must now directly import and use the Kotlin extension methods onViewofandroidx.lifecycle.setViewTreeViewModelStoreOwnerandandroidx.lifecycle.findViewTreeViewModelStoreOwnerto set and find a previously set owner. This is binary compatible and remains source compatible for implementations written in the Java programming language. ( Ia06d8 , Ib22d8 , b/240298691 ) - The
HasDefaultViewModelProviderFactoryinterface is now written in Kotlin. This is a source incompatible change for classes written in Kotlin - they must now override thedefaultViewModelProviderFactoryanddefaultViewModelCreationExtrasproperties rather than implementing the previous corresponding functions. ( Iaed9c , b/240298691 ) -
Observeris now written in Kotlin. ItsonChanged()method now uses the namevaluefor its parameter. ( Iffef2 , I4995e , b/240298691 ) -
AndroidViewModel,AbstractSavedStateViewModelFactory,LifecycleService,ServiceLifecycleDispatcher, andProcessLifecycleOwnerare now written in Kotlin ( I2e771 , Ibae40 , I160d7 , I08884 , I1cda7 , b/240298691 )
Version 2.6.0-alpha04
১১ জানুয়ারী, ২০২৩
androidx.lifecycle:lifecycle-*:2.6.0-alpha04 is released. Version 2.6.0-alpha04 contains these commits.
নতুন বৈশিষ্ট্য
-
LiveDatanow includes a newisInitializedproperty that indicates whether an explicit value has ever been set on theLiveData, allowing you to distinguish betweenliveData.valuereturningnullbecause no value has ever been set or an explicitnullvalue. ( Ibd018 )
এপিআই পরিবর্তন
- The
collectAsStateWithLifecycle()APIs oflifecycle-runtime-composeare no longer in experimental status. ( I09d42 , b/258835424 ) -
Lifecycle.launchWhenXmethods andLifecycle.whenXmethods have been deprecated as the use of a pausing dispatcher can lead to wasted resources in some cases. It is recommended to useLifecycle.repeatOnLifecycle. ( Iafc54 , b/248302832 )
Kotlin Conversions
-
ViewTreeLifecycleOwneris now written in Kotlin. This is a source incompatible change for those classes written in Kotlin - you must now directly import and use the Kotlin extension methods onViewofandroidx.lifecycle.setViewTreeLifecycleOwnerandandroidx.lifecycle.findViewTreeLifecycleOwnerto set and find a previously set owner. This replaces the previous Kotlin extension inlifecycle-runtime-ktx. This is binary compatible and remains source compatible for implementations written in the Java programming language. ( I8a77a , I5234e , b/240298691 ) -
LiveDataReactiveStreamsis now written in Kotlin. The Kotlin extensions previously inlifecycle-reactivestreams-ktxhave been moved into thelifecycle-reactivestreamsmodule and have become the primary surface for code written in Kotlin. This is a source incompatible change for code written in Kotlin if you were not already using the Kotlin extension method APIs. ( I2b1b9 , I95d22 , b/240298691 ) -
DefaultLifecycleObserver,LifecycleEventObserver,Lifecycle,LifecycleRegistry,LifecycleObserver, andViewModelStoreare now written in Kotlin ( Iadffd , ( I60034 , I8c52c , I9593d , I01fe1 , I59a23 , b/240298691 )
বাগ সংশোধন
-
SavedStateHandleno longer crashes with aClassCastExceptionwhen callingget()with the incorrect class type. ( I6ae7c )
Version 2.6.0-alpha03
২৪ অক্টোবর, ২০২২
androidx.lifecycle:lifecycle-*:2.6.0-alpha03 is released. Version 2.6.0-alpha03 contains these commits.
বাগ সংশোধন
- Fixed an issue with constraints between different Lifecycle modules not working as intended. ( I18d0d , b/249686765 )
- Errors thrown by
LifecycleRegistry.moveToState()now include a more helpful error messaging that informs developers of the component causing the error. ( Idf4b2 , b/244910446 )
Version 2.6.0-alpha02
৭ সেপ্টেম্বর, ২০২২
androidx.lifecycle:lifecycle-*:2.6.0-alpha02 is released. Version 2.6.0-alpha02 contains these commits.
এপিআই পরিবর্তন
-
MediatorLiveDatanow includes a constructor to set an initial value. ( Ib6cc5 , b/151244085 )
বাগ সংশোধন
-
Lifecycleartifacts now include constraints that ensure that all inter-dependent Lifecycle artifacts use the same version, automatically upgrading other dependencies when one is upgraded. b/242871265 -
FlowLiveData.asFlow()now creates acallbackFlowrather than using its ownChannelimplementation to ensure thread-safety and context preservation. ( I4a8b2 , b/200596935 ) -
FlowLiveData'sasLiveDatafunction will now preserve the initial value of aStateFlowwhen creating the newLiveDataobject. ( I3f530 , b/157380488 ) - From Lifecycle
2.5.1: Custom implementations ofAndroidViewModelFactorynow correctly calls thecreate(modelClass)function when using the stateful constructor withLifecycle2.4+ ( I5b315 , b/238011621 )
Version 2.6.0-alpha01
২৯ জুন, ২০২২
androidx.lifecycle:lifecycle-*:2.6.0-alpha01 is released. Version 2.6.0-alpha01 contains these commits.
নতুন বৈশিষ্ট্য
- Added a new extension on
StateFlowandFlowofcollectAsStateWithLifecyclethat collect from flows and represents its latest value as Compose State in a lifecycle-aware manner. The flow is collected and the new emission is set to the State's value when the lifecycle is at least in a certainLifecycle.State. When the lifecycle falls below thatLifecycle.State, the flow collection stops and the State's value is not updated. ( I1856e , b/230557927 )
সংস্করণ ২.৫
সংস্করণ ২.৫.১
২৭ জুলাই, ২০২২
androidx.lifecycle:lifecycle-*:2.5.1 is released. Version 2.5.1 contains these commits.
বাগ সংশোধন
- Custom implementations of
AndroidViewModelFactorynow correctly call thecreate(modelClass)function when using the statefulAndroidViewModelFactoryconstructor withLifecycle2.4+. ( I5b315 , b/238011621 )
Version 2.5.0
২৯ জুন, ২০২২
androidx.lifecycle:lifecycle-*:2.5.0 is released. Version 2.5.0 contains these commits.
Important changes since 2.4.0
SavedStateHandlenow offers agetStateFlow()API that returns a KotlinStateFlowfor monitoring value changes as an alternative to usingLiveData.ViewModel CreationExtras - when writing a custom
ViewModelProvider.Factory, it is no longer required to extendAndroidViewModelFactoryorAbstractSavedStateViewModelFactoryto gain access to anApplicationorSavedStateHandle, respectively. Instead, these fields are provided to everyViewModelProvider.Factorysubclass asCreationExtrasvia the new overload ofcreate:create(Class<T>, CreationExtras). These extras are provided automatically by your Activity or Fragment when using Activity1.5.0and Fragment1.5.0, respectively.class CustomFactory : ViewModelProvider.Factory { override fun <T : ViewModel> create(modelClass: Class<T>, extras: CreationExtras): T { return when (modelClass) { HomeViewModel::class -> { // Get the Application object from extras val application = checkNotNull(extras[ViewModelProvider.AndroidViewModelFactory.APPLICATION_KEY]) // Pass it directly to HomeViewModel HomeViewModel(application) } DetailViewModel::class -> { // Create a SavedStateHandle for this ViewModel from extras val savedStateHandle = extras.createSavedStateHandle() DetailViewModel(savedStateHandle) } else -> throw IllegalArgumentException("Unknown class $modelClass") } as T } }lifecycle-viewmodelnow provides aviewModelFactoryKotlin DSL that allows you define yourViewModelProvider.Factoryin terms of one or more lambda initializers, one for each particularViewModelclass your custom factory supports, usingCreationExtrasas the primary data source.val customFactory = viewModelFactory { // The return type of the lambda automatically sets what class this lambda handles initializer { // Get the Application object from extras provided to the lambda val application = checkNotNull(get(ViewModelProvider.AndroidViewModelFactory.APPLICATION_KEY)) HomeViewModel(application) } initializer { val savedStateHandle = createSavedStateHandle() DetailViewModel(savedStateHandle) } }lifecycle-viewmodel-composenow offers aviewModel()API that takes a lambda factory for creating aViewModelinstance without requiring the creation of a customViewModelProvider.Factory.// Within a @Composable, you can now skip writing a custom Factory // and instead write a lambda to do the initialization of your ViewModel val detailViewModel = viewModel { // This lambda is only called the first time the ViewModel is created // and all CreationExtras are available inside the lambda val savedStateHandle = createSavedStateHandle() DetailViewModel(savedStateHandle) }SavedStateHandle Compose Saver Integration - the
lifecycle-viewmodel-composeartifact now contains new experimental APIs inSavedStateHandle.saveablethat allowrememberSaveablelike behavior backed by theSavedStateHandleof a `ViewModel.class ListScreenViewModel(handle: SavedStateHandle): ViewModel() { // This value survives both configuration changes and process death and recreation val editMode by handle.saveable { mutableStateOf(false) } }Added an
addCloseable()API and a new constructor overload that allow you to add one or moreCloseableobjects to theViewModelthat will be closed when theViewModelis cleared without requiring any manual work inonCleared().For instance, to create a coroutine scope that you can inject into a ViewModel, but control via testing, you can create a
CoroutineScopethat implementsCloseable:class CloseableCoroutineScope( context: CoroutineContext = SupervisorJob() + Dispatchers.Main.immediate ) : Closeable, CoroutineScope { override val coroutineContext: CoroutineContext = context override fun close() { coroutineContext.cancel() } }Which can then be used in your
ViewModelconstructor while maintaining the same lifetime asviewModelScope:class TestScopeViewModel( val customScope: CloseableCoroutineScope = CloseableCoroutineScope() ) : ViewModel(customScope) { // You can now use customScope in the same way as viewModelScope }
আচরণের পরিবর্তন
- Attempting to move the
Lifecycle.StatefromINITIALIZEDtoDESTROYEDwill now always throw anIllegalStateExceptionregardless of whether theLifecyclehas an attached observer. -
LifecycleRegistrywill now clear their observers when they reach theDESTROYEDstate.
Version 2.5.0-rc02
১৫ জুন, ২০২২
androidx.lifecycle:lifecycle-*:2.5.0-rc02 is released. Version 2.5.0-rc02 contains these commits.
বাগ সংশোধন
-
ViewModelProviderwill no longer crash when mixing previous versions of compileOnly Lifecycle dependencies with versions 2.5+. ( I81a66 , b/230454566 )
Version 2.5.0-rc01
১১ মে, ২০২২
androidx.lifecycle:lifecycle-*:2.5.0-rc01 is released. Version 2.5.0-rc01 contains these commits.
বাগ সংশোধন
-
MediatorLiveData.addSource()now throws aNullPointerExceptionwhen passed anullsource instead of propagating thenullsource to observers.( Ibd0fb , b/123085232 )
Version 2.5.0-beta01
২০ এপ্রিল, ২০২২
androidx.lifecycle:lifecycle-*:2.5.0-beta01 is released. Version 2.5.0-beta01 contains these commits.
এপিআই পরিবর্তন
- Added
SavedStateHandle.saveableproperty delegates to use property names as keys for persisting state into theSavedStateHandle( I8bb86 , b/225014345 )
বাগ সংশোধন
- Fixed an issue where nesting one
NavHostwithin anotherNavHostin a non-primary bottom navigation tab would lead to anIllegalStateExceptionwhen using multiple back stacks. ( I11bd5 , b/228865698 )
Version 2.5.0-alpha06
৬ এপ্রিল, ২০২২
androidx.lifecycle:lifecycle-*:2.5.0-alpha06 is released. Version 2.5.0-alpha06 contains these commits.
নতুন বৈশিষ্ট্য
- Add experimental
MutableStateoverload toSavedStateHandle.saveablefor parity withrememberSaveable( I38cfe , b/224565154 )
এপিআই পরিবর্তন
-
CreationExtrasis now abstract instead of sealed. ( Ib8a7a )
বাগ সংশোধন
- Fixed an
IllegalStateException: Already attached to lifecycleOwnererror caused bySavedStateHandleController. ( I7ea47 , b/215406268 )
Version 2.5.0-alpha05
২৩ মার্চ, ২০২২
androidx.lifecycle:lifecycle-*:2.5.0-alpha05 is released. Version 2.5.0-alpha05 contains these commits.
নতুন বৈশিষ্ট্য
- The
lifecycle-viewmodel-composemodule now providesSavedStateHandleSaver, an experimental API that ensures values in aSavedStateHandleare integrated correctly with the same saved instance state thatrememberSaveableuses. ( Ia88b7 , b/195689777 )
এপিআই পরিবর্তন
- Fixed a compatibility issue with Lifecycle 2.3 and newer Lifecycle versions in Java. ( I52c8a , b/219545060 )
বাগ সংশোধন
-
SavedStateViewFactorynow supports usingCreationExtraseven when it was initialized with aSavedStateRegistryOwner. If extras are provided, the initialized arguments are ignored. ( I6c43b , b/224844583 )
Version 2.5.0-alpha04
৯ মার্চ, ২০২২
androidx.lifecycle:lifecycle-*:2.5.0-alpha04 is released. Version 2.5.0-alpha04 contains these commits.
এপিআই পরিবর্তন
-
SavedStateHandlenow offers agetStateFlow()API that returns a KotlinStateFlowfor monitoring value changes as an alternative to usingLiveData. ( Iad3ab , b/178037961 )
Version 2.5.0-alpha03
২৩শে ফেব্রুয়ারি, ২০২২
androidx.lifecycle:lifecycle-*:2.5.0-alpha03 is released. Version 2.5.0-alpha03 contains these commits.
নতুন বৈশিষ্ট্য
- Added an
addCloseable()API and a new constructor overload that allow you to add one or moreCloseableobjects to theViewModelthat will be closed when theViewModelis cleared without requiring any manual work inonCleared(). ( I55ea0 ) -
lifecycle-viewmodelnow provides anInitializerViewModelFactorythat allows you to add lambda for handling particularViewModelclasses, usingCreationExtrasas the primary data source. ( If58fc , b/216687549 ) -
lifecycle-viewmodel-composenow offers aviewModel()API that takes a lambda factory for creating aViewModelinstance without requiring the creation of a customViewModelProvider.Factory. ( I97fbb , b/216688927 )
এপিআই পরিবর্তন
- You can now create a
ViewModelwithCreationExtrasvialifecycle-viewmodel-compose. ( I08887 , b/216688927 )
আচরণের পরিবর্তন
- Attempting to move the
Lifecycle.StatefromINITIALIZEDtoDESTROYEDwill now always throw anIllegalStateExceptionregardless of whether theLifecyclehas an attached observer. ( I7c390 , b/177924329 ) -
LifecycleRegistrywill now clear their observers when they reach theDESTROYEDstate. ( I4f8dd , b/142925860 )
Version 2.5.0-alpha02
৯ ফেব্রুয়ারী, ২০২২
androidx.lifecycle:lifecycle-*:2.5.0-alpha02 is released. Version 2.5.0-alpha02 contains these commits.
এপিআই পরিবর্তন
-
SavedStateHandleandSavedStateViewModelFactoryhave been converted to Kotlin. This has improved the nullability of the generics in both classes. ( Ib6ce2 , b/216168263 , I9647a , b/177667711 ) - The
LiveDataswitchMapfunction parameter can now have a nullable output. ( I40396 , b/132923666 ) - The
LiveData-ktx extensions are now annotated with@CheckResultto enforce that the result is used when calling these functions. ( Ia0f05 , b/207325134 )
আচরণের পরিবর্তন
-
SavedStateHandlenow properly stores the defaultValue when no value for the specified key exists. ( I1c6ce , b/178510877 )
বাগ সংশোধন
- From Lifecycle
2.4.1: Updatedlifecycle-processto depend on Startup 1.1.1 to ensure that fixes that preventProcessLifecycleInitializerfrom throwing aStartupExceptionare available by default. ( Ib01df , b/216490724 ) - There is now an improved error message when custom
AndroidViewModelclasses have parameters in the wrong order and attempt to create aViewModel. ( I340f7 , b/177667711 ) - You can now create a view model via
CreationExtrasusing theAndroidViewModelFactorywithout setting an application. ( I6ebef , b/217271656 )
Version 2.5.0-alpha01
২৬ জানুয়ারী, ২০২২
androidx.lifecycle:lifecycle-*:2.5.0-alpha01 is released. Version 2.5.0-alpha01 contains these commits.
ViewModel CreationExtras
With this release, we are laying the groundwork for restructuring how a ViewModel is constructed. Instead of a rigid set of subclasses of ViewModelProvider.Factory that each add additional functionality (allowing an Application constructor parameter via AndroidViewModelFactory , allowing a SavedStateHandle constructor parameter via SavedStateViewModelFactory and AbstractSavedStateViewModelFactory , etc.), we are moving to a world of stateless factories that rely on a new concept, CreationExtras . ( Ia7343 , b/188691010 , b/188541057 )
With this change, ViewModelProvider no longer makes direct calls into the previous create(Class<T>) method of ViewModelProvider.Factory . Instead, it calls into a new overload of create : create(Class<T>, CreationExtras) . This means that any direct implementation of the ViewModelProvider.Factory instance now has access to each of these new CreationExtras :
-
ViewModelProvider.NewInstanceFactory.VIEW_MODEL_KEY: thisStringprovides access to the custom key you passed toViewModelProvider.get(). -
ViewModelProvider.AndroidViewModelFactory.APPLICATION_KEYprovides access to theApplicationclass. -
SavedStateHandleSupport.SAVED_STATE_REGISTRY_OWNER_KEYprovides access to theSavedStateRegistryOwnerthat is being used to construct this ViewModel. -
SavedStateHandleSupport.VIEW_MODEL_STORE_OWNER_KEYprovides access to theViewModelStoreOwnerthat is being used to construct this ViewModel. -
SavedStateHandleSupport.DEFAULT_ARGS_KEYprovides access to theBundleof arguments that should be used to construct aSavedStateHandle.
These extras are provided by default when using Activity 1.5.0-alpha01 , Fragment 1.5.0-alpha01 , and Navigation 2.5.0-alpha01 . If you use an earlier version of those libraries, your CreationExtras will be empty - all of the existing subclasses of ViewModelProvider.Factory have been rewritten to support both the legacy creation path used by earlier versions of those libraries and the CreationExtras path which will be used going forward.
These CreationExtras allow you to construct a ViewModelProvider.Factory that passes just the information you need to each ViewModel without relying on a strict hierarchy of Factory subclasses:
class CustomFactory : ViewModelProvider.Factory {
override fun <T : ViewModel> create(modelClass: Class<T>, extras: CreationExtras): T {
return when (modelClass) {
HomeViewModel::class -> {
// Get the Application object from extras
val application = checkNotNull(extras[ViewModelProvider.AndroidViewModelFactory.APPLICATION_KEY])
// Pass it directly to HomeViewModel
HomeViewModel(application)
}
DetailViewModel::class -> {
// Create a SavedStateHandle for this ViewModel from extras
val savedStateHandle = extras.createSavedStateHandle()
DetailViewModel(savedStateHandle)
}
else -> throw IllegalArgumentException("Unknown class $modelClass")
} as T
}
}
We use the createSavedStateHandle() Kotlin extension function on CreationExtras from SavedStateHandleSupport to construct a SavedStateHandle only for the one ViewModel that needs it. ( Ia6654 , b/188541057 )
Custom CreationExtras can be provided by overriding getDefaultViewModelCreationExtras() in your ComponentActivity or Fragment , thus making them available to your custom ViewModelProvider.Factory as a built in form of assisted injection. These extras will automatically be made available to your custom Factory when used directly with ViewModelProvider or when using the by viewModels() and by activityViewModels() Kotlin property extensions. ( I79f2b , b/207012584 , b/207012585 , b/207012490 )
বাগ সংশোধন
- Fixed an issue where the default value provided to a
SavedStateHandlewould reappear after process death and recreation, even if it was specifically removed from theSavedStateHandle. As a consequence of this,SavedStateHandlewill no longer merge default values and restored values together, instead only using the restored values as the source of truth. ( I53a4b )
সংস্করণ ২.৪
Version 2.4.1
৯ ফেব্রুয়ারী, ২০২২
androidx.lifecycle:lifecycle-*:2.4.1 is released. Version 2.4.1 contains these commits.
বাগ সংশোধন
- Backported from Lifecycle
2.5.0-alpha01: Fixed an issue where the default value provided to aSavedStateHandlewould re-appear after process death and recreation, even if it was specifically removed from theSavedStateHandle. As a consequence of this,SavedStateHandlewill no longer merge default values and restored values together, instead only using the restored values as the source of truth. ( I53a4b ) -
lifecycle-processnow depends on Androidx Startup 1.1.1 which fixed a regression in where usingProcessLifecycleInitializerwould cause anStartupException. ( b/216490724 )
সংস্করণ ২.৪.০
২৭ অক্টোবর, ২০২১
androidx.lifecycle:lifecycle-*:2.4.0 is released. Version 2.4.0 contains these commits.
Important changes since 2.3.0
-
@OnLifecycleEventwas deprecated.LifecycleEventObserverorDefaultLifecycleObservershould be used instead. -
androidx.lifecycle:lifecycle-viewmodel-composelibrary was added. It providesviewModel()composable andLocalViewModelStoreOwner.- Source-breaking change :
ViewModelProviderhas been rewritten in Kotlin.ViewModelProvider.Factory.createmethod no longer allows nullable generic.
- Source-breaking change :
- New coroutines API were added to
androidx.lifecycle:lifecycle-runtime-ktx: -
Lifecycle.repeatOnLifecycle, API that executes a block of code in a coroutine when the Lifecycle is at least in a certain state. The block will cancel and re-launch as the lifecycle moves in and out of the target state; -
Flow.flowWithLifecycle, API that emits values from the upstream Flow when the lifecycle is at least in a certain state. -
DefaultLifecycleObserverwas moved fromlifecycle.lifecycle-common-java8tolifecycle.lifecycle-common.lifecycle.lifecycle-common-java8doesn't provide anymore any additional functionality on top oflifecycle.lifecycle-common, so dependency on it can be replaced bylifecycle.lifecycle-common. - Non coroutines API from
lifecycle-viewmodel-ktxhave been moved to thelifecycle-viewmodelmodule. lifecycle-processnow usesandroidx.startupto initialize theProcessLifecycleOwner.Previously, this was being done by
androidx.lifecycle.ProcessLifecycleOwnerInitializer.If you used
tools:node="remove"theContentProviderbeing used to initialize process lifecycle in the past, then you need to do the following instead.<provider android:name="androidx.startup.InitializationProvider" android:authorities=\"${applicationId}.androidx-startup" android:exported="false" tools:node=\"merge"> <!-- If you are using androidx.startup to initialize other components --> <meta-data android:name="androidx.lifecycle.ProcessLifecycleInitializer" android:value="androidx.startup" tools:node="remove" /> </provider>(অথবা)
<!-- If you want to disable androidx.startup completely. --> <provider android:name="androidx.startup.InitializationProvider" android:authorities="${applicationId}.androidx-startup" tools:node="remove"> </provider>
Version 2.4.0-rc01
September 29, 2021
androidx.lifecycle:lifecycle-*:2.4.0-rc01 is released with no changes from Lifecycle 2.4.0-beta01. Version 2.4.0-rc01 contains these commits.
Version 2.4.0-beta01
১৫ সেপ্টেম্বর, ২০২১
androidx.lifecycle:lifecycle-*:2.4.0-beta01 is released. Version 2.4.0-beta01 contains these commits.
এপিআই পরিবর্তন
-
@OnLifecycleEventwas deprecated.LifecycleEventObserverorDefaultLifecycleObservershould be used instead. ( I5a8fa ) - DefaultLifecycleObserver was moved from
androidx.lifecycle.lifecycle-common-java8toandroidx.lifecycle.lifecycle-common.androidx.lifecycle.lifecycle-common-java8doesn't provide anymore any additional functionality on top ofandroidx.lifecycle.lifecycle-common, so dependency on it can be replaced byandroidx.lifecycle.lifecycle-common. ( I021aa ) - Non coroutines API from
lifecycle-viewmodel-ktxhave been moved to thelifecycle-viewmodelmodule. ( I6d5b2 )
বাহ্যিক অবদান
Version 2.4.0-alpha03
৪ আগস্ট, ২০২১
androidx.lifecycle:lifecycle-*:2.4.0-alpha03 is released. Version 2.4.0-alpha03 contains these commits.
এপিআই পরিবর্তন
- Source-breaking change : ViewModelProvider has been rewritten in Kotlin.
ViewModelProvider.Factory.createmethod no longer allows nullable generic. ( I9b9f6 )
আচরণগত পরিবর্তন
- The
Lifecycle.repeatOnLifecycle:blockis now always invoked serially when repeating execution. ( Ibab33 )
বাহ্যিক অবদান
- Thanks chao2zhang for fixing the code snippets in the
repeatOnLifecycledocumentation. #205 .
Version 2.4.0-alpha02
১৬ জুন, ২০২১
androidx.lifecycle:lifecycle-*:2.4.0-alpha02 is released. Version 2.4.0-alpha02 contains these commits.
নতুন বৈশিষ্ট্য
- Added a new
RepeatOnLifecycleWrongUsagelint check tolifecycle-runtime-ktxthat detects whenrepeateOnLifecycleis incorrectly used inonStart()oronResume(). ( 706078 , b/187887400 )
এপিআই পরিবর্তন
- The
LifecycleOwner.addRepeatingJobAPI is removed in favor ofLifecycle.repeatOnLifecyclethat respects structured concurrency and is easier to reason about. ( I4a3a8 ) - Make
ProcessLifecycleInitializerpublic so otherandroidx.startup.Initializers can use these as dependencies. ( I94c31 )
বাগ সংশোধন
- Fixed an issue with the
NullSafeMutableLiveDatalint check when the field has modifiers. ( #147 , b/183696616 ) - Fixed another issue with the
NullSafeMutableLiveDatalint check when using generics. ( #161 , b/184830263 )
বাহ্যিক অবদান
- Thanks maxsav for improving the
NullSafeMutableLiveDatalint check. ( #147 , b/183696616 ) - Thanks kozaxinan for improving the
NullSafeMutableLiveDatalint check. ( #161 , b/184830263 )
Version 2.4.0-alpha01
২৪ মার্চ, ২০২১
androidx.lifecycle:lifecycle-*:2.4.0-alpha01 is released. Version 2.4.0-alpha01 contains these commits.
আচরণগত পরিবর্তন
lifecycle-processnow usesandroidx.startupto initialize theProcessLifecycleOwner.Previously, this was being done by
androidx.lifecycle.ProcessLifecycleOwnerInitializer.If you used
tools:node="remove"theContentProviderbeing used to initialize process lifecycle in the past, then you need to do the following instead.<provider android:name="androidx.startup.InitializationProvider" android:authorities=\"${applicationId}.androidx-startup" android:exported="false" tools:node=\"merge"> <!-- If you are using androidx.startup to initialize other components --> <meta-data android:name="androidx.lifecycle.ProcessLifecycleInitializer" android:value="androidx.startup" tools:node="remove" /> </provider>(অথবা)
<!-- If you want to disable androidx.startup completely. --> <provider android:name="androidx.startup.InitializationProvider" android:authorities="${applicationId}.androidx-startup" tools:node="remove"> </provider>
এপিআই পরিবর্তন
- Added a
Flow.flowWithLifecycleAPI that emits values from the upstream Flow when the lifecycle is at least in a certain state using theLifecycle.repeatOnLifecycleAPI. This is an alternative to the also newLifecycleOwner.addRepeatinJobAPI. ( I0f4cd )
বাগ সংশোধন
- From Lifecycle 2.3.1 : The
NonNullableMutableLiveDatalint rule can now properly differentiate between field variables with different nullability. ( b/169249668 )
Lifecycle Viewmodel Compose Version 1.0.0
সংস্করণ 1.0.0-alpha07
১৬ জুন, ২০২১
androidx.lifecycle:lifecycle-viewmodel-compose:1.0.0-alpha07 is released. Version 1.0.0-alpha07 contains these commits.
Breaking API Changes
-
viewModel()now takes an optionalViewModelStoreOwner, making it easier to work with owners other than theLocalViewModelStoreOwner. For example, you can now useviewModel(navBackStackEntry)to retrieve a ViewModel associated with a particular navigation graph. ( I2628d , b/188693123 )
সংস্করণ 1.0.0-alpha06
২ জুন, ২০২১
androidx.lifecycle:lifecycle-viewmodel-compose:1.0.0-alpha06 is released. Version 1.0.0-alpha06 contains these commits.
Updated to be compatible with Compose version 1.0.0-beta08 .
সংস্করণ 1.0.0-alpha05
১৮ মে, ২০২১
androidx.lifecycle:lifecycle-viewmodel-compose:1.0.0-alpha05 is released. Version 1.0.0-alpha05 contains these commits.
নতুন বৈশিষ্ট্য
- Updated to be compatible with Compose version
1.0.0-beta07.
বাগ সংশোধন
- The AndroidManifest files from ui-test-manifest and ui-tooling-data are now compatible with Android 12 ( I6f9de , b/184718994 )
সংস্করণ 1.0.0-alpha04
৭ এপ্রিল, ২০২১
androidx.lifecycle:lifecycle-viewmodel-compose:1.0.0-alpha04 is released. Version 1.0.0-alpha04 contains these commits.
Dependency Changes
- This version allows
androidx.hilt:hilt-navigation-composeandandroidx.navigation:navigation-composeto sync dependencies onandroidx.compose.compiler:compiler:1.0.0-beta04andandroidx.compose.runtime:runtime:1.0.0-beta04. For 1.0.0, it is required that the compiler and runtime match.
সংস্করণ 1.0.0-alpha03
March 10, 2021
androidx.lifecycle:lifecycle-viewmodel-compose:1.0.0-alpha03 is released. Version 1.0.0-alpha03 contains these commits.
এপিআই পরিবর্তন
-
LocalViewModelStoreOwner.currentnow returns a nullableViewModelStoreOwnerto better determine whether aViewModelStoreOwneris available in the current composition. APIs that require aViewModelStoreOwner, such asviewModel()andNavHost, still throw an exception if aViewModelStoreOwneris not set. ( Idf39a )
Lifecycle-Viewmodel-Compose Version 1.0.0-alpha02
February 24, 2021
androidx.lifecycle:lifecycle-viewmodel-compose:1.0.0-alpha02 is released. Version 1.0.0-alpha02 contains these commits.
এপিআই পরিবর্তন
-
LocalViewModelStoreOwnernow has aprovidesfunctions that can be used withCompositionLocalProvider, replacing theasProvidableCompositionLocal()API. ( I45d24 )
Lifecycle-Viewmodel-Compose Version 1.0.0-alpha01
১০ ফেব্রুয়ারী, ২০২১
androidx.lifecycle:lifecycle-viewmodel-compose:1.0.0-alpha01 is released. Version 1.0.0-alpha01 contains these commits.
নতুন বৈশিষ্ট্য
- The
viewModel()composable andLocalViewModelStoreOwnerwere moved fromandroidx.compose.ui.viewinteropto this artifact in theandroidx.lifecycle.viewmodel.composepackage. ( I7a374 )
সংস্করণ ২.৩.১
Lifecycle Version 2.3.1
২৪ মার্চ, ২০২১
androidx.lifecycle:lifecycle-*:2.3.1 is released. Version 2.3.1 contains these commits.
বাগ সংশোধন
- The
NonNullableMutableLiveDatalint rule can now properly differentiate between field variables with different nullability. ( b/169249668 )
সংস্করণ ২.৩.০
সংস্করণ ২.৩.০
১০ ফেব্রুয়ারী, ২০২১
androidx.lifecycle:lifecycle-*:2.3.0 is released. Version 2.3.0 contains these commits.
Major changes since 2.2.0
-
SavedStateHandlesupport for non-parcelable classes :SavedStateHandlenow supports lazy serialization by allowing you to callsetSavedStateProvider()for a given key, providing aSavedStateProviderthat will get a callback tosaveState()when theSavedStateHandleis asked to save its state. See Saving non-parcelable classes . - Lifecycle Behavior Enforcement :
- LifecycleRegistry now enforces
DESTROYEDas a terminal state. -
LifecycleRegistrynow verifies that its methods are called on main thread. It was always a requirement for lifecycles of activities, fragments etc. An addition of observers from non-main threads resulted in hard to catch crashes in runtime. ForLifecycleRegistryobjects that owned by your own components, you can explicitly opt out from checks by usingLifecycleRegistry.createUnsafe(...), but then you have to ensure that a proper synchronization is in place when thisLifecycleRegistryis accessed from different threads.
- LifecycleRegistry now enforces
- Lifecycle State and Event Helpers : Added static helper methods of
downFrom(State),downTo(State),upFrom(State),upTo(State)toLifecycle.Eventfor generating theEventgiven aStateand transition direction. Added thegetTargetState()method that provides theStatethat the Lifecycle will transition to directly following theEvent. -
withStateAtLeast: AddedLifecycle.withStateAtLeastAPIs that await a lifecycle state and run a non-suspending block of code synchronously at the point of state change, then resume with the result. These APIs differ from the existingwhen*methods as they do not permit running suspending code and do not employ a custom dispatcher. ( aosp/1326081 ) -
ViewTreeAPIs : A newViewTreeLifecycleOwner.get(View)andViewTreeViewModelStoreOwner.get(View)API allows you to retrieve the containingLifecycleOwnerandViewModelStoreOwner, respectively, given aViewinstance. You must upgrade to Activity1.2.0and Fragment1.3.0, and AppCompat 1.3.0-alpha01 or higher to populate this correctly. ThefindViewTreeLifecycleOwnerandfindViewTreeViewModelStoreOwnerKotlin extensions are available inlifecycle-runtime-ktxandlifecycle-viewmodel-ktx, respectively. -
LiveData.observe()Kotlin extension deprecation : TheLiveData.observe()Kotlin extension necessary to use lambda syntax is now deprecated as it is not necessary when using Kotlin 1.4.
Version 2.3.0-rc01
১৬ ডিসেম্বর, ২০২০
androidx.lifecycle:lifecycle-*:2.3.0-rc01 is released. Version 2.3.0-rc01 contains these commits.
বাগ সংশোধন
- The
keys()method ofSavedStateHandleis now consistent before and after the state is saved - it now includes keys previously used withsetSavedStateProvider()in addition to the keys used withset()andgetLiveData(). ( aosp/1517919 , b/174713653 )
বাহ্যিক অবদান
- The APIs to suspend Lifecycle-aware coroutines now better handle calls to
yield(). Thanks Nicklas Ansman Giertz! ( aosp/1430830 , b/168777346 )
Version 2.3.0-beta01
১ অক্টোবর, ২০২০
androidx.lifecycle:lifecycle-*:2.3.0-beta01 is released. Version 2.3.0-beta01 contains these commits.
এপিআই পরিবর্তন
- The
LiveData.observe()Kotlin extension necessary to use lambda syntax is now deprecated as it is not necessary when using Kotlin 1.4. ( I40d3f )
বাগ সংশোধন
- Upgrade androidx to use Kotlin 1.4 ( Id6471 , b/165307851 , b/165300826 )
Documentation Changes
- The
liveDatabuilder andasLiveData()docs have been updated to include details about changing the given timeout values. ( aosp/1122324 )
Version 2.3.0-alpha07
August 19, 2020
androidx.lifecycle:lifecycle-*:2.3.0-alpha07 is released. Version 2.3.0-alpha07 contains these commits.
বাগ সংশোধন
- Fixed a crash issue in the
NullSafeMutableLiveDataLint check. ( aosp/1395367 )
Version 2.3.0-alpha06
২২ জুলাই, ২০২০
androidx.lifecycle:lifecycle-*:2.3.0-alpha06 is released. Version 2.3.0-alpha06 contains these commits.
নতুন বৈশিষ্ট্য
- Added static helper methods of
downFrom(State),downTo(State),upFrom(State),upTo(State)toLifecycle.Eventfor generating theEventgiven aStateand transition direction. Added thegetTargetState()method that provides theStatethat the Lifecycle will transition to directly following theEvent. ( I00887 ) - Added
Lifecycle.withStateAtLeastAPIs that await a lifecycle state and run a non-suspending block of code synchronously at the point of state change, then resume with the result. These APIs differ from the existingwhen*methods as they do not permit running suspending code and do not employ a custom dispatcher. ( aosp/1326081 )
আচরণগত পরিবর্তন
- LifecycleRegistry now enforces
DESTROYEDas a terminal state. ( I00887 ) -
LifecycleRegistrynow verifies that its methods are called on main thread. It was always a requirement for lifecycles of activities, fragments etc. An addition of observers from non-main threads resulted in hard to catch crashes in runtime. ForLifecycleRegistryobjects that owned by your own components, you can explicitly opt out from checks by usingLifecycleRegistry.createUnsafe(...), but then you have to ensure that a proper synchronization is in place when thisLifecycleRegistryis accessed from different threads ( Ie7280 , b/137392809 )
বাগ সংশোধন
- Fixed a crash in
NullSafeMutableLiveData. ( b/159987480 ) - Fixed an
ObsoleteLintCustomCheckfor Lint checks bundled withlifecycle-livedata-core-ktx(and specificallyNullSafeMutableLiveData). ( b/158699265 )
Version 2.3.0-alpha05
২৪ জুন, ২০২০
androidx.lifecycle:lifecycle-*:2.3.0-alpha05 is released. Version 2.3.0-alpha05 contains these commits.
বাগ সংশোধন
-
LiveDatanow better handles reentrant cases, avoiding duplicate calls toonActive()oronInactive(). ( b/157840298 ) - Fixed an issue where Lint checks would not run when using Android Studio 4.1 Canary 6 or higher. ( aosp/1331903 )
Version 2.3.0-alpha04
June 10, 2020
androidx.lifecycle:lifecycle-*:2.3.0-alpha04 is released. Version 2.3.0-alpha04 contains these commits.
বাগ সংশোধন
- Fixed a crash in the
NonNullableMutableLiveDataLint check. ( b/157294666 ) - The
NonNullableMutableLiveDataLint check now covers significantly more cases where anullvalue was set on aMutableLiveDatawith a non-null type parameter. ( b/156002218 )
Version 2.3.0-alpha03
২০ মে, ২০২০
androidx.lifecycle:lifecycle-*:2.3.0-alpha03 are released. Version 2.3.0-alpha03 contains these commits.
নতুন বৈশিষ্ট্য
-
SavedStateHandlenow supports lazy serialization by allowing you to callsetSavedStateProvider()for a given key, providing aSavedStateProviderthat will get a callback tosaveState()when theSavedStateHandleis asked to save its state. ( b/155106862 ) - A new
ViewTreeViewModelStoreOwner.get(View)API allows you to retrieve the containingViewModelStoreOwnergiven aViewinstance. You must upgrade to Activity1.2.0-alpha05, Fragment1.3.0-alpha05, and AppCompat1.3.0-alpha01to populate this correctly. AfindViewModelStoreOwner()Kotlin extension has been added tolifecycle-viewmodel-ktx. ( aosp/1295522 )
বাগ সংশোধন
- Fixed an issue that caused the
MutableLiveDataLint checks released in Lifecycle2.3.0-alpha01from being published alongside thelifecycle-livedata-core-ktxartifact. ( b/155323109 )
Version 2.3.0-alpha02
২৯ এপ্রিল, ২০২০
androidx.lifecycle:lifecycle-*:2.3.0-alpha02 is released. Version 2.3.0-alpha02 contains these commits.
এপিআই পরিবর্তন
-
SavedStateViewModelFactorynow allows you to pass a nullApplicationto its constructor to better support cases where one is not readily available and support forAndroidViewModelis not needed. ( aosp/1285740 )
বাগ সংশোধন
- Improved cold start performance by avoiding class verification failure on API 28 and lower devices. ( aosp/1282118 )
Version 2.3.0-alpha01
৪ মার্চ, ২০২০
androidx.lifecycle:lifecycle-*:2.3.0-alpha01 is released. Version 2.3.0-alpha01 contains these commits.
নতুন বৈশিষ্ট্য
- A new
ViewTreeLifecycleOwner.get(View)API allows you to retrieve the containingLifecycleOwnergiven aViewinstance. You must upgrade to Activity1.2.0-alpha01and Fragment1.3.0-alpha01to populate this correctly. AfindViewTreeLifecycleOwnerKotlin extension is available inlifecycle-runtime-ktx. ( aosp/1182361 , aosp/1182956 ) - Added a new Lint check that warns you when setting a
nullvalue on aMutableLiveDatathat has been defined in Kotlin as non-null. This is available when using thelivedata-core-ktxorlivedata-ktxartifacts. ( aosp/1154723 , aosp/1159092 ) - A new
lifecycle-runtime-testingartifact is available that provides aTestLifecycleOwnerthat implementsLifecycleOwnerand provides a thread safe mutableLifecycle. ( aosp/1242438 )
বাগ সংশোধন
- The
lifecycle-runtimeartifact now has a unique package name. ( aosp/1187196 )
সংস্করণ ২.২.০
ViewModel-Savedstate Version 2.2.0
৫ ফেব্রুয়ারি, ২০২০
androidx.lifecycle:lifecycle-viewmodel-savedstate:2.2.0 is released. Version 2.2.0 contains these commits .
Lifecycle ViewModel SavedState now shares the same version as other Lifecycle artifacts. The behavior of 2.2.0 is identical to the behavior of 1.0.0 .
সংস্করণ ২.২.০
২২ জানুয়ারী, ২০২০
androidx.lifecycle:lifecycle-*:2.2.0 is released. Version 2.2.0 contains these commits .
Important changes since 2.1.0
- Lifecycle Coroutine Integration : The new
lifecycle-runtime-ktxartifact adds integration between Lifecycle and Kotlin coroutines. Thelifecycle-livedata-ktxhas also been expanded to take advantage of coroutines. See Use Kotlin coroutines with Architecture Components for more details. -
ViewModelProviders.of()deprecation :ViewModelProviders.of()has been deprecated. You can pass aFragmentorFragmentActivityto the newViewModelProvider(ViewModelStoreOwner)constructor to achieve the same functionality when using Fragment1.2.0. -
lifecycle-extensionsArtifact Deprecation : With the above deprecation ofViewModelProviders.of(), this release marks the deprecation of the last API inlifecycle-extensionsand this artifact should now be considered deprecated in its entirety. We strongly recommend depending on the specific Lifecycle artifacts you need (such aslifecycle-serviceif you're usingLifecycleServiceandlifecycle-processif you're usingProcessLifecycleOwner) rather thanlifecycle-extensionsas there will not be a future2.3.0release oflifecycle-extensions. - Gradle Incremental Annotation Processor : Lifecycle's annotation processor is incremental by default. If your app is written in the Java 8 programming language you can use
DefautLifecycleObserverinstead; and if it's written in the Java 7 programming language you can useLifecycleEventObserver.
Version 2.2.0-rc03
৪ ডিসেম্বর, ২০১৯
androidx.lifecycle:lifecycle-*:2.2.0-rc03 is released. Version 2.2.0-rc03 contains these commits .
বাগ সংশোধন
- Fixed a failure occurring when a mocked
ViewModelwas stored inViewModelStoreand queried later with default factory. - Fix a usage of
Dispatchers.Main.immediateinlaunchWhenCreatedand similar methods to be called synchronously during corresponding lifecycle event. ( aosp/1156203 )
External contributions
- Thanks to Anders Järleberg for contributing the fix! ( aosp/1156203 )
- Thanks to Vsevolod Tolstopyatov from Jetbrains for reviewing an implementation of inlined execution.
Dependency changes
- Lifecycle Extensions now depends on Fragment
1.2.0-rc03.
Version 2.2.0-rc02
November 7, 2019
androidx.lifecycle:lifecycle-*:2.2.0-rc02 is released. Version 2.2.0-rc02 contains these commits .
বাগ সংশোধন
- Fixed a bug in the proguard setup of the library that affected devices running API 28+ if the target API is below 29. ( b/142778206 )
Version 2.2.0-rc01
২৩ অক্টোবর, ২০১৯
androidx.lifecycle:lifecycle-*:2.2.0-rc01 is released. Version 2.2.0-rc01 contains these commits .
বাগ সংশোধন
- Fixed an issue where
launchWhenCreatedand related methods would run one frame later than the associated lifecycle method due to its use ofDispatchers.Maininstead ofDispatchers.Main.immediate. ( aosp/1145596 )
External contributions
- Thanks to Nicklas Ansman for contributing the fix! ( aosp/1145596 )
Version 2.2.0-beta01
৯ অক্টোবর, ২০১৯
androidx.lifecycle:lifecycle-*:2.2.0-beta01 is released. Version 2.2.0-beta01 contains these commits .
বাগ সংশোধন
- Fixed a regression introduced in Lifecycle 2.2.0-alpha05 in the ordering of
ProcessLifecycleOwnerand the activity'sLifecycleOwnermoving to started and resumed on Android 10 devices. ( aosp/1128132 ) - Fixed a regression introduced in Lifecycle
2.2.0-alpha05which would cause aNullPointerExceptionwhen using version2.0.0or2.1.0oflifecycle-process. ( b/141536990 )
Version 2.2.0-alpha05
১৮ সেপ্টেম্বর, ২০১৯
androidx.lifecycle:lifecycle-*:2.2.0-alpha05 is released. Version 2.2.0-alpha05 contains these commits .
বাগ সংশোধন
- Fixed a race condition in coroutine livedata builder. b/140249349
Version 2.2.0-alpha04
৫ সেপ্টেম্বর, ২০১৯
androidx.lifecycle:lifecycle-*:2.2.0-alpha04 is released. The commits included in this version can be found here .
নতুন বৈশিষ্ট্য
-
lifecycleScope,whenCreated,whenStarted,whenResumed,viewModelScope, and the underlying implementation ofliveDatanow useDispatchers.Main.immediateinstead ofDispatchers.Main. ( b/139740492 )
External contributions
- Thanks to Nicklas Ansman for contributing the move to
Dispatchers.Main.immediate! ( aosp/1106073 )
Version 2.2.0-alpha03
৭ আগস্ট, ২০১৯
androidx.lifecycle:lifecycle-*:2.2.0-alpha03 is released. The commits included in this version can be found here .
নতুন বৈশিষ্ট্য
- Implementations of
ViewModelStoreOwnercan now optionally implementHasDefaultViewModelProviderFactoryto provide a defaultViewModelProvider.Factory. This has been done for Activity1.1.0-alpha02, Fragment1.2.0-alpha02, and Navigation2.2.0-alpha01. ( aosp/1092370 , b/135716331 )
API changes
-
ViewModelProviders.of()has been deprecated. You can pass aFragmentorFragmentActivityto the newViewModelProvider(ViewModelStoreOwner)constructor to achieve the same functionality. ( aosp/1009889 )
Version 2.2.0-alpha02
২ জুলাই, ২০১৯
androidx.lifecycle:*:2.2.0-alpha02 is released. The commits included in this version can be found here .
API changes
- Replaced
LiveDataScope.initialValuewithLiveDataScope.latestValuewhich will track the current emitted value of theliveDatablock. - Added a new overload to the
liveDatabuilder that receivestimeoutparameter as typeDuration
Version 2.2.0-alpha01
৭ মে, ২০১৯
androidx.lifecycle:*:2.2.0-alpha01 is released. The commits included in this version can be found here .
নতুন বৈশিষ্ট্য
- This release adds new features that adds support for Kotlin coroutines for Lifecycle and LiveData. Detailed documentation on them can be found here .
ViewModel-SavedState Version 1.0.0
সংস্করণ ১.০.০
২২ জানুয়ারী, ২০২০
androidx.lifecycle:lifecycle-viewmodel-savedstate:1.0.0 is released. Version 1.0.0 contains these commits .
Important features in 1.0.0
- New SavedStateHandle class was added. It enables your
ViewModelclasses to access and to contribute to the saved state. This object can be received in constructor ofViewModelclass and factories provided by default by Fragments and AppCompatActivity will injectSavedStateHandleautomatically. - AbstractSavedStateViewModelFactory was added. It allows you to create custom factories for your
ViewModeland provide them access toSavedStateHandle.
ViewModel-Savedstate Version 1.0.0-rc03
৪ ডিসেম্বর, ২০১৯
androidx.lifecycle:lifecycle-viewmodel-savedstate:1.0.0-rc03 is released. Version 1.0.0-rc03 contains these commits .
Dependency changes
- Lifecycle ViewModel SavedState now depends on Lifecycle
2.2.0-rc03.
Viewmodel-Savedstate Version 1.0.0-rc02
November 7, 2019
androidx.lifecycle:lifecycle-viewmodel-savedstate:1.0.0-rc02 is released. Version 1.0.0-rc02 contains these commits .
Dependency changes
- Now depends on lifecycle
2.2.0-rc02.
ViewModel-SavedState Version 1.0.0-rc01
২৩ অক্টোবর, ২০১৯
androidx.lifecycle:lifecycle-viewmodel-savedstate:1.0.0-rc01 is released with no changes from 1.0.0-beta01 . Version 1.0.0-rc01 contains these commits .
ViewModel-Savedstate Version 1.0.0-beta01
৯ অক্টোবর, ২০১৯
androidx.lifecycle:lifecycle-viewmodel-savedstate:1.0.0-beta01 is released. Version 1.0.0-beta01 contains these commits .
বাগ সংশোধন
- Fixed an issue where accessing a SavedState ViewModel for the first time in
Activity.onActivityResult()would result in anIllegalStateException. ( b/139093676 ) - Fixed an
IllegalStateExceptionwhen usingAbstractSavedStateViewModelFactory. ( b/141225984 )
ViewModel-SavedState Version 1.0.0-alpha05
১৮ সেপ্টেম্বর, ২০১৯
androidx.lifecycle:lifecycle-viewmodel-savedstate:1.0.0-alpha05 is released. Version 1.0.0-alpha05 contains these commits .
API changes
-
SavedStateViewModelFactoryno longer extendsAbstractSavedStateViewModelFactoryandSavedStateHandleis created only for ViewModels that requested have it ( aosp/1113593 )
ViewModel-SavedState Version 1.0.0-alpha03
৭ আগস্ট, ২০১৯
androidx.lifecycle:lifecycle-viewmodel-savedstate:1.0.0-alpha03 is released. The commits included in this version can be found here .
Breaking Changes
-
lifecycle-viewmodel-savedstateno longer depends onfragmentand the relatedSavedStateViewModelFactory(Fragment)andSavedStateViewModelFactory(FragmentActivity)constructors have been removed. Instead,SavedStateViewModelFactoryis now the default factory for Activity1.1.0-alpha02, Fragment1.2.0-alpha02, and Navigation2.2.0-alpha01. ( b/135716331 )
ViewModel-SavedState Version 1.0.0-alpha02
২ জুলাই, ২০১৯
androidx.lifecycle:lifecycle-viewmodel-savedstate:1.0.0-alpha02 is released. The commits included in this version can be found here .
নতুন বৈশিষ্ট্য
- Added
SavedStateHandle.getLiveData()overload which accepts a default value.
এপিআই পরিবর্তন
-
SavedStateVMFactoryis renamed toSavedStateViewModelFactory. -
AbstractSavedStateVMFactoryis renamed toAbstractSavedStateViewModelFactory.
ViewModel-Savedstate Version 1.0.0-alpha01
১৩ মার্চ, ২০১৯
androidx.lifecycle:lifecycle-viewmodel-savedstate:1.0.0-alpha01 is released. The full commit log for this initial release can be found here .
নতুন বৈশিষ্ট্য
- Now
ViewModelscan contribute to savedstate. To do that you use newly introduced viewmodel's factorySavedStateVMFactoryand your ViewModel should have a constructor that receivesSavedStateHandleobject as a parameter.
সংস্করণ ২.১.০
Important changes since 2.0.0
- Added
LifecycleEventObserverfor the cases when a stream of lifecycle events is needed. It is a public API instead of a hiddenGenericLifecycleObserverclass. - Added ktx extensions for
LiveData.observemethods andTransformations.*methods. - Added
Transformations.distinctUntilChanged, which creates a new LiveData object that does not emit a value until the sourceLiveDatavalue has been changed. - Added coroutine support in ViewModels by adding the extension property
ViewModel.viewModelScope.
সংস্করণ ২.১.০
৫ সেপ্টেম্বর, ২০১৯
androidx.lifecycle:lifecycle-*:2.1.0 is released. The commits included in this version can be found here .
Version 2.1.0-rc01
২ জুলাই, ২০১৯
androidx.lifecycle:*:2.1.0-rc01 is released with no changes from androidx.lifecycle:*:2.1.0-beta01 . The commits included in this version can be found here .
Version 2.1.0-beta01
৭ মে, ২০১৯
androidx.lifecycle:*:2.1.0-beta01 is released. The commits included in this version can be found here .
নতুন বৈশিষ্ট্য
- Lifecycles are graduated to beta: api introduced in previous alphas such as
liveDataextension functions for transformations and observations,ViewModelinitialisation with property delegation and others are stabilised and not going to change.
Version 2.1.0-alpha04
৩ এপ্রিল, ২০১৯
androidx.lifecycle:*:2.1.0-alpha04 is released. The commits included in this version can be found here .
API changes
- Breaking change: the underlying API behind
by viewModels()andby activityViewModels()has been changed to support aViewModelStoredirectly, rather than only aViewModelStoreOwner. ( aosp/932932 )
Version 2.1.0-alpha03
১৩ মার্চ, ২০১৯
androidx.lifecycle:*:2.1.0-alpha03 is released. The full list of commits included in this version can be found here .
API changes
-
ViewModelProvider.KeyedFactorywas removed. Second interface in addition toViewModelProvider.Factorydidn't compose well with new features as property delegation in Kotlinby viewmodels {}. ( aosp/914133 )
Version 2.1.0-alpha02
৩০ জানুয়ারী, ২০১৯
androidx.lifecycle 2.1.0-alpha02 is released.
API changes
-
LifecycleRegistrynow contains asetCurrentState()method that replaces the now deprecatedsetState()method. ( aosp/880715 )
বাগ সংশোধন
- Fixed an issue where mock
ViewModelinstances would crash when the containingViewModelStorewas cleared. b/122273087
Version 2.1.0-alpha01
১৭ ডিসেম্বর, ২০১৮
androidx.lifecycle 2.1.0-alpha01 is released.
নতুন বৈশিষ্ট্য
- Added
LifecycleEventObserverfor the cases when a stream of lifecycle events is needed. It is a public api instead of a hiddenGenericLifecycleObserverclass. - Added ktx extensions for
LiveData.observemethods andTransformations.*methods. - Method
Transformations.distinctUntilChangedwas added. It creates a newLiveDataobject that does not emit a value until the source LiveData value has been changed. - Coroutine support in ViewModels: extension property
ViewModel.viewModelScopewas added. - Added
ViewModelProvider.KeyedFactory, a factory for ViewModels that receiveskeyandClassincreatemethod.
সংস্করণ ২.০.০
সংস্করণ ২.০.০
২১ সেপ্টেম্বর, ২০১৮
Lifecycle 2.0.0 is released with one bugfix from 2.0.0-rc01 in ViewModel.
বাগ সংশোধন
- Fixed a ViewModel proguard rule that incorrectly removed constructors b/112230489
Version 2.0.0-beta01
২ জুলাই, ২০১৮
বাগ সংশোধন
- Fixed LifecycleObserver proguard rule to keep only implementations, not subinterfaces b/71389427
- Fixed ViewModel proguard rules to allow obfuscation and shrinking
Pre-AndroidX Versions
For the pre-AndroidX versions of Lifecycle that follow, include these dependencies:
dependencies {
def lifecycle_version = "1.1.1"
// ViewModel and LiveData
implementation "android.arch.lifecycle:extensions:$lifecycle_version"
// alternatively - just ViewModel
implementation "android.arch.lifecycle:viewmodel:$lifecycle_version" // For Kotlin use viewmodel-ktx
// alternatively - just LiveData
implementation "android.arch.lifecycle:livedata:$lifecycle_version"
// alternatively - Lifecycles only (no ViewModel or LiveData).
// Support library depends on this lightweight import
implementation "android.arch.lifecycle:runtime:$lifecycle_version"
annotationProcessor "android.arch.lifecycle:compiler:$lifecycle_version" // For Kotlin use kapt instead of annotationProcessor
// alternately - if using Java8, use the following instead of compiler
implementation "android.arch.lifecycle:common-java8:$lifecycle_version"
// optional - ReactiveStreams support for LiveData
implementation "android.arch.lifecycle:reactivestreams:$lifecycle_version"
// optional - Test helpers for LiveData
testImplementation "android.arch.core:core-testing:$lifecycle_version"
}
সংস্করণ ১.১.১
২১ মার্চ, ২০১৮
Only one small change: android.arch.core.util.Function is moved from arch:runtime to arch:common . This allows it to be used without the runtime dependency, eg in paging:common below.
lifecycle:common is a dependency of lifecycle:runtime , so this change doesn't affect lifecycle:runtime directly, only modules that depend directly on lifecycle:common , as Paging does.
সংস্করণ ১.১.০
২২ জানুয়ারী, ২০১৮
Packaging Changes
New, much smaller dependencies are now available:
-
android.arch.lifecycle:livedata:1.1.0 -
android.arch.lifecycle:viewmodel:1.1.0
এপিআই পরিবর্তন
- The deprecated
LifecycleActivityandLifecycleFragmenthave now been removed - please useFragmentActivity,AppCompatActivityor supportFragment. -
@NonNullannotations have been added toViewModelProvidersandViewModelStores -
ViewModelProvidersconstructor has been deprecated - please use its static methods directly -
ViewModelProviders.DefaultFactoryhas been deprecated - please useViewModelProvider.AndroidViewModelFactory - The static
ViewModelProvider.AndroidViewModelFactory.getInstance(Application)method has been added to retrieve a staticFactorysuitable for creatingViewModelandAndroidViewModelinstances.