অ্যানিমেশন রচনা করুন
androidx.compose.animation সম্পর্কে
androidx.compose.animation.core সম্পর্কে
androidx.compose.animation.graphics সম্পর্কে
( সমস্ত কম্পোজ প্যাকেজের জন্য API রেফারেন্স ডক্স দেখুন )
সর্বশেষ আপডেট | স্থিতিশীল রিলিজ | রিলিজ প্রার্থী | বিটা রিলিজ | আলফা রিলিজ |
---|---|---|---|---|
২২ অক্টোবর, ২০২৫ | ১.৯.৪ | - | ১.১০.০-বিটা০১ | - |
গঠন
কম্পোজ হল androidx
মধ্যে ৭টি Maven গ্রুপ আইডির সমন্বয়। প্রতিটি গ্রুপে কার্যকারিতার একটি লক্ষ্যবস্তু উপসেট থাকে, প্রতিটির নিজস্ব রিলিজ নোটের সেট থাকে।
এই টেবিলে প্রতিটি রিলিজ নোটের গ্রুপ এবং লিঙ্কগুলি ব্যাখ্যা করা হয়েছে।
গ্রুপ | বিবরণ |
---|---|
রচনা.অ্যানিমেশন | ব্যবহারকারীর অভিজ্ঞতা সমৃদ্ধ করতে তাদের জেটপ্যাক কম্পোজ অ্যাপ্লিকেশনগুলিতে অ্যানিমেশন তৈরি করুন। |
কম্পোজ.কম্পাইলার | @Composable ফাংশন রূপান্তর করুন এবং একটি Kotlin কম্পাইলার প্লাগইন দিয়ে অপ্টিমাইজেশন সক্ষম করুন। |
রচনা.ভিত্তি | ব্যবহারের জন্য প্রস্তুত বিল্ডিং ব্লক সহ জেটপ্যাক কম্পোজ অ্যাপ্লিকেশন লিখুন এবং আপনার নিজস্ব ডিজাইন সিস্টেমের টুকরো তৈরি করতে ভিত্তি প্রসারিত করুন। |
রচনা.উপাদান | ব্যবহারের জন্য প্রস্তুত মেটেরিয়াল ডিজাইন কম্পোনেন্ট দিয়ে জেটপ্যাক কম্পোজ UI তৈরি করুন। এটি কম্পোজের উচ্চ স্তরের এন্ট্রি পয়েন্ট, যা www.material.io-তে বর্ণিত উপাদানগুলির সাথে মেলে এমন উপাদান সরবরাহ করার জন্য ডিজাইন করা হয়েছে। |
রচনা.উপাদান৩ | মেটেরিয়াল ডিজাইনের পরবর্তী বিবর্তন, মেটেরিয়াল ডিজাইন 3 কম্পোনেন্ট দিয়ে জেটপ্যাক কম্পোজ UI তৈরি করুন। মেটেরিয়াল 3-তে আপডেটেড থিমিং এবং কম্পোনেন্ট এবং মেটেরিয়াল ইউ পার্সোনালাইজেশন বৈশিষ্ট্য যেমন ডায়নামিক কালার অন্তর্ভুক্ত রয়েছে এবং এটি নতুন অ্যান্ড্রয়েড 12 ভিজ্যুয়াল স্টাইল এবং সিস্টেম UI-এর সাথে সামঞ্জস্যপূর্ণ হওয়ার জন্য ডিজাইন করা হয়েছে। |
রচনা.রানটাইম | কম্পোজের প্রোগ্রামিং মডেল এবং স্টেট ম্যানেজমেন্টের মৌলিক বিল্ডিং ব্লক, এবং কম্পোজ কম্পাইলার প্লাগইনকে লক্ষ্য করার জন্য মূল রানটাইম। |
কম্পোজ.ইউআই | ডিভাইসের সাথে ইন্টারঅ্যাক্ট করার জন্য কম্পোজ UI এর মৌলিক উপাদানগুলির প্রয়োজন, যার মধ্যে রয়েছে লেআউট, অঙ্কন এবং ইনপুট। |
নির্ভরতা ঘোষণা করা
কম্পোজের উপর নির্ভরতা যোগ করতে, আপনার প্রোজেক্টে গুগল ম্যাভেন রিপোজিটরি যোগ করতে হবে। আরও তথ্যের জন্য গুগলের ম্যাভেন রিপোজিটরি পড়ুন।
আপনার অ্যাপ বা মডিউলের জন্য build.gradle
ফাইলে আপনার প্রয়োজনীয় আর্টিফ্যাক্টের জন্য নির্ভরতা যোগ করুন:
গ্রোভি
dependencies { implementation "androidx.compose.animation:animation:1.9.4" } android { buildFeatures { compose true } composeOptions { kotlinCompilerExtensionVersion = "1.5.15" } kotlinOptions { jvmTarget = "1.8" } }
কোটলিন
dependencies { implementation("androidx.compose.animation:animation:1.9.4") } android { buildFeatures { compose = true } composeOptions { kotlinCompilerExtensionVersion = "1.5.15" } kotlinOptions { jvmTarget = "1.8" } }
নির্ভরতা সম্পর্কে আরও তথ্যের জন্য, বিল্ড নির্ভরতা যোগ করুন দেখুন।
প্রতিক্রিয়া
আপনার মতামত জেটপ্যাককে আরও উন্নত করতে সাহায্য করবে। আপনি যদি নতুন সমস্যা আবিষ্কার করেন অথবা এই লাইব্রেরি উন্নত করার জন্য কোন ধারণা থাকে তাহলে আমাদের জানান। নতুন একটি তৈরি করার আগে দয়া করে এই লাইব্রেরিতে বিদ্যমান সমস্যাগুলি একবার দেখে নিন। আপনি তারকা বোতামে ক্লিক করে বিদ্যমান সমস্যাটিতে আপনার ভোট যোগ করতে পারেন।
আরও তথ্যের জন্য ইস্যু ট্র্যাকার ডকুমেন্টেশন দেখুন।
সংস্করণ 1.10
সংস্করণ 1.10.0-beta01
২২ অক্টোবর, ২০২৫
androidx.compose.animation:animation-*:1.10.0-beta01
প্রকাশিত হয়েছে। সংস্করণ 1.10.0-beta01-এ এই কমিটগুলি রয়েছে।
API পরিবর্তনগুলি
-
SharedContentConfig
ফ্যাক্টরি পদ্ধতি যা একটি ল্যাম্বডা নেয় যা নির্দেশ করে যে শেয়ার করা উপাদানটি সক্রিয় করা উচিত কিনা তা সরিয়ে ফেলা হয়েছে।lookheadScopeCoordinates
API আপডেট করা হয়েছেLookaheadScope
কে রিসিভার স্কোপ হিসেবে, এবং সোর্স স্থানাঙ্ককে প্যারামিটার হিসেবে। ( Id1fc2 , b/452416806 ) -
SizeTransform
সাথে সামঞ্জস্যপূর্ণ করার জন্যBoundsTransform
ইন্টারফেস আপডেট করা হয়েছে। ( Ia46f2 , b/343696350 ) - অপ্রচলিত
ScaleToBounds
API সরানো হয়েছে। দয়া করে এর পরিবর্তেscaleToBounds
ব্যবহার করুন। ( I17296 )
সংস্করণ 1.10.0-alpha05
৮ অক্টোবর, ২০২৫
androidx.compose.animation:animation-*:1.10.0-alpha05
প্রকাশিত হয়েছে। সংস্করণ 1.10.0-alpha05-এ এই কমিটগুলি রয়েছে।
API পরিবর্তনগুলি
- শেয়ার্ড ট্রানজিশন API গুলি এখন স্থিতিশীল। আরও তথ্যের জন্য, অনুগ্রহ করে শেয়ার্ড এলিমেন্ট গাইড দেখুন। ( I7167e )।
সংস্করণ 1.10.0-alpha04
২৪ সেপ্টেম্বর, ২০২৫
androidx.compose.animation:animation-*:1.10.0-alpha04
প্রকাশিত হয়েছে। সংস্করণ 1.10.0-alpha04-এ এই কমিটগুলি রয়েছে।
API পরিবর্তনগুলি
-
PlaceHolderSize
সম্পর্কিত API গুলির নামকরণ আপডেট করা হয়েছে। ( I037d8 , b/343696350 ) - শেয়ার্ড এলিমেন্টগুলিতে জেসচার বেগ অব্যাহত রাখার জন্য একটি প্রাথমিক বেগ সমর্থন করার জন্য নতুন শেয়ার্ড এলিমেন্ট ট্রানজিশন API। ( I91be9 )
সংস্করণ 1.10.0-alpha03
১০ সেপ্টেম্বর, ২০২৫
androidx.compose.animation:animation-*:1.10.0-alpha03
প্রকাশিত হয়েছে। সংস্করণ 1.10.0-alpha03-এ এই কমিটগুলি রয়েছে।
API পরিবর্তনগুলি
-
Modifier.skipToLookaheadSize
এখন একটি ডিফল্ট সক্ষম ল্যাম্বডা ব্যবহার করে যা শুধুমাত্র শেয়ার্ড ট্রানজিশন সক্রিয় থাকাকালীন আকার স্কিপিং সক্ষম করে,Modifier.skipToLookaheadPosition
এর মতোই। ( Ibe0f5 , b/432485585 )
সংস্করণ 1.10.0-alpha02
২৭ আগস্ট, ২০২৫
androidx.compose.animation:animation-*:1.10.0-alpha02
প্রকাশিত হয়েছে। সংস্করণ 1.10.0-alpha02-এ এই কমিটগুলি রয়েছে।
সংস্করণ 1.10.0-alpha01
১৩ আগস্ট, ২০২৫
androidx.compose.animation:animation-*:1.10.0-alpha01
প্রকাশিত হয়েছে। সংস্করণ 1.10.0-alpha01-এ এই কমিটগুলি রয়েছে।
নতুন বৈশিষ্ট্য
- নতুন API যা ভাগ করা উপাদানগুলিকে গতিশীলভাবে সক্ষম এবং অক্ষম করার অনুমতি দেয় যা ইতিমধ্যেই একটি চলমান ভাগ করা উপাদান রূপান্তর আছে কিনা তা হিসাব করার অনুমতি দেয়।
- ট্রানজিশনের সময় টার্গেট শেয়ার করা উপাদানটি নিষ্পত্তি করা হলে বিকল্প টার্গেট সীমানা সেট আপ করার জন্য নতুন API।
-
LookaheadScope
LayoutCoordinates
পেতে নতুন API। ( I18dd4 , b/409819304 , b/395670637 ) - শেয়ার্ড ট্রানজিশনের সময় টার্গেট পজিশনে লেআউট অ্যাঙ্কর করার জন্য
SharedTransitionScope
এ নতুন মডিফায়ারModifier.skipToLookaheadPosition
। ( I88734 )
API পরিবর্তনগুলি
-
clipInOverlayDuringTransition
lambda অপসারণ করেrenderInSharedTransitionOverlay
সরলীকৃত করা হয়েছে কারণ এটি খুব কমই ব্যবহৃত হয়েছে।SharedContentConfig
এর জন্য নতুন ফ্যাক্টরি পদ্ধতি চালু করা হয়েছে। ( Id01b2 ) - শেয়ার্ড এলিমেন্ট, শেয়ার্ড বাউন্ড,
renderInSharedTransitionOverlay
কনফিগারেশনের জন্য ডিফল্টের একটি সেট যোগ করা হয়েছে। এই ডিফল্টগুলি এখন পাবলিক API-এর মাধ্যমে অ্যাক্সেসযোগ্য। ( Id23cc ) -
ScaleToBounds
ResizeMode এর নাম পরিবর্তন করেscaleToBounds
( I5ac50 ) রাখা হয়েছে।
বাগ ফিক্স
- ডিফল্ট minSdk কে API 21 থেকে API 23 এ স্থানান্তর করা হচ্ছে ( Ibdfca , b/380448311 , b/435705964 , b/435705223 )
সংস্করণ 1.9
সংস্করণ 1.9.4
২২ অক্টোবর, ২০২৫
androidx.compose.animation:animation-*:1.9.4
প্রকাশিত হয়েছে। সংস্করণ 1.9.4-এ এই কমিটগুলি রয়েছে।
সংস্করণ 1.9.3
৮ অক্টোবর, ২০২৫
androidx.compose.animation:animation-*:1.9.3
প্রকাশিত হয়েছে। সংস্করণ 1.9.3-এ এই কমিটগুলি রয়েছে।
সংস্করণ 1.9.2
২৪ সেপ্টেম্বর, ২০২৫
androidx.compose.animation:animation-*:1.9.2
প্রকাশিত হয়েছে। সংস্করণ 1.9.2-এ এই কমিটগুলি রয়েছে।
সংস্করণ 1.9.1
১০ সেপ্টেম্বর, ২০২৫
androidx.compose.animation:animation-*:1.9.1
প্রকাশিত হয়েছে। সংস্করণ 1.9.1-এ এই কমিটগুলি রয়েছে।
বাগ ফিক্স
-
sharedElementWithCallerManagedVisibility
এর জন্য অ্যানিমেশন শুরু করার সমস্যা সমাধান করুন। ( fa29de )
সংস্করণ 1.9.0
১৩ আগস্ট, ২০২৫
androidx.compose.animation:animation-*:1.9.0
প্রকাশিত হয়েছে। সংস্করণ 1.9.0-এ এই কমিটগুলি রয়েছে।
সংস্করণ 1.9.0-rc01
৩০ জুলাই, ২০২৫
androidx.compose.animation:animation-*:1.9.0-rc01
প্রকাশিত হয়েছে। সংস্করণ 1.9.0-rc01-এ এই কমিটগুলি রয়েছে।
সংস্করণ 1.9.0-beta03
১৬ জুলাই, ২০২৫
androidx.compose.animation:animation-*:1.9.0-beta03
প্রকাশিত হয়েছে। সংস্করণ 1.9.0-beta03-এ এই কমিটগুলি রয়েছে।
সংস্করণ 1.9.0-beta02
২ জুলাই, ২০২৫
androidx.compose.animation:animation-*:1.9.0-beta02
প্রকাশিত হয়েছে। সংস্করণ 1.9.0-beta02-এ এই কমিটগুলি রয়েছে।
সংস্করণ 1.9.0-beta01
১৮ জুন, ২০২৫
androidx.compose.animation:animation-*:1.9.0-beta01
প্রকাশিত হয়েছে। সংস্করণ 1.9.0-beta01-এ এই কমিটগুলি রয়েছে।
সংস্করণ 1.9.0-alpha04
৪ জুন, ২০২৫
androidx.compose.animation:animation-*:1.9.0-alpha04
প্রকাশিত হয়েছে। সংস্করণ 1.9.0-alpha04-এ এই কমিটগুলি রয়েছে।
সংস্করণ 1.9.0-alpha03
২০ মে, ২০২৫
androidx.compose.animation:animation-*:1.9.0-alpha03
প্রকাশিত হয়েছে। সংস্করণ 1.9.0-alpha03-এ এই কমিটগুলি রয়েছে।
সংস্করণ 1.9.0-alpha02
৭ মে, ২০২৫
androidx.compose.animation:animation-*:1.9.0-alpha02
প্রকাশিত হয়েছে। সংস্করণ 1.9.0-alpha02-এ এই কমিটগুলি রয়েছে।
নতুন বৈশিষ্ট্য
- শেয়ার্ড এলিমেন্টগুলিতে স্ক্রলিং বা ড্র্যাগ করার জন্য অনেক উন্নত সাপোর্ট। আরও স্পষ্ট করে বলতে গেলে, যখন একটি ট্রানজিশনিং শেয়ার্ড এলিমেন্ট স্ক্রোল করা হচ্ছে, তখন স্ক্রোল ডেল্টা সরাসরি শেয়ার্ড এলিমেন্টে প্রয়োগ করা হবে, শেয়ার্ড এলিমেন্টগুলিকে নতুন টার্গেটের পিছনে ছুটতে বাধ্য করবে না। ( cacf7b )
সংস্করণ 1.9.0-alpha01
২৩ এপ্রিল, ২০২৫
androidx.compose.animation:animation-*:1.9.0-alpha01
প্রকাশিত হয়েছে। সংস্করণ 1.9.0-alpha01-এ এই কমিটগুলি রয়েছে।
আচরণগত পরিবর্তন
- এখন Compose এর সাথে পাঠানো Lint চেকের জন্য ন্যূনতম 8.8.2 AGP সংস্করণ প্রয়োজন। যদি আপনি AGP আপগ্রেড করতে না পারেন, তাহলে আপনি আপনার
gradle.properties
এandroid.experimental.lint.version=8.8.2
(অথবা একটি নতুন সংস্করণ) ব্যবহার করে Lint নিজেই আপগ্রেড করতে পারেন। IDE এর ভিতরে Compose lint চেক চালানোর জন্য, Android Studio Ladybug বা নতুন সংস্করণ প্রয়োজন।
নতুন বৈশিষ্ট্য
- শেয়ার করা উপাদানগুলির জন্য উন্নত স্ক্রলিং কর্মক্ষমতা ( ea4f1f )
API পরিবর্তনগুলি
- Kotlin 2.0 দিয়ে মুক্তিপ্রাপ্ত প্রকল্পগুলির জন্য KGP 2.0.0 বা তার নতুন সংস্করণ ব্যবহার করা প্রয়োজন। ( Idb6b5 )
-
TabRow
এবংScrollableTabRow
এর প্রাইমারি এবং সেকেন্ডারি ভেরিয়েন্টের জন্য অবচিত করা হয়েছে। প্রাইমারি এবং সেকেন্ডারি ট্যাব সারিগুলি আরও কার্যকর এবং স্পেকের জন্য নির্ভুল। ( I918e2 ) - রিসোর্সেস কোয়েরিতে
LocalResources
কম্পোজিশন যোগ করা হয়েছে। কনফিগারেশন পরিবর্তন হলেLocalResources.current
কল করলে তা পুনরায় কম্পোজ হবে, তাইstringResource()
এর মতো API গুলিতে কল করলে আপডেট করা মান ফিরে আসবে ( I50c13 , b/274786917 )
বাগ ফিক্স
- ট্রানজিশন শেষ হলে ওভারলে থেকে শেয়ার করা উপাদানগুলি বাদ দেওয়া হয়েছে তা নিশ্চিত করুন ( 35f359 )
- ট্রানজিশনে অতিরিক্ত পুনর্গঠন দূর করুন ( 988923 )
- চাইল্ড ট্রানজিশন ইন্টারাপ্ট হ্যান্ডলিং ঠিক করুন ( 8aed52 )
- একটি নতুন
TransitionState
প্রদান করা হলে ট্রানজিশন রিসেট করা হয়েছে তা নিশ্চিত করুন ( 57820a )
বহিরাগত অবদান
- কম্পোজ
1.8.1
থেকে: স্টিভেন শোয়েনের নতুন সময়কাল পেরিয়ে গেলেSeekableTransitionState
এ অ্যানিমেশন শেষ করুন। ( 0c832c )
সংস্করণ 1.8
সংস্করণ 1.8.3
১৮ জুন, ২০২৫
androidx.compose.animation:animation-*:1.8.3
প্রকাশিত হয়েছে। সংস্করণ 1.8.3-এ এই কমিটগুলি রয়েছে।
সংস্করণ 1.8.2
২০ মে, ২০২৫
androidx.compose.animation:animation-*:1.8.2
প্রকাশিত হয়েছে। সংস্করণ 1.8.2-এ এই কমিটগুলি রয়েছে।
সংস্করণ 1.8.1
৭ মে, ২০২৫
androidx.compose.animation:animation-*:1.8.1
প্রকাশিত হয়েছে। সংস্করণ 1.8.1-এ এই কমিটগুলি রয়েছে।
বহিরাগত অবদান
- নতুন সময়কাল পেরিয়ে গেলে
SeekableTransitionState
এ অ্যানিমেশনগুলি শেষ করুন। ধন্যবাদ স্টিভেন শোয়েন! ( fbcdf7 )
সংস্করণ 1.8.0
২৩ এপ্রিল, ২০২৫
androidx.compose.animation:animation-*:1.8.0
প্রকাশিত হয়েছে। সংস্করণ 1.8.0-এ এই কমিটগুলি রয়েছে।
১.৭.০ থেকে গুরুত্বপূর্ণ পরিবর্তনগুলি
- এই ব্লগপোস্টে ১.৮.০ সংস্করণের গুরুত্বপূর্ণ পরিবর্তনগুলি আলোচনা করা হয়েছে।
- লুকআহেড স্কোপের মধ্যে আকার এবং অবস্থানের পরিবর্তনগুলি অ্যানিমেট করার জন্য নতুন
Modifier.animateBounds
API। ( 94b939 ) - আর্কস এবং স্প্লাইন সহ কীফ্রেমের জন্য চূড়ান্ত API গুলি ( 89e119 )
-
LazyGrid
এবং Pager-এ Lookahead সমর্থিত। এর মধ্যে স্ক্রলিং, আইটেম কম্পোজিশন/ডিসপোজাল এবং আইটেম অ্যানিমেশনে Lookahead পাস বনাম অ্যাপ্রোচ পাসের মধ্যে পার্থক্য করা অন্তর্ভুক্ত, এবং স্ক্রোলিংয়ের জন্য সত্যের উৎসের জন্য Lookahead পাস এবং আইটেম অ্যানিমেশন টার্গেট ব্যবহার করা হয়। - শেয়ার করা এলিমেন্ট API গুলিতে ধারাবাহিকতার জন্য
sharedElement
প্যারামিটারের নামকরণ স্টেট থেকেsharedContentState
এ আপডেট করা হয়েছে। ( 9e7df5 ) -
AnimatedImageVector
API-এর স্যুট এখন স্থিতিশীল। ( 69d7e0 )
সংস্করণ 1.8.0-rc03
৯ এপ্রিল, ২০২৫
androidx.compose.animation:animation-*:1.8.0-rc03
প্রকাশিত হয়েছে। সংস্করণ 1.8.0-rc03-এ এই কমিটগুলি রয়েছে।
সংস্করণ 1.8.0-rc02
২৬ মার্চ, ২০২৫
androidx.compose.animation:animation-*:1.8.0-rc02
প্রকাশিত হয়েছে। সংস্করণ 1.8.0-rc02-এ এই কমিটগুলি রয়েছে।
সংস্করণ 1.8.0-rc01
১২ মার্চ, ২০২৫
androidx.compose.animation:animation-*:1.8.0-rc01
প্রকাশিত হয়েছে। সংস্করণ 1.8.0-rc01-এ এই কমিটগুলি রয়েছে।
বাগ ফিক্স
- চাইল্ড ট্রানজিশন ভুলভাবে বাধাগ্রস্ত হিসেবে চিহ্নিত করা হয়েছে তা ঠিক করা হয়েছে। ( 3fa2ce )
সংস্করণ 1.8.0-beta03
২৬ ফেব্রুয়ারী, ২০২৫
androidx.compose.animation:animation-*:1.8.0-beta03
প্রকাশিত হয়েছে। সংস্করণ 1.8.0-beta03-এ এই কমিটগুলি রয়েছে।
সংস্করণ 1.8.0-beta02
১২ ফেব্রুয়ারী, ২০২৫
androidx.compose.animation:animation-*:1.8.0-beta02
প্রকাশিত হয়েছে। সংস্করণ 1.8.0-beta02-এ এই কমিটগুলি রয়েছে।
সংস্করণ 1.8.0-beta01
২৯ জানুয়ারী, ২০২৫
androidx.compose.animation:animation-*:1.8.0-beta01
প্রকাশিত হয়েছে। সংস্করণ 1.8.0-beta01-এ এই কমিটগুলি রয়েছে।
সংস্করণ 1.8.0-alpha08
১৫ জানুয়ারী, ২০২৫
androidx.compose.animation:animation-*:1.8.0-alpha08
প্রকাশিত হয়েছে। সংস্করণ 1.8.0-alpha08-এ এই কমিটগুলি রয়েছে।
বাগ ফিক্স
-
MotionFrameOfReferencePlacement
রিসেট করার কারণেLazyGrid
এanimateBounds
থেকে ভুল প্লেসমেন্ট অ্যানিমেশন ঠিক করা হয়েছে। ( 16193b ) -
SharedTransitionLayout
এ অভ্যন্তরীণ কোয়েরিটি একটি শীর্ষ-স্তরের lookahead রুট থেকে lookahead পাসে পুনঃনির্দেশিত করে সমাধান করা হয়েছে। ( a07d12 ) - ডক্সে অনুপস্থিত
@param
ট্যাগ যোগ করা হয়েছে। ( e5cf67 )
সংস্করণ 1.8.0-alpha07
১১ ডিসেম্বর, ২০২৪
androidx.compose.animation:animation-*:1.8.0-alpha07
প্রকাশিত হয়েছে। সংস্করণ 1.8.0-alpha07-এ এই কমিটগুলি রয়েছে।
নতুন বৈশিষ্ট্য
- পেজারে লুকহেড সমর্থন করে, আইটেম ধরে রাখার এবং স্ক্রলিং গ্রহণের জন্য অ্যাপ্রোচ পাস থেকে লুকহেড পাসকে আলাদা করে। ( b/371802474 )
বাগ ফিক্স
- একটি বিরল ক্র্যাশ ঠিক করে যেখানে একটি শেয়ার্ড এলিমেন্ট তৈরি করা হয় কিন্তু কখনও পরিমাপ/স্থাপিত হয় না, ওভারলেতে রেন্ডার করার আগে শেয়ার্ড এলিমেন্টটিকে অন্তত একবার জায়গায় রেন্ডার করার প্রয়োজন হয়। ( b/371802474 )
সংস্করণ 1.8.0-alpha06
১৩ নভেম্বর, ২০২৪
androidx.compose.animation:animation-*:1.8.0-alpha06
প্রকাশিত হয়েছে। সংস্করণ 1.8.0-alpha06-এ এই কমিটগুলি রয়েছে।
API পরিবর্তনগুলি
- শেয়ার্ড এলিমেন্ট API গুলিতে ধারাবাহিকতার জন্য
sharedElement
প্যারামিটারের নামকরণstate
থেকেsharedContentState
এ আপডেট করা হয়েছে। ( I5694c , b/375351468 ) -
AnimatedImageVector
API-এর স্যুট এখন স্থিতিশীল। ( I7174b , b/261436267 )
সংস্করণ 1.8.0-alpha05
৩০ অক্টোবর, ২০২৪
androidx.compose.animation:animation-*:1.8.0-alpha05
প্রকাশিত হয়েছে। সংস্করণ 1.8.0-alpha05-এ এই কমিটগুলি রয়েছে।
নতুন বৈশিষ্ট্য
-
LazyGrid
এ এখন Lookahead সমর্থিত। এর মধ্যে স্ক্রলিং, আইটেম কম্পোজিশন/ডিসপোজাল এবং আইটেম অ্যানিমেশনে lookahead পাস বনাম অ্যাপ্রোচ পাসের মধ্যে পার্থক্য করা অন্তর্ভুক্ত রয়েছে এবং স্ক্রোলিংয়ের জন্য সত্যের উৎসের জন্য lookahead পাস এবং আইটেম অ্যানিমেশন টার্গেট ব্যবহার করা হয়।
বাগ ফিক্স
- ট্রানজিশন পুনরায় তৈরি করার সময়
AnimatedContent
এর আকার রূপান্তরের জন্য অভ্যন্তরীণ অবস্থা আপডেট করুন। এটি নিশ্চিত করে যে লক্ষ্য আকারের তথ্য সর্বদা আপ টু ডেট থাকে। ( b/372512085 )
সংস্করণ 1.8.0-alpha04
১৬ অক্টোবর, ২০২৪
androidx.compose.animation:animation-*:1.8.0-alpha04
প্রকাশিত হয়েছে। সংস্করণ 1.8.0-alpha04-এ এই কমিটগুলি রয়েছে।
বাগ ফিক্স
- নির্দিষ্ট সময়ের ভগ্নাংশে কিছু ইজিং কার্ভ ক্র্যাশ করার কারণে একটি বাগ সংশোধন করা হয়েছে।
- RTL এর অধীনে
Modifier.animateContentSize
এর জন্য অনুপযুক্ত সারিবদ্ধকরণের কারণ হওয়া একটি বাগ সংশোধন করা হয়েছে। ( Idae6b , b/372055503 )
সংস্করণ 1.8.0-alpha03
২ অক্টোবর, ২০২৪
androidx.compose.animation:animation-*:1.8.0-alpha03
প্রকাশিত হয়েছে। সংস্করণ 1.8.0-alpha03-এ এই কমিটগুলি রয়েছে।
API পরিবর্তনগুলি
- কোটলিন সংস্করণ 1.9 ( I1a14c ) এ আপডেট করা হয়েছে
বাগ ফিক্স
-
AnimatedContent
সাইজ অ্যানিমেশনের একটি সমস্যা সমাধানের জন্য, ধারাবাহিকতা নিশ্চিত করার জন্য সর্বদা ট্র্যাকিং এবং বর্তমান সাইজ থেকে অ্যানিমেশন শুরু করা হয়েছে।
সংস্করণ 1.8.0-alpha02
১৮ সেপ্টেম্বর, ২০২৪
androidx.compose.animation:animation-*:1.8.0-alpha02
প্রকাশিত হয়েছে। সংস্করণ 1.8.0-alpha02-এ এই কমিটগুলি রয়েছে।
সংস্করণ 1.8.0-alpha01
৪ সেপ্টেম্বর, ২০২৪
androidx.compose.animation:animation-*:1.8.0-alpha01
প্রকাশিত হয়েছে। সংস্করণ 1.8.0-alpha01-এ এই কমিটগুলি রয়েছে।
নতুন বৈশিষ্ট্য
- লুকআহেড স্কোপের মধ্যে আকার এবং অবস্থানের পরিবর্তনগুলি অ্যানিমেট করার জন্য নতুন
Modifier.animateBounds
API। 94b9394
API পরিবর্তনগুলি
- আর্কস এবং স্প্লাইন সহ কীফ্রেমগুলিতে পরীক্ষামূলক পতাকাগুলি সরান ( 89e1199 )
বাগ ফিক্স
- কোনও মিল না পেলে
placeHolderSize
লজিক এড়িয়ে যান ( 77c0160 ) - একঘেয়েমিহীনভাবে খেলার সময় বৃদ্ধির কারণে ক্র্যাশ রোধ করতে
AndroidFlingSpline
এ খেলার সময় ক্ল্যাম্প করুন ( 9d47587 ) - কিছু নির্দিষ্ট পরিস্থিতিতে ( b41077b6 )
SharedTransitionScope
আইটেম না আঁকছে তা ঠিক করুন
বহিরাগত অবদান
- স্টিভেন শোয়েনের লেখা, যখন কোনও ট্রানজিশন চলছে না, তখন সিকেবল ট্রানজিশন
playTime
সেট করা থেকে বিরত থাকুন। ( c2e6e7e6 )
সংস্করণ 1.7
সংস্করণ 1.7.8
১২ ফেব্রুয়ারী, ২০২৫
androidx.compose.animation:animation-*:1.7.8
প্রকাশিত হয়েছে। সংস্করণ 1.7.8-এ এই কমিটগুলি রয়েছে।
সংস্করণ 1.7.7
২৯ জানুয়ারী, ২০২৫
androidx.compose.animation:animation-*:1.7.7
প্রকাশিত হয়েছে। 1.7.6 থেকে কোনও পরিবর্তন হয়নি। 11 ডিসেম্বর, 2024
androidx.compose.animation:animation-*:1.7.6
প্রকাশিত হয়েছে। সংস্করণ 1.7.6-এ এই কমিটগুলি রয়েছে।
সংস্করণ 1.7.5
৩০ অক্টোবর, ২০২৪
androidx.compose.animation:animation-*:1.7.5
প্রকাশিত হয়েছে। সংস্করণ 1.7.5-এ এই কমিটগুলি রয়েছে।
বাগ ফিক্স
- RTL এর অধীনে
Modifier.animateContentSize
এর জন্য অনুপযুক্ত সারিবদ্ধকরণের কারণ হওয়া একটি বাগ সংশোধন করা হয়েছে। ( Idae6b , b/372055503 )
সংস্করণ 1.7.4
১৬ অক্টোবর, ২০২৪
androidx.compose.animation:animation-*:1.7.4
প্রকাশিত হয়েছে। সংস্করণ 1.7.4-এ এই কমিটগুলি রয়েছে।
সংস্করণ 1.7.3
২ অক্টোবর, ২০২৪
androidx.compose.animation:animation-*:1.7.3
প্রকাশিত হয়েছে। সংস্করণ 1.7.3-এ এই কমিটগুলি রয়েছে।
সংস্করণ 1.7.2
১৮ সেপ্টেম্বর, ২০২৪
androidx.compose.animation:animation-*:1.7.2
প্রকাশিত হয়েছে। সংস্করণ 1.7.2-এ এই কমিটগুলি রয়েছে।
বহিরাগত অবদান
- যখন কোনও ট্রানজিশন চলছে না তখন সিকেবল ট্রানজিশন
playTime
সেট করা থেকে বিরত থাকুন। ধন্যবাদ স্টিভেন শোয়েন! ( c2e6e7e6 )
সংস্করণ 1.7.1
১০ সেপ্টেম্বর, ২০২৪
- অ্যান্ড্রয়েড আর্টিফ্যাক্টগুলিতে কোনও পরিবর্তন করা হয়নি।
-desktop
আর্টিফ্যাক্টগুলি সরানো হয়েছে এবং-jvmStubs
এবং-linuxx64Stubs
আর্টিফ্যাক্টগুলি যুক্ত করা হয়েছে। এই টার্গেটগুলির কোনওটিই ব্যবহারের জন্য নয়, এগুলি জেটব্রেইনস কম্পোজ প্রচেষ্টায় সহায়তা করার জন্য স্থানধারক।
সংস্করণ 1.7.0
৪ সেপ্টেম্বর, ২০২৪
androidx.compose.animation:animation-*:1.7.0
প্রকাশিত হয়েছে।
১.৬.০ থেকে গুরুত্বপূর্ণ পরিবর্তনগুলি
এই ব্লগপোস্টে ১.৭.০ সংস্করণের গুরুত্বপূর্ণ পরিবর্তনগুলি আলোচনা করা হয়েছে।
নতুন শেয়ার্ড এলিমেন্ট ট্রানজিশন API গুলি
- নতুন শেয়ার্ড এলিমেন্ট ট্রানজিশন API গুলি আপনার ব্যবহার এবং প্রতিক্রিয়ার জন্য অপেক্ষা করছে। এই নতুন পরীক্ষামূলক API গুলি প্রদত্ত মডিফায়ার ব্যবহার করে লেআউট ট্রি জুড়ে শেয়ার্ড লেআউটগুলিকে ট্যাগিং সক্ষম করে, যখন শেয়ার্ড কন্টেন্টের একটি সেট বেরিয়ে যায় এবং অন্য সেট প্রবেশ করে তখন মসৃণভাবে সীমানা পরিবর্তন করে। ( Icb0b9 )
-
sharedBounds
( I731c1 ) -এ কন্টেন্ট স্কেল করার জন্য নতুনscaleInSharedContentToBounds
এবংscaleOutSharedContentToBounds
- এক্সপেরিমেন্টাল
SharedTransitionScope
এখন ক্লাসের পরিবর্তে একটি ইন্টারফেস। ( Iaf856 ) - স্কেলিং এবং রিমেজারের মধ্যে বেছে নেওয়ার জন্য
sharedBounds
জন্য নতুনresizeModes
(ScaleToBounds
এবংRemeasureToBounds
)। পূর্ববর্তীscaleIn/OutSharedContentToBounds
API গুলি এখন অবচিত। ( I0d41a )
বিদ্যমান API গুলিতে উন্নতি:
- নতুন
Modifier.animateContentSize
যা কাস্টম কন্টেন্ট অ্যালাইনমেন্টের জন্য একটি অতিরিক্ত প্যারামিটার নেয়। ( I5623a , b/269803907 ) - ইনস্ট্যান্সিয়েশনের সময় অজানা আকার, অবস্থান, অথবা অন্য কোনও লক্ষ্য অ্যানিমেট করার জন্য নতুন পরীক্ষামূলক
DeferredTargetAnimation
। ( I60745 ) -
SeekableTransitionState
snapTo()
seekTo()
দিয়ে প্রতিস্থাপন করে, এবং একটিsnapTo()
যোগ করে যা কোনও ধরণের অ্যানিমেশন ছাড়াই তাৎক্ষণিকভাবে অবস্থাটিকে একটি গন্তব্য অবস্থায় পরিবর্তন করে। - আপনি এখন
keyframesWithSpline
এ একটিperiodicBias
মান (Float) পাস করতে পারেন, এটি স্প্লাইনের প্রাথমিক এবং চূড়ান্ত বেগ সমান করে তুলবে। স্প্লাইন ব্যবহার করে পুনরাবৃত্তিযোগ্য অ্যানিমেশনের জন্য এটি কার্যকর। বায়াস নির্দেশ করে যে প্রতিটি বেগ (প্রাথমিক এবং চূড়ান্ত) পর্যায়ক্রমিকতা অর্জনের জন্য কতটা পরিবর্তন করা হয়েছে। ( Ic1e6c , b/292114811 )
নিম্নলিখিত API গুলি স্থিতিশীল হয়ে উঠেছে অথবা সরানো হয়েছে:
-
AnimatedVisibilityScope.transition
এখন একটি স্থিতিশীল API।Modifier.animateEnterExit(..)
কেও স্থিতিশীল করা হয়েছে। ( I6c1d1 ) -
ApproachLayoutModifierNode
এবংModifier.approachLayout
এখন স্থিতিশীল, পুরাতনisMeasurementApproachInProgress()
এবংisPlacementApproachInProgress()
যথাক্রমেisMeasurementApproachComplete()
এবংisPlacementApproachComplete()
প্রতিস্থাপনের জন্য নতুন isMeasurementApproachInProgress() ব্যবহার করা হচ্ছে। - অবচিত
intermediateLayout
মডিফায়ার সরানো হয়েছে। ( I3e91c ) -
LookaheadScope
API গুলিকে স্থিতিশীল করা হয়েছে। ( I21507 )
সংস্করণ 1.7.0-rc01
২১ আগস্ট, ২০২৪
androidx.compose.animation:animation-*:1.7.0-rc01
প্রকাশিত হয়েছে। সংস্করণ 1.7.0-rc01-এ এই কমিটগুলি রয়েছে।
সংস্করণ 1.7.0-beta07
৭ আগস্ট, ২০২৪
androidx.compose.animation:animation-*:1.7.0-beta07
প্রকাশিত হয়েছে। সংস্করণ 1.7.0-beta07-এ এই কমিটগুলি রয়েছে।
বাগ ফিক্স
- নির্দিষ্ট কিছু পরিস্থিতিতে ট্রানজিশনের সময় ওভারলে আইটেম না আঁকার জন্য
SharedTransitionScope
স্থির করা হয়েছে, যার মধ্যে সাধারণত নেভিগেশনের সাথে ব্যবহার অন্তর্ভুক্ত থাকবে। ( Id65ab , b/347520198 )
সংস্করণ 1.7.0-beta06
২৪ জুলাই, ২০২৪
androidx.compose.animation:animation-*:1.7.0-beta06
প্রকাশিত হয়েছে। সংস্করণ 1.7.0-beta06-এ এই কমিটগুলি রয়েছে।
বাগ ফিক্স
- ট্রানজিশনটি নিষ্পত্তি হওয়ার পরে
SnapshotStateObserver
থেকে পর্যবেক্ষণগুলি সঠিকভাবে পরিষ্কার করেSeekableTransition
লিক হওয়া ট্রানজিশন অবস্থাগুলি ঠিক করুন। ( b9c7182 ) - ফিক্সড এজ কেস যেখানে চাইল্ড ট্রানজিশনগুলি সঠিকভাবে সম্পূর্ণ হিসাবে চিহ্নিত করা হয় না যখন পিতামাতা সম্পূর্ণ করে। ( dc42216 )
সংস্করণ 1.7.0-beta05
১০ জুলাই, ২০২৪
androidx.compose.animation:animation-*:1.7.0-beta05
প্রকাশিত হয়েছে। সংস্করণ 1.7.0-beta05-এ এই কমিটগুলি রয়েছে।
বাগ ফিক্স
- Transition প্রোপার্টি
totalDurationNanos
এখন একটিsnapshotFlow
মধ্যে সঠিকভাবে পড়া যাবে।
সংস্করণ 1.7.0-beta04
২৬ জুন, ২০২৪
androidx.compose.animation:animation-*:1.7.0-beta04
প্রকাশিত হয়েছে। সংস্করণ 1.7.0-beta04-এ এই কমিটগুলি রয়েছে।
সংস্করণ 1.7.0-beta03
১২ জুন, ২০২৪
androidx.compose.animation:animation-*:1.7.0-beta03
প্রকাশিত হয়েছে। সংস্করণ 1.7.0-beta03-এ এই কমিটগুলি রয়েছে।
সংস্করণ 1.7.0-beta02
২৯ মে, ২০২৪
androidx.compose.animation:animation-*:1.7.0-beta02
প্রকাশিত হয়েছে। সংস্করণ 1.7.0-beta02-এ এই কমিটগুলি রয়েছে।
সংস্করণ 1.7.0-beta01
১৪ মে, ২০২৪
androidx.compose.animation:animation-*:1.7.0-beta01
প্রকাশিত হয়েছে। সংস্করণ 1.7.0-beta01-এ এই কমিটগুলি রয়েছে।
API পরিবর্তনগুলি
- স্কেলিং এবং রিমেজারের মধ্যে বেছে নেওয়ার জন্য
sharedBounds
জন্য নতুনresizeModes
(ScaleToBounds
এবংRemeasureToBounds
)। পূর্ববর্তীscaleIn/OutSharedContentToBounds
API গুলি এখন অবচিত। ( I0d41a )
বহিরাগত অবদান
- এক্সপেরিমেন্টাল
SharedTransitionScope
এখন স্টিভেন শোয়েনের ক্লাসের পরিবর্তে একটি ইন্টারফেস। ( Iaf856 , b/338415048 , b/338414702 )
সংস্করণ 1.7.0-alpha08
১ মে, ২০২৪
androidx.compose.animation:animation-*:1.7.0-alpha08
প্রকাশিত হয়েছে। সংস্করণ 1.7.0-alpha08-এ এই কমিটগুলি রয়েছে।
API পরিবর্তনগুলি
-
LookaheadScope
API গুলিকে স্থিতিশীল করা হয়েছে। ( I21507 )
বহিরাগত অবদান
- স্টিভেন শোয়েন ( 1ca89529 ) এর লেখা
SeekableTransitionState
অ্যানিমেট/স্ন্যাপের পরে অ্যানিমেশন শুরুর সময় পরিষ্কার করুন।
সংস্করণ 1.7.0-alpha07
১৭ এপ্রিল, ২০২৪
androidx.compose.animation:animation-*:1.7.0-alpha07
প্রকাশিত হয়েছে। সংস্করণ 1.7.0-alpha07-এ এই কমিটগুলি রয়েছে।
নতুন বৈশিষ্ট্য
- নতুন শেয়ার্ড এলিমেন্ট ট্রানজিশন API গুলি আপনার ব্যবহার এবং প্রতিক্রিয়ার জন্য অপেক্ষা করছে। এই নতুন পরীক্ষামূলক API গুলি প্রদত্ত মডিফায়ার ব্যবহার করে লেআউট ট্রি জুড়ে শেয়ার্ড লেআউটগুলিকে ট্যাগিং সক্ষম করে, যখন শেয়ার্ড কন্টেন্টের একটি সেট বেরিয়ে যায় এবং অন্য সেট প্রবেশ করে তখন মসৃণভাবে সীমানা পরিবর্তন করে। ( Icb0b9 )
-
sharedBounds
( I731c1 ) -এ কন্টেন্ট স্কেল করার জন্য নতুনscaleInSharedContentToBounds
এবংscaleOutSharedContentToBounds
API পরিবর্তনগুলি
-
AnimatedVisibilityScope.transition
এখন একটি স্থিতিশীল API।Modifier.animateEnterExit(..)
কেও স্থিতিশীল করা হয়েছে। ( I6c1d1 ) -
ApproachLayoutModifierNode
এবংModifier.approachLayout
এখন স্থিতিশীল, পুরাতনisMeasurementApproachInProgress()
এবংisPlacementApproachInProgress()
যথাক্রমেisMeasurementApproachComplete()
এবংisPlacementApproachComplete()
প্রতিস্থাপনের জন্য নতুন isMeasurementApproachInProgress() ব্যবহার করা হচ্ছে। - অবচিত
intermediateLayout
মডিফায়ার সরানো হয়েছে। ( I3e91c ) - আপনি এখন
keyframesWithSpline
এ একটিperiodicBias
মান (Float) পাস করতে পারেন, এটি স্প্লাইনের প্রাথমিক এবং চূড়ান্ত বেগ সমান করে তুলবে। স্প্লাইন ব্যবহার করে পুনরাবৃত্তিযোগ্য অ্যানিমেশনের জন্য এটি কার্যকর। বায়াস নির্দেশ করে যে প্রতিটি বেগ (প্রাথমিক এবং চূড়ান্ত) পর্যায়ক্রমিকতা অর্জনের জন্য কতটা পরিবর্তন করা হয়েছে। ( Ic1e6c , b/292114811 )
বাগ ফিক্স
- স্থির ওভার-শুটিং এবং আন্ডার-শুটিং ইজিং কার্ভ যা পূর্বে 0..1 ( I38747 ) এ ক্ল্যাম্প করা হত।
সংস্করণ 1.7.0-alpha06
৩ এপ্রিল, ২০২৪
androidx.compose.animation:animation-*:1.7.0-alpha06
প্রকাশিত হয়েছে। সংস্করণ 1.7.0-alpha06-এ এই কমিটগুলি রয়েছে।
নতুন বৈশিষ্ট্য
-
LazyColumn
এবংLazyRow
তে আইটেমের উপস্থিতি এবং অন্তর্ধান অ্যানিমেশন সমর্থন যোগ করা হয়েছে। পূর্বে প্লেসমেন্ট (পুনঃক্রম) অ্যানিমেশন সমর্থন করার জন্যModifier.animateItemPlacement()
মডিফায়ার যোগ করা সম্ভব ছিল। আমরা এই মডিফায়ারটি বাতিল করে দিয়েছি এবংModifier.animateItem()
নামে একটি নতুন অ-পরীক্ষামূলক মডিফায়ার চালু করেছি যা আপনাকে তিনটি ধরণের অ্যানিমেশন সমর্থন করতে দেয়: উপস্থিতি (বিবর্ণ), অন্তর্ধান (বিবর্ণ) এবং পুনর্ক্রম। ( I2d7f7 , b/330152398 , b/150812265 )
বাগ ফিক্স
-
updateTransition
API-এর উন্নত কর্মক্ষমতা।
সংস্করণ 1.7.0-alpha05
২০ মার্চ, ২০২৪
androidx.compose.animation:animation-*:1.7.0-alpha05
প্রকাশিত হয়েছে। সংস্করণ 1.7.0-alpha05-এ এই কমিটগুলি রয়েছে।
API পরিবর্তনগুলি
-
SeekableTransitionState
snapTo()
seekTo()
দিয়ে প্রতিস্থাপন করে, এবং একটিsnapTo()
যোগ করে যা কোনও ধরণের অ্যানিমেশন ছাড়াই তাৎক্ষণিকভাবে অবস্থাটিকে একটি গন্তব্য অবস্থায় পরিবর্তন করে।
সংস্করণ 1.7.0-alpha04
৬ মার্চ, ২০২৪
androidx.compose.animation:animation-*:1.7.0-alpha04
প্রকাশিত হয়েছে। সংস্করণ 1.7.0-alpha04-এ এই কমিটগুলি রয়েছে।
API পরিবর্তনগুলি
- একটি পথের দিক বিপরীত করার জন্য নতুন API
Path.reverse()
( I36348 )
সংস্করণ 1.7.0-alpha03
২১ ফেব্রুয়ারী, ২০২৪
androidx.compose.animation:animation-*:1.7.0-alpha03
প্রকাশিত হয়েছে। সংস্করণ 1.7.0-alpha03-এ এই কমিটগুলি রয়েছে।
নতুন বৈশিষ্ট্য
- নতুন
Modifier.animateContentSize
যা কাস্টম কন্টেন্ট অ্যালাইনমেন্টের জন্য একটি অতিরিক্ত প্যারামিটার নেয়। ( I5623a , b/269803907 ) - ইনস্ট্যান্সিয়েশনের সময় অজানা আকার, অবস্থান, অথবা অন্য কোনও লক্ষ্য অ্যানিমেট করার জন্য নতুন পরীক্ষামূলক
DeferredTargetAnimation
। ( I60745 )
সংস্করণ 1.7.0-alpha02
৭ ফেব্রুয়ারী, ২০২৪
androidx.compose.animation:animation-*:1.7.0-alpha02
প্রকাশিত হয়েছে। সংস্করণ 1.7.0-alpha02-এ এই কমিটগুলি রয়েছে।
বাগ ফিক্স
-
KeyframesSpec
জন্য সামঞ্জস্যতা সংশোধন। ( I2bdf3 , b/322214617 ) -
LazyList
এ ব্যবহার করার সময়Modifier.animateContentSize
সঠিকভাবে রিসেট না হওয়া ঠিক করা হয়েছে। ( I070512 , b/322525716 ) - রেঞ্জের বাইরের টাইমস্ট্যাম্প ব্যবহার করার সময়
KeyframesSpec
এIllegalStateException
ঠিক করা হয়েছে। ( I341b8 , b/322839811 )
সংস্করণ 1.7.0-alpha01
২৪ জানুয়ারী, ২০২৪
androidx.compose.animation:animation-*:1.7.0-alpha01
প্রকাশিত হয়েছে। সংস্করণ 1.7.0-alpha01-এ এই কমিটগুলি রয়েছে।
সংস্করণ 1.6
সংস্করণ 1.6.8
১২ জুন, ২০২৪
androidx.compose.animation:animation-*:1.6.8
প্রকাশিত হয়েছে। সংস্করণ 1.6.8-এ এই কমিটগুলি রয়েছে।
সংস্করণ 1.6.7
১ মে, ২০২৪
androidx.compose.animation:animation-*:1.6.7
প্রকাশিত হয়েছে। সংস্করণ 1.6.7-এ এই কমিটগুলি রয়েছে।
সংস্করণ 1.6.6
১৭ এপ্রিল, ২০২৪
androidx.compose.animation:animation-*:1.6.6
প্রকাশিত হয়েছে। পূর্ববর্তী প্রকাশের পর থেকে কোনও পরিবর্তন হয়নি
সংস্করণ 1.6.5
৩ এপ্রিল, ২০২৪
androidx.compose.animation:animation-*:1.6.5
প্রকাশিত হয়েছে। সংস্করণ 1.6.5-এ এই কমিটগুলি রয়েছে।
সংস্করণ 1.6.4
২০ মার্চ, ২০২৪
androidx.compose.animation:animation-*:1.6.4
প্রকাশিত হয়েছে। সংস্করণ 1.6.4-এ এই কমিটগুলি রয়েছে।
সংস্করণ 1.6.3
৬ মার্চ, ২০২৪
androidx.compose.animation:animation-*:1.6.3
প্রকাশিত হয়েছে। সংস্করণ 1.6.3-এ এই কমিটগুলি রয়েছে।
সংস্করণ 1.6.2
২১ ফেব্রুয়ারী, ২০২৪
androidx.compose.animation:animation-*:1.6.2
প্রকাশিত হয়েছে। সংস্করণ 1.6.2-এ এই কমিটগুলি রয়েছে।
সংস্করণ 1.6.1
৭ ফেব্রুয়ারী, ২০২৪
androidx.compose.animation:animation-*:1.6.1
প্রকাশিত হয়েছে। সংস্করণ 1.6.1-এ এই কমিটগুলি রয়েছে।
বাগ ফিক্স
-
KeyframesSpec
জন্য সামঞ্জস্যতা সংশোধন। ( I2bdf3 , b/322214617 )
সংস্করণ 1.6.0
২৪ জানুয়ারী, ২০২৪
androidx.compose.animation:animation-*:1.6.0
প্রকাশিত হয়েছে। সংস্করণ 1.6.0-এ এই কমিটগুলি রয়েছে।
সংস্করণ 1.6.0-rc01
১০ জানুয়ারী, ২০২৪
androidx.compose.animation:animation-*:1.6.0-rc01
প্রকাশিত হয়েছে। সংস্করণ 1.6.0-rc01-এ এই কমিটগুলি রয়েছে।
সংস্করণ 1.6.0-beta03
১৩ ডিসেম্বর, ২০২৩
androidx.compose.animation:animation-*:1.6.0-beta03
প্রকাশিত হয়েছে। সংস্করণ 1.6.0-beta03-এ এই কমিটগুলি রয়েছে।
API পরিবর্তনগুলি
-
AnimatedContentTransitionScope
থেকেscaleInToFitContainer
এবংscaleOutToFitContainer
সাময়িকভাবে সরিয়ে ফেলা হয়েছে কারণ তাদের জন্য lookahead প্রয়োজন। lookahead ডিফল্টভাবে চালু থাকলে বা ভবিষ্যতের রিলিজে অপ্ট-ইন করা থাকলে এগুলি উপলব্ধ থাকবে।
সংস্করণ 1.6.0-beta02
২৯ নভেম্বর, ২০২৩
androidx.compose.animation:animation-*:1.6.0-beta02
প্রকাশিত হয়েছে। সংস্করণ 1.6.0-beta02-এ এই কমিটগুলি রয়েছে।
সংস্করণ 1.6.0-beta01
১৫ নভেম্বর, ২০২৩
androidx.compose.animation:animation-*:1.6.0-beta01
প্রকাশিত হয়েছে। সংস্করণ 1.6.0-beta01-এ এই কমিটগুলি রয়েছে।
API পরিবর্তনগুলি
- আরও স্পষ্ট করে বলতে
ExitTransition.Hold
এর নাম পরিবর্তন করেExitTransition.KeepUntilTransitionsFinished
রাখা হয়েছে। ( I1c490 ) - আপনি এখন monotonic splines ব্যবহার করে যেকোনো N-মাত্রিক মান ইন্টারপোলেট করতে
keyframesWithSpline
ব্যবহার করতে পারেন। এটি বিশেষ করেOffset
,IntOffset
,DpOffset
এর মতো অবস্থানগত মান ইন্টারপোলেট করার জন্য কার্যকর। পরীক্ষামূলক API হিসেবে যোগ করা হয়েছে।
বাগ ফিক্স
-
ArcLine
এ Sweep Gradient-এর জন্য রেন্ডারার সাপোর্ট যোগ করুন। ( I4d5bb ) -
PageSize.Fixed
জন্য equals এবং হ্যাশকোড প্রয়োগ করুন। ( Ie3ede , b/300134276 ) - উইন্ডো ইনসেট পরিবর্তনের মাধ্যমে বাইনারি সামঞ্জস্যের সমস্যা সমাধান করুন। ( Iee695 )
- ম্যাটেরিয়াল৩ চিপ/বোতামের জন্য ম্যাটেরিয়াল কোর লেয়ারটি সরিয়ে ফেলুন কারণ মাইক্রোবেঞ্চমার্কগুলি এটি ছাড়াই আরও ভালো পারফরম্যান্স দেখায়। ( I55555 )
সংস্করণ 1.6.0-alpha08
১৮ অক্টোবর, ২০২৩
androidx.compose.animation:animation-*:1.6.0-alpha08
প্রকাশিত হয়েছে। সংস্করণ 1.6.0-alpha08-এ এই কমিটগুলি রয়েছে।
API পরিবর্তনগুলি
-
KeyframesSpecConfig#with
KeyframesSpecConfig#using
এর সাথে বাতিল করা হয়েছে যা বিল্ডার প্যাটার্ন সংরক্ষণ করে। ( I1d769 )
সংস্করণ 1.6.0-alpha07
৪ অক্টোবর, ২০২৩
androidx.compose.animation:animation-*:1.6.0-alpha07
প্রকাশিত হয়েছে। সংস্করণ 1.6.0-alpha07-এ এই কমিটগুলি রয়েছে।
API পরিবর্তনগুলি
- স্থির এবং স্ক্রোলযোগ্য ট্যাবগুলিতে এখন প্রাথমিক এবং মাধ্যমিক রূপ রয়েছে। এগুলি Material3-এ সংজ্ঞায়িত রঙ এবং সূচক আচরণের সাথে সঠিকভাবে ম্যাপ করে।
-
PrimaryScrollableTabRow
এবংSecondaryScrollableTabRow
এখন স্ক্রোল অবস্থা প্রকাশ করে। ( Iec8f5 , b/260572337 )
সংস্করণ 1.6.0-alpha06
২০ সেপ্টেম্বর, ২০২৩
androidx.compose.animation:animation-*:1.6.0-alpha06
প্রকাশিত হয়েছে। সংস্করণ 1.6.0-alpha06-এ এই কমিটগুলি রয়েছে।
সংস্করণ 1.6.0-alpha05
৬ সেপ্টেম্বর, ২০২৩
androidx.compose.animation:animation-*:1.6.0-alpha05
প্রকাশিত হয়েছে। সংস্করণ 1.6.0-alpha05-এ এই কমিটগুলি রয়েছে।
API পরিবর্তনগুলি
- একটি ইজিং কার্ভে একটি ইচ্ছামত পাথ সরবরাহ করার জন্য
PathEasing
যোগ করা হয়েছে। ( Idb4b9 )
সংস্করণ 1.6.0-alpha04
২৩ আগস্ট, ২০২৩
androidx.compose.animation:animation-*:1.6.0-alpha04
প্রকাশিত হয়েছে। সংস্করণ 1.6.0-alpha04-এ এই কমিটগুলি রয়েছে।
API পরিবর্তনগুলি
- ডেভেলপারদের একটি ট্রানজিশনের অগ্রগতি নিয়ন্ত্রণ করার অনুমতি দিতে
SeekableTransitionState
যোগ করুন। ( I8e69d )
সংস্করণ 1.6.0-alpha03
৯ আগস্ট, ২০২৩
androidx.compose.animation:animation-*:1.6.0-alpha03
প্রকাশিত হয়েছে। সংস্করণ 1.6.0-alpha03-এ এই কমিটগুলি রয়েছে।
API পরিবর্তনগুলি
- নতুন ধরণের এন্টার/এক্সিট ট্রানজিশন যা এন্টার এবং এক্সিট অ্যানিমেশনের সময় অ্যানিমেটিং কন্টেইনারের আকারের উপর ভিত্তি করে কন্টেন্ট স্কেল করে।
LookaheadScope
কম্পোজেবল মজা এবং ইন্টারফেস এখন স্থিতিশীল। ( Ifb2ce )
সংস্করণ 1.6.0-alpha02
২৬ জুলাই, ২০২৩
androidx.compose.animation:animation-*:1.6.0-alpha02
প্রকাশিত হয়েছে। সংস্করণ 1.6.0-alpha02-এ এই কমিটগুলি রয়েছে।
API পরিবর্তনগুলি
- নতুন
ExitTransition.Hold
AnimatedContent
এ বহির্গামী কন্টেন্ট প্রদর্শনের জন্য ধরে রাখুন যতক্ষণ না প্রবেশ এবং প্রস্থান উভয়ই স্থানান্তর সম্পন্ন হয়। ( I5984f ) - কম্পোজেবলগুলিতে অনুমোদিত ইনপুট নির্দিষ্ট করার জন্য অতিরিক্ত টীকা ( I51109 )
সংস্করণ 1.6.0-alpha01
২১ জুন, ২০২৩
androidx.compose.animation:animation-*:1.6.0-alpha01
প্রকাশিত হয়েছে। সংস্করণ 1.6.0-alpha01-এ এই কমিটগুলি রয়েছে।
নতুন বৈশিষ্ট্য
- লুকহেড পাসে টার্গেট সাইজ রিপোর্ট করে লুকহেড সিস্টেমে সম্পূর্ণরূপে সংহত করার জন্য
Modifier.animateContentSize
এবংAnimatedVisibility
সক্ষম করুন।
API পরিবর্তনগুলি
-
IntrinsincMeasureScope
এবং এর বাস্তবায়নে (যেমনMeasureScope
) নতুন বৈশিষ্ট্য যা বর্তমান পরিমাপ পাসটি একটি লুকআহেড পাস কিনা তা নির্দেশ করে। ( I7a812 )
বাগ ফিক্স
- বসন্ত অ্যানিমেশন থেকে বরাদ্দ সরানো হয়েছে। ( Ie9431 )
- Enum.valueOf এর জন্য মান প্যারামিটারের নাম পরিবর্তিত হয়েছে ( Ia9b89 )
- enum valueOf ( I818fe ) থেকে আরও থ্রোন করা ব্যতিক্রম
সংস্করণ 1.5
সংস্করণ 1.5.4
১৮ অক্টোবর, ২০২৩
androidx.compose.animation:animation-*:1.5.4
প্রকাশিত হয়েছে। সংস্করণ 1.5.4-এ এই কমিটগুলি রয়েছে।
সংস্করণ 1.5.3
৪ অক্টোবর, ২০২৩
androidx.compose.animation:animation-*:1.5.3
প্রকাশিত হয়েছে। এই সংস্করণে কোনও পরিবর্তন নেই।
সংস্করণ 1.5.2
২৭ সেপ্টেম্বর, ২০২৩
androidx.compose.animation:animation-*:1.5.2
প্রকাশিত হয়েছে। সংস্করণ 1.5.2-এ এই কমিটগুলি রয়েছে।
সংস্করণ 1.5.1
৬ সেপ্টেম্বর, ২০২৩
androidx.compose.foundation:foundation-*:1.5.1
প্রকাশিত হয়েছে। সংস্করণ 1.5.1-এ এই কমিটগুলি রয়েছে।
বাগ ফিক্স
-
readOnly
সত্য হলে কীবোর্ড দেখানো এবং সম্পাদনাযোগ্য করার জন্য টেক্সট ফিল্ডগুলি ঠিক করা হয়েছে। ফোকাস করার সময়readOnly
সত্য থেকে মিথ্যাতে পরিবর্তন করলে কীবোর্ড না দেখানোর জন্যও সংশোধন করা হয়েছে। ( I34a19 , b/246909589 )
সংস্করণ 1.5.1
৬ সেপ্টেম্বর, ২০২৩
androidx.compose.animation:animation-*:1.5.1
প্রকাশিত হয়েছে। সংস্করণ 1.5.1-এ এই কমিটগুলি রয়েছে।
সংস্করণ 1.5.0
৯ আগস্ট, ২০২৩
androidx.compose.animation:animation-*:1.5.0
প্রকাশিত হয়েছে। সংস্করণ 1.5.0-এ এই কমিটগুলি রয়েছে।
সংস্করণ 1.5.0-rc01
২৬ জুলাই, ২০২৩
androidx.compose.animation:animation-*:1.5.0-rc01
প্রকাশিত হয়েছে। সংস্করণ 1.5.0-rc01-এ এই কমিটগুলি রয়েছে।
বাগ ফিক্স
একটি সমস্যা সমাধান করা হয়েছে যেখানে একটি আদিম অবস্থা টাইপ (যেমন
MutableIntState
) তে.value
কল করলে একটি অবৈধ সংশোধন সহ একটি লিন্ট সতর্কতা রিপোর্ট করা হত। পরিদর্শন এখন সঠিক সম্পত্তিতে স্থানান্তর করার সুপারিশ করবে। ( Iba953 , b/287279257 )mutableStateOf()
কলগুলিকে প্রিমিটিভের জন্য সংশ্লিষ্ট বিশেষ ধরণের কলগুলিতে স্থানান্তর করার সুপারিশ করার জন্য একটি ঐচ্ছিক পরিদর্শন উপলব্ধ। এর লিন্ট আইডি হলAutoboxingStateCreation
। পূর্বে, এই পরিদর্শনটি সমস্ত প্রকল্পের জন্য ডিফল্টরূপে সক্ষম ছিল। Android Studio এর সম্পাদক এবং আপনার প্রকল্পের লিন্ট আউটপুটগুলিতে এই সতর্কতাটি দেখতে, আপনার মডিউলেরbuild.gradle
বাbuild.gradle.kts
কনফিগারেশনের মধ্যেwarning "AutoboxingStateCreation"
ঘোষণা করে এর তীব্রতা তথ্যমূলক থেকে সতর্কতা (অথবা উচ্চতর) এ পরিবর্তন করুন যেমন দেখানো হয়েছে ( I34f7e ):android { lint { warning "AutoboxingStateCreation" } ... }
সংস্করণ 1.5.0-beta03
২৮ জুন, ২০২৩
androidx.compose.animation:animation-*:1.5.0-beta03
প্রকাশিত হয়েছে। সংস্করণ 1.5.0-beta03-এ এই কমিটগুলি রয়েছে।
সংস্করণ 1.5.0-beta02
৭ জুন, ২০২৩
androidx.compose.animation:animation-*:1.5.0-beta02
প্রকাশিত হয়েছে। সংস্করণ 1.5.0-beta02-এ এই কমিটগুলি রয়েছে।
সংস্করণ 1.5.0-beta01
২৪ মে, ২০২৩
androidx.compose.animation:animation-*:1.5.0-beta01
প্রকাশিত হয়েছে। সংস্করণ 1.5.0-beta01-এ এই কমিটগুলি রয়েছে।
API পরিবর্তনগুলি
- রিকম্পোজিশন, কালার অ্যানিমেশন এবং
AndroidComposeView
( Ib2bfa ) থেকে বরাদ্দ সরানো হয়েছে।
বাগ ফিক্স
- স্প্রিং অ্যানিমেশন থেকে বরাদ্দ সরানো হয়েছে ( Ie9431 )
সংস্করণ 1.5.0-alpha04
১০ মে, ২০২৩
androidx.compose.animation:animation-*:1.5.0-alpha04
প্রকাশিত হয়েছে। সংস্করণ 1.5.0-alpha04-এ এই কমিটগুলি রয়েছে।
API পরিবর্তনগুলি
-
ContentKey
এখনAnimatedContent
এ সমর্থিত, যাতে কখন ট্রানজিশন হবে তা আরও নিয়ন্ত্রণ করা যায়। ( Ic069b )
সংস্করণ 1.5.0-alpha03
১৯ এপ্রিল, ২০২৩
androidx.compose.animation:animation-*:1.5.0-alpha03
প্রকাশিত হয়েছে। সংস্করণ 1.5.0-alpha03-এ এই কমিটগুলি রয়েছে।
নতুন বৈশিষ্ট্য
-
LookaheadScope
এSubcomposeLayout
জন্য নতুন ডিফল্ট আচরণ। এটিSubcomposeLayouts
গুলিকে শর্তসাপেক্ষ স্লট ছাড়াই (যেমনTabRow
,Scaffold
,BoxWithConstraints
, ইত্যাদি) lookahead অ্যানিমেশনের সাথে সুন্দরভাবে কাজ করার অনুমতি দেয়।
API পরিবর্তনগুলি
- নতুন ডিফল্ট
intermediateMeasurePolicy
যা lookahead পাস থেকে পরিমাপ নীতি পুনঃব্যবহার করে,SubcomposeLayout
সাবটাইপগুলিকে শর্তসাপেক্ষ স্লট ছাড়াই যেমনScaffold
,TabRow
, এবংBoxWithConstraints
ডিফল্টরূপে lookahead এর সাথে কাজ করার অনুমতি দেয়। ( Id84c8 ) - এন্টার এবং এক্সিট ট্রানজিশন একত্রিত করার জন্য infix fun এর নাম পরিবর্তন করে
togetherWith
করুন। ল্যাম্বডা কন্টেন্টের রিসিভার হিসেবে নতুনAnimatedContentScope
। ( Ic39ae )
সংস্করণ 1.5.0-alpha02
৫ এপ্রিল, ২০২৩
androidx.compose.animation:animation-*:1.5.0-alpha02
প্রকাশিত হয়েছে। সংস্করণ 1.5.0-alpha02-এ এই কমিটগুলি রয়েছে।
নতুন বৈশিষ্ট্য
-
SubcomposeLayout
এ lookahead সমর্থন করার জন্য নতুন পরীক্ষামূলক API। এটিSubcomposeLayout
LookaheadScope
এ সঠিকভাবে কাজ করার অনুমতি দেবে।SubcomposeLayout
এর নির্দিষ্ট সাবটাইপের জন্য আরও আউট-অফ-দ্য-বক্স সমর্থন শীঘ্রই আসবে।
API পরিবর্তনগুলি
- নতুন
SubcomposeLayout
API যা লুকহেড-ভিত্তিক অ্যানিমেশনের সময় পরিমাপ/লেআউট লজিক পরিচালনার জন্য একটি অতিরিক্ত মধ্যবর্তী পরিমাপ নীতি গ্রহণ করে। ( I017d3 )
সংস্করণ 1.5.0-alpha01
২২ মার্চ, ২০২৩
androidx.compose.animation:animation-*:1.5.0-alpha01
প্রকাশিত হয়েছে। সংস্করণ 1.5.0-alpha01-এ এই কমিটগুলি রয়েছে।
API পরিবর্তনগুলি
-
AnimatedContent
APIs are now stableAnimatedContentScope
has been renamed toAnimatedContentTransitionScope
.scaleIn
andscaleOut
are now stable APIs. ( Iaf54e )
সংস্করণ 1.4
সংস্করণ 1.4.3
৩ মে, ২০২৩
androidx.compose.animation:animation:1.4.3
, androidx.compose.animation:animation-core:1.4.3
, and androidx.compose.animation:animation-graphics:1.4.3
are released with no changes (only a version bump).
Version 1.4.2
১৯ এপ্রিল, ২০২৩
androidx.compose.animation:animation:1.4.2
, androidx.compose.animation:animation-core:1.4.2
, and androidx.compose.animation:animation-graphics:1.4.2
are released with no changes. Version 1.4.2 contains these commits.
Version 1.4.1
৫ এপ্রিল, ২০২৩
androidx.compose.animation:animation:1.4.1
, androidx.compose.animation:animation-core:1.4.1
, and androidx.compose.animation:animation-graphics:1.4.1
are released with no changes. Version 1.4.1 contains these commits.
Version 1.4.0
২২ মার্চ, ২০২৩
androidx.compose.animation:animation:1.4.0
, androidx.compose.animation:animation-core:1.4.0
, and androidx.compose.animation:animation-graphics:1.4.0
are released. Version 1.4.0 contains these commits.
Important changes since 1.3.0
- Tooling label is supported in r
ememberInfiniteTransition
and all the extension functions onInfiniteTransition
and Transition (egInfiniteTransition#animateColor
) ( I56ef7 )
সংস্করণ 1.4.0-rc01
৮ মার্চ, ২০২৩
androidx.compose.animation:animation:1.4.0-rc01
, androidx.compose.animation:animation-core:1.4.0-rc01
, and androidx.compose.animation:animation-graphics:1.4.0-rc01
are released with no changes. Version 1.4.0-rc01 contains these commits.
Version 1.4.0-beta02
২২ ফেব্রুয়ারী, ২০২৩
androidx.compose.animation:animation:1.4.0-beta02
, androidx.compose.animation:animation-core:1.4.0-beta02
, and androidx.compose.animation:animation-graphics:1.4.0-beta02
are released with no changes. Version 1.4.0-beta02 contains these commits.
সংস্করণ 1.4.0-beta01
৮ ফেব্রুয়ারী, ২০২৩
androidx.compose.animation:animation:1.4.0-beta01
, androidx.compose.animation:animation-core:1.4.0-beta01
, and androidx.compose.animation:animation-graphics:1.4.0-beta01
are released with no changes. Version 1.4.0-beta01 contains these commits.
Version 1.4.0-alpha05
January 25, 2023
androidx.compose.animation:animation:1.4.0-alpha05
, androidx.compose.animation:animation-core:1.4.0-alpha05
, and androidx.compose.animation:animation-graphics:1.4.0-alpha05
are released. Version 1.4.0-alpha05 contains these commits.
পরিবর্তন
- No changes in animation libraries since the last alpha, version bump only
Version 1.4.0-alpha04
১১ জানুয়ারী, ২০২৩
androidx.compose.animation:animation:1.4.0-alpha04
, androidx.compose.animation:animation-core:1.4.0-alpha04
, and androidx.compose.animation:animation-graphics:1.4.0-alpha04
are released. Version 1.4.0-alpha04 contains these commits.
নতুন বৈশিষ্ট্য
- Tooling label is supported in
rememberInfiniteTransition
and all the extension functions onInfiniteTransition
andTransition
(egInfiniteTransition#animateColor
) ( I56ef7 )
API পরিবর্তনগুলি
-
InfiniteTransition#TransitionAnimationState
andInfiniteTransition#animations
APIs are now public. ( I36682 )
সংস্করণ 1.4.0-alpha03
৭ ডিসেম্বর, ২০২২
androidx.compose.animation:animation:1.4.0-alpha03
, androidx.compose.animation:animation-core:1.4.0-alpha03
, and androidx.compose.animation:animation-graphics:1.4.0-alpha03
are released. Version 1.4.0-alpha03 contains these commits.
API পরিবর্তনগুলি
- In UI tests using a Compose rule, continuations resumed during
withFrameNanos
callbacks will not be dispatched until after all frame callbacks have finished running. This matches the behavior of compose when running normally. However, tests that rely on the old behavior may fail. This should only affect code that callswithFrameNanos
orwithFrameMillis
directly, and has logic outside of callback passed to those functions that may need to be moved inside the callbacks. See the animation test changes in this CL for examples . - Added optional
onPerformTraversals: (Long) -> Unit
parameter toTestMonotonicFrameClock
constructor and factory function to run code afterwithFrameNanos
callbacks but before resuming callers' coroutines. ( Idb413 , b/254115946 , b/222093277 , b/255802670 ) - New param in
AnimatedContent
for tooling label ( Iebe2d )
সংস্করণ 1.4.0-alpha02
৯ নভেম্বর, ২০২২
androidx.compose.animation:animation:1.4.0-alpha02
, androidx.compose.animation:animation-core:1.4.0-alpha02
, and androidx.compose.animation:animation-graphics:1.4.0-alpha02
are released. Version 1.4.0-alpha02 contains these commits.
API পরিবর্তনগুলি
- Add
ToolingState
to allow tooling to change internal states of Composable ( Ie6614 )
সংস্করণ 1.4.0-alpha01
২৪ অক্টোবর, ২০২২
androidx.compose.animation:animation:1.4.0-alpha01
, androidx.compose.animation:animation-core:1.4.0-alpha01
, and androidx.compose.animation:animation-graphics:1.4.0-alpha01
are released. Version 1.4.0-alpha01 contains these commits.
বাগ ফিক্স
- Fix incorrect interruption animation in AnimatedContent ( b/238662479 )
সংস্করণ 1.3
সংস্করণ 1.3.3
১১ জানুয়ারী, ২০২৩
androidx.compose.animation:animation:1.3.3
, androidx.compose.animation:animation-core:1.3.3
, and androidx.compose.animation:animation-graphics:1.3.3
are released. Version 1.3.3 contains these commits.
- No changes since the 1.3.2.
সংস্করণ 1.3.2
৭ ডিসেম্বর, ২০২২
androidx.compose.animation:animation:1.3.2
, androidx.compose.animation:animation-core:1.3.2
, and androidx.compose.animation:animation-graphics:1.3.2
are released. Version 1.3.2 contains these commits.
বাগ ফিক্স
- Updated to support androidx.compose.ui 1.3.2
সংস্করণ 1.3.1
৯ নভেম্বর, ২০২২
androidx.compose.animation:animation:1.3.1
, androidx.compose.animation:animation-core:1.3.1
, and androidx.compose.animation:animation-graphics:1.3.1
are released. Version 1.3.1 contains these commits.
সংস্করণ 1.3.0
২৪ অক্টোবর, ২০২২
androidx.compose.animation:animation:1.3.0
, androidx.compose.animation:animation-core:1.3.0
, and androidx.compose.animation:animation-graphics:1.3.0
are released. Version 1.3.0 contains these commits.
১.২.০ থেকে গুরুত্বপূর্ণ পরিবর্তনগুলি
- New set of easing functions are made stable
সংস্করণ 1.3.0-rc01
৫ অক্টোবর, ২০২২
androidx.compose.animation:animation:1.3.0-rc01
, androidx.compose.animation:animation-core:1.3.0-rc01
, and androidx.compose.animation:animation-graphics:1.3.0-rc01
are released. Version 1.3.0-rc01 contains these commits.
Version 1.3.0-beta03
২১ সেপ্টেম্বর, ২০২২
androidx.compose.animation:animation:1.3.0-beta03
, androidx.compose.animation:animation-core:1.3.0-beta03
, and androidx.compose.animation:animation-graphics:1.3.0-beta03
are released. Version 1.3.0-beta03 contains these commits.
- No changes since 1.3.0-beta02.
Version 1.3.0-beta02
৭ সেপ্টেম্বর, ২০২২
androidx.compose.animation:animation:1.3.0-beta02
, androidx.compose.animation:animation-core:1.3.0-beta02
, and androidx.compose.animation:animation-graphics:1.3.0-beta02
are released. Version 1.3.0-beta02 contains these commits.
- Removed Kotlin.experimental from the compiler options since it is depricated
সংস্করণ 1.3.0-beta01
২৪ আগস্ট, ২০২২
androidx.compose.animation:animation:1.3.0-beta01
, androidx.compose.animation:animation-core:1.3.0-beta01
, and androidx.compose.animation:animation-graphics:1.3.0-beta01
are released. Version 1.3.0-beta01 contains these commits.
সংস্করণ 1.3.0-alpha03
১০ আগস্ট, ২০২২
androidx.compose.animation:animation:1.3.0-alpha03
, androidx.compose.animation:animation-core:1.3.0-alpha03
, and androidx.compose.animation:animation-graphics:1.3.0-alpha03
are released. Version 1.3.0-alpha03 contains these commits.
API পরিবর্তনগুলি
- New param in
Crossfade
,animateAsState
andAnimatable
for tooling label ( Iac08a ) - Added
atFraction
function for defining keyframes at a fraction instead of at a specific duration. ( I20c76 , b/232059455 )
সংস্করণ 1.3.0-alpha02
২৭ জুলাই, ২০২২
androidx.compose.animation:animation:1.3.0-alpha02
, androidx.compose.animation:animation-core:1.3.0-alpha02
, and androidx.compose.animation:animation-graphics:1.3.0-alpha02
are released. Version 1.3.0-alpha02 contains these commits.
সংস্করণ 1.3.0-alpha01
২৯ জুন, ২০২২
androidx.compose.animation:animation:1.3.0-alpha01
, androidx.compose.animation:animation-core:1.3.0-alpha01
, and androidx.compose.animation:animation-graphics:1.3.0-alpha01
are released. Version 1.3.0-alpha01 contains these commits.
API পরিবর্তনগুলি
- New
LookaheadLayout
that supports a lookahead pass before the actual measure/layout. This allows a pre-calculation of the layout when it changes, while permitting the post-lookahead measure/layout to use the pre-calculated size/position to animate the size and positions towards the target.SubcomposeLayouts
are not yet supported, but will be in an upcoming release. ( I477f5 )
সংস্করণ 1.2
সংস্করণ 1.2.1
১০ আগস্ট, ২০২২
androidx.compose.animation:animation:1.2.1
, androidx.compose.animation:animation-core:1.2.1
, and androidx.compose.animation:animation-graphics:1.2.1
are released. Version 1.2.1 contains these commits.
সংস্করণ 1.2.0
২৭ জুলাই, ২০২২
androidx.compose.animation:animation:1.2.0
, androidx.compose.animation:animation-core:1.2.0
, and androidx.compose.animation:animation-graphics:1.2.0
are released. Version 1.2.0 contains these commits.
১.১.০ থেকে গুরুত্বপূর্ণ পরিবর্তনগুলি
- Compose animation now supports 'Animator duration scale' setting from Developer Options.
- A large selection of new experimental easing curves.
-
AnimatedImageVector
now supportsrepeatCount
andrepeatMode
Version 1.2.0-rc03
২৯ জুন, ২০২২
androidx.compose.animation:animation:1.2.0-rc03
, androidx.compose.animation:animation-core:1.2.0-rc03
, and androidx.compose.animation:animation-graphics:1.2.0-rc03
are released. Version 1.2.0-rc03 contains these commits.
- No changes since 1.2.0-rc02.
Version 1.2.0-rc02
২২ জুন, ২০২২
androidx.compose.animation:animation:1.2.0-rc02
, androidx.compose.animation:animation-core:1.2.0-rc02
, and androidx.compose.animation:animation-graphics:1.2.0-rc02
are released. Version 1.2.0-rc02 contains these commits.
বাগ ফিক্স
- Removed
ExperimentalEasingApi
annotation on Easing functions ( Ied441 )
সংস্করণ 1.2.0-rc01
১৫ জুন, ২০২২
androidx.compose.animation:animation:1.2.0-rc01
, androidx.compose.animation:animation-core:1.2.0-rc01
, and androidx.compose.animation:animation-graphics:1.2.0-rc01
are released. Version 1.2.0-rc01 contains these commits.
API পরিবর্তনগুলি
- Interfaces in compose libraries are now built using jdk8 default interface methods ( I5bcf1 )
Version 1.2.0-beta03
১ জুন, ২০২২
androidx.compose.animation:animation:1.2.0-beta03
, androidx.compose.animation:animation-core:1.2.0-beta03
, and androidx.compose.animation:animation-graphics:1.2.0-beta03
are released. Version 1.2.0-beta03 contains these commits.
API পরিবর্তনগুলি
- Added Experimental Easing Curves for Animations ( I64a38 )
Version 1.2.0-beta02
১৮ মে, ২০২২
androidx.compose.animation:animation:1.2.0-beta02
, androidx.compose.animation:animation-core:1.2.0-beta02
, and androidx.compose.animation:animation-graphics:1.2.0-beta02
are released. Version 1.2.0-beta02 contains these commits.
সংস্করণ 1.2.0-beta01
১১ মে, ২০২২
androidx.compose.animation:animation:1.2.0-beta01
, androidx.compose.animation:animation-core:1.2.0-beta01
, and androidx.compose.animation:animation-graphics:1.2.0-beta01
are released. Version 1.2.0-beta01 contains these commits.
- This is the first beta release of 1.2! There are no changes since the last alpha.
Version 1.2.0-alpha08
২০ এপ্রিল, ২০২২
androidx.compose.animation:animation:1.2.0-alpha08
, androidx.compose.animation:animation-core:1.2.0-alpha08
, and androidx.compose.animation:animation-graphics:1.2.0-alpha08
are released. Version 1.2.0-alpha08 contains these commits.
Version 1.2.0-alpha07
৬ এপ্রিল, ২০২২
androidx.compose.animation:animation:1.2.0-alpha07
, androidx.compose.animation:animation-core:1.2.0-alpha07
, and androidx.compose.animation:animation-graphics:1.2.0-alpha07
are released. Version 1.2.0-alpha07 contains these commits.
API পরিবর্তনগুলি
-
AnimatedImageVector
now supportsrepeatCount
andrepeatMode
( Ia3e75 , b/199304067 )
Version 1.2.0-alpha06
২৩ মার্চ, ২০২২
androidx.compose.animation:animation:1.2.0-alpha06
, androidx.compose.animation:animation-core:1.2.0-alpha06
, and androidx.compose.animation:animation-graphics:1.2.0-alpha06
are released. Version 1.2.0-alpha06 contains these commits.
API পরিবর্তনগুলি
- Updated parsing of vector drawables to support auto mirroring to flip the content of a
VectorPainter
if the current layout direction is RTL. ( I79cd9 , b/185760237 )
বাগ ফিক্স
- Updated Vector graphics APIs to use the proper composable annotation
@VectorComposable
instead of@UiComposable
( I942bc )
Version 1.2.0-alpha05
৯ মার্চ, ২০২২
androidx.compose.animation:animation:1.2.0-alpha05
, androidx.compose.animation:animation-core:1.2.0-alpha05
, and androidx.compose.animation:animation-graphics:1.2.0-alpha05
are released. Version 1.2.0-alpha05 contains these commits.
API পরিবর্তনগুলি
- Hooray! Compose animation now supports 'Animator duration scale' setting from Developer Options. ( I5a4fc , b/161675988 )
Version 1.2.0-alpha04
২৩ ফেব্রুয়ারী, ২০২২
androidx.compose.animation:animation:1.2.0-alpha04
, androidx.compose.animation:animation-core:1.2.0-alpha04
, and androidx.compose.animation:animation-graphics:1.2.0-alpha04
are released. Version 1.2.0-alpha04 contains these commits.
Version 1.2.0-alpha03
৯ ফেব্রুয়ারী, ২০২২
androidx.compose.animation:animation:1.2.0-alpha03
, androidx.compose.animation:animation-core:1.2.0-alpha03
, and androidx.compose.animation:animation-graphics:1.2.0-alpha03
are released. Version 1.2.0-alpha03 contains these commits.
সংস্করণ 1.2.0-alpha02
২৬ জানুয়ারী, ২০২২
androidx.compose.animation:animation:1.2.0-alpha02
, androidx.compose.animation:animation-core:1.2.0-alpha02
, and androidx.compose.animation:animation-graphics:1.2.0-alpha02
are released. Version 1.2.0-alpha02 contains these commits.
সংস্করণ 1.2.0-alpha01
১২ জানুয়ারী, ২০২২
androidx.compose.animation:animation:1.2.0-alpha01
, androidx.compose.animation:animation-core:1.2.0-alpha01
, and androidx.compose.animation:animation-graphics:1.2.0-alpha01
are released. Version 1.2.0-alpha01 contains these commits.
API পরিবর্তনগুলি
- Use
AnimatedImageVector.animatedVectorResource
instead ofanimatedVectorResource
to load an<animated-vector>
resource file.- Use
rememberAnimatedVectorResource
instead ofAnimatedImageVector#painterFor
to render anAnimatedImageVector
. ( I9c300 )
- Use
বাগ ফিক্স
- Add toString methods to Animatable and AnimationResult. ( Icd3a6 )
নির্ভরতা আপডেট
- Now depends on Kotlin
1.6.10
.
সংস্করণ 1.1
সংস্করণ 1.1.1
২৩ ফেব্রুয়ারী, ২০২২
androidx.compose.animation:animation:1.1.1
, androidx.compose.animation:animation-core:1.1.1
, and androidx.compose.animation:animation-graphics:1.1.1
are released. Version 1.1.1 contains these commits.
বাগ ফিক্স
- Fix
NullPointerException
atandroidx.compose.ui.platform.RenderNodeLayer.updateDisplayList
( aosp/1947059 , b/206677462 ) - Fix crash caused by clipboard content while reading from clipboard on Android. ( I06020 , b/197769306 )
- Fixed RTL in
LazyVerticalGrid
( aosp/1931080 , b/207510535 )
সংস্করণ 1.1.0
৯ ফেব্রুয়ারী, ২০২২
androidx.compose.animation:animation:1.1.0
, androidx.compose.animation:animation-core:1.1.0
, and androidx.compose.animation:animation-graphics:1.1.0
are released. Version 1.1.0 contains these commits.
Important changes since 1.0.0
- Stable support for the Android 12 Overscroll effect
- Improvements to touch target sizing
- Note that, with respect to Compose 1.0, Material components will expand their layout space to meet Material accessibility guidelines for touch target size . For instance, Button touch target will expand to a minimum size of 48x48dp, even if you set the Button's size to be smaller. This aligns Compose Material to the same behavior of Material Design Components, providing consistent behavior if you mix Views and Compose. This change also ensures that when you create your UI using Compose Material components, minimum requirements for touch target accessibility will be met.
- Stable support for Navigation Rail
- Graduates a number of previously experimental APIs to stable
- Support for newer versions of Kotlin
Version 1.1.0-rc03
২৬ জানুয়ারী, ২০২২
androidx.compose.animation:animation:1.1.0-rc03
, androidx.compose.animation:animation-core:1.1.0-rc03
, and androidx.compose.animation:animation-graphics:1.1.0-rc03
are released. Version 1.1.0-rc03 contains these commits.
বাগ ফিক্স
- Updated to support Compose Material 1.1.0-rc03
সংস্করণ 1.1.0-rc01
১৫ ডিসেম্বর, ২০২১
androidx.compose.animation:animation:1.1.0-rc01
and androidx.compose.animation:animation-core:1.1.0-rc01
are released. Version 1.1.0-rc01 contains these commits.
API পরিবর্তনগুলি
- Use
AnimatedImageVector.animatedVectorResource
instead ofanimatedVectorResource
to load an<animated-vector>
resource file.- Use
rememberAnimatedVectorResource
instead ofAnimatedImageVector#painterFor
to render anAnimatedImageVector
. ( I9c300 )
- Use
Version 1.1.0-beta04
১ ডিসেম্বর, ২০২১
androidx.compose.animation:animation:1.1.0-beta04
, androidx.compose.animation:animation-core:1.1.0-beta04
, and androidx.compose.animation:animation-graphics:1.1.0-beta04
are released. Version 1.1.0-beta04 contains these commits.
নতুন বৈশিষ্ট্য
- Updated to be compatible with Kotlin
1.6.0
Version 1.1.0-beta03
১৭ নভেম্বর, ২০২১
androidx.compose.animation:animation:1.1.0-beta03
, androidx.compose.animation:animation-core:1.1.0-beta03
, and androidx.compose.animation:animation-graphics:1.1.0-beta03
are released. Version 1.1.0-beta03 contains these commits.
API পরিবর্তনগুলি
- Added new modifier Modifier.onPlaced to allow placement change to be observed. Additional changes to child modifier's offset can therefore be made based on the observed placement change. ( I558fd )
New support for contentKey in Crossfade. ContentKey will be used for equality check by animation system. Therefore custom diffing on states can be achieved via specifying appropriate contentKey for different states.
ContentKey will also be used as the key for save & restore content. ( I2e055 , b/197907070 )
সংস্করণ 1.1.0-beta02
৩ নভেম্বর, ২০২১
androidx.compose.animation:animation:1.1.0-beta02
, androidx.compose.animation:animation-core:1.1.0-beta02
, and androidx.compose.animation:animation-graphics:1.1.0-beta02
are released. Version 1.1.0-beta02 contains these commits.
বাগ ফিক্স
- New animation APIs for supporting tooling. Specifically, they allow tooling to inspect the animations & their configurations in a Transitions. ( I4116e )
সংস্করণ 1.1.0-beta01
২৭ অক্টোবর, ২০২১
androidx.compose.animation:animation:1.1.0-beta01
, androidx.compose.animation:animation-core:1.1.0-beta01
, and androidx.compose.animation:animation-graphics:1.1.0-beta01
are released. Version 1.1.0-beta01 contains these commits.
API পরিবর্তনগুলি
- New animation APIs for supporting tooling. Specifically, they allow tooling to inspect the animations & their configurations in a Transitions. ( I4116e )
সংস্করণ 1.1.0-alpha06
১৩ অক্টোবর, ২০২১
androidx.compose.animation:animation:1.1.0-alpha06
, androidx.compose.animation:animation-core:1.1.0-alpha06
, and androidx.compose.animation:animation-graphics:1.1.0-alpha06
are released. Version 1.1.0-alpha06 contains these commits.
সংস্করণ 1.1.0-alpha05
২৯ সেপ্টেম্বর, ২০২১
androidx.compose.animation:animation:1.1.0-alpha05
, androidx.compose.animation:animation-core:1.1.0-alpha05
, and androidx.compose.animation:animation-graphics:1.1.0-alpha05
are released. Version 1.1.0-alpha05 contains these commits.
API পরিবর্তনগুলি
EnterTransition
,ExitTransition
, and some of theAnimatedVisibility
APIs have been made stable.MutableTransitionState.isIdle
is also no longer experimental. ( I5072d )Breaking change : lambdas in Enter/ExitTransition factories have been moved to the last position in the param list. ( I5072d )
সংস্করণ 1.1.0-alpha04
১৫ সেপ্টেম্বর, ২০২১
androidx.compose.animation:animation:1.1.0-alpha04
, androidx.compose.animation:animation-core:1.1.0-alpha04
, and androidx.compose.animation:animation-graphics:1.1.0-alpha04
are released. Version 1.1.0-alpha04 contains these commits.
সংস্করণ 1.1.0-alpha03
১ সেপ্টেম্বর, ২০২১
androidx.compose.animation:animation:1.1.0-alpha03
, androidx.compose.animation:animation-core:1.1.0-alpha03
, and androidx.compose.animation:animation-graphics:1.1.0-alpha03
are released. Version 1.1.0-alpha03 contains these commits.
নতুন বৈশিষ্ট্য
- Updated Compose
1.1.0-alpha03
to depend on Kotlin1.5.30
. ( I74545 )
সংস্করণ 1.1.0-alpha02
১৮ আগস্ট, ২০২১
androidx.compose.animation:animation:1.1.0-alpha02
, androidx.compose.animation:animation-core:1.1.0-alpha02
, and androidx.compose.animation:animation-graphics:1.1.0-alpha02
are released. Version 1.1.0-alpha02 contains these commits.
API পরিবর্তনগুলি
- StartOffset is now supported in repeatable and infiniteRepeatable, as a way to delay the start time or fast forward the animation before the animation starts. This start offset will not be repeated ( Ic679f , b/195079908 )
- New Enter/Exit transition for scale. It can be used in combination with other types of Enter/ExitTransitions. ( I372da , b/191325593 )
সংস্করণ 1.1.0-alpha01
৪ আগস্ট, ২০২১
androidx.compose.animation:animation:1.1.0-alpha01
, androidx.compose.animation:animation-core:1.1.0-alpha01
, and androidx.compose.animation:animation-graphics:1.1.0-alpha01
are released. Version 1.1.0-alpha01 contains these commits.
API পরিবর্তনগুলি
-
AnimatedImageVector
and the related APIs are now in the newandroidx.compose.animation:animation-graphics
module. ( I60873 )
বাগ ফিক্স
- Moved
InfiniteAnimationPolicy
to :compose:ui ( I5eb09 , b/160602714 )
সংস্করণ 1.0
সংস্করণ 1.0.5
৩ নভেম্বর, ২০২১
androidx.compose.animation:animation:1.0.5
and androidx.compose.animation:animation-core:1.0.5
are released. Version 1.0.5 contains these commits.
বাগ ফিক্স
- Fixed a crash tracking derivedStateOf instances. ( aosp/1792247 )
সংস্করণ 1.0.4
১৩ অক্টোবর, ২০২১
androidx.compose.animation:animation:1.0.4
and androidx.compose.animation:animation-core:1.0.4
are released. Version 1.0.4 contains these commits.
নির্ভরতা আপডেট
- Updated to depend on Kotlin
1.5.31
সংস্করণ 1.0.3
২৯ সেপ্টেম্বর, ২০২১
androidx.compose.animation:animation:1.0.3
and androidx.compose.animation:animation-core:1.0.3
are released. Version 1.0.3 contains these commits.
নির্ভরতা আপডেট
- Updated to depend on Kotlin
1.5.30
সংস্করণ 1.0.2
১ সেপ্টেম্বর, ২০২১
androidx.compose.animation:animation:1.0.2
and androidx.compose.animation:animation-core:1.0.2
are released. Version 1.0.2 contains these commits.
Updated to support the Compose 1.0.2
release. Compose 1.0.2
is still compatible with Kotlin 1.5.21
.
সংস্করণ 1.0.1
৪ আগস্ট, ২০২১
androidx.compose.animation:animation:1.0.1
and androidx.compose.animation:animation-core:1.0.1
are released. Version 1.0.1 contains these commits.
নির্ভরতা আপডেট
- Updated to depend on Kotlin
1.5.21
.
সংস্করণ 1.0.0
২৮ জুলাই, ২০২১
androidx.compose.animation:animation:1.0.0
and androidx.compose.animation:animation-core:1.0.0
are released. Version 1.0.0 contains these commits.
১.০.০ এর প্রধান বৈশিষ্ট্য
This is the first stable release of Compose. Please see the official Compose Release blog for more details!
জ্ঞাত সমস্যা
If you are using Android Studio Bumblebee Canary 4 or AGP
7.1.0-alpha04
/7.1.0-alpha05
, you may hit the following crash:java.lang.AbstractMethodError: abstract method "void androidx.lifecycle.DefaultLifecycleObserver.onCreate(androidx.lifecycle.LifecycleOwner)"
To fix, temporarily increase your minSdkVersion to 24+ in your
build.gradle
file. This issue will be fixed in the next version of Android Studio Bumblebee and AGP7.1
. ( b/194289155 )
সংস্করণ 1.0.0-rc02
১৪ জুলাই, ২০২১
androidx.compose.animation:animation:1.0.0-rc02
and androidx.compose.animation:animation-core:1.0.0-rc02
are released. Version 1.0.0-rc02 contains these commits.
সংস্করণ 1.0.0-rc01
১ জুলাই, ২০২১
androidx.compose.animation:animation:1.0.0-rc01
and androidx.compose.animation:animation-core:1.0.0-rc01
are released. Version 1.0.0-rc01 contains these commits.
বাগ ফিক্স
- Moved
InfiniteAnimationPolicy
toandroidx.compose.ui:ui
( I5eb09 , b/160602714 )
Version 1.0.0-beta09
১৬ জুন, ২০২১
androidx.compose.animation:animation:1.0.0-beta09
and androidx.compose.animation:animation-core:1.0.0-beta09
are released. Version 1.0.0-beta09 contains these commits.
API পরিবর্তনগুলি
- New
AnimatedContent
Composable. It manages its content change using customizableContentTransform
as new target content enters and initial content leaves. Different combination of enter and exit transitions can be used to produce a customized look and feel. As a part of the content transform,AnimatedContent
automatically animates its size to match the incoming content. ( I2c3df ) - Removed
ManualFrameClock
. If you need to control animations, usecomposeTestRule.mainClock
instead. ( I3c3e8 , b/189951065 )
Added Profile Rules
This release adds profile rules to the following compose modules ( I14ed6 ):
- androidx.compose.animation
- androidx.compose.animation-core
- androidx.compose.foundation
- androidx.compose.foundation-layout
- androidx.compose.material
- androidx.compose.material-ripple
- androidx.compose.runtime
- androidx.compose.ui
- androidx.compose.ui.geometry
- androidx.compose.ui.graphics
- androidx.compose.ui.text
- androidx.compose.ui.text
- androidx.compose.ui.unit
- androidx.compose.ui.util
What are profile rules?
Profile rules for a library are specified in a text file
baseline-prof.txt
located in thesrc/main
or equivalent directory. The file specifies a rule per line, where a rule in this case is a pattern for matching to methods or classes in the library. The syntax for these rules is a superset of the human-readable ART profile format that is used when usingadb shell profman --dump-classes-and-methods ...
. These rules take one of two forms to target either methods or classes.A method rule will have the following pattern:
<FLAGS><CLASS_DESCRIPTOR>-><METHOD_SIGNATURE>
And a class rule will have the following pattern:
<CLASS_DESCRIPTOR>
Here
<FLAGS>
is one or more of the charactersH
,S
, andP
to indicate whether or not this method should be flagged as "Hot", "Startup", or "Post Startup".The
<CLASS_DESCRIPTOR>
is the descriptor for the class that the targeted method belongs to. For example, the classandroidx.compose.runtime.SlotTable
would have a descriptor ofLandroidx/compose/runtime/SlotTable;
.The
<METHOD_SIGNATURE>
is the signature of the method, and includes the name, parameter types, and return types of the method. For example, the methodfun isPlaced(): Boolean
onLayoutNode
has the signatureisPlaced()Z
.These patterns can have wildcards (
**
,*
, and?
) in order to have a single rule encompass multiple methods or classes.
What do the rules do?
A method that has the flag
H
indicates that this method is a "hot" method, and should be compiled ahead of time.A method that has the flag
S
indicates that it is a method which is called at startup, and should be compiled ahead of time to avoid the cost of compilation and interpreting the method at startup time.A method that has the flag
P
indicates that it is a method which is called after startup.A class that is present in this file indicates that it is used during startup and should be pre-allocated in the heap to avoid the cost of class loading.
এটা কিভাবে কাজ করে?
- Libraries can define these rules which will be packaged in AAR artifacts. When an app is then built which includes these artifacts, these rules are merged together and the merged rules are used to build a compact binary ART profile that is specific to the app. ART can then leverage this profile when the app is installed on devices in order to ahead-of-time compile a specific subset of the application to improve the performance of the application, especially the first run. Note that this will have no effect on debuggable applications.
Version 1.0.0-beta08
২ জুন, ২০২১
androidx.compose.animation:animation:1.0.0-beta08
and androidx.compose.animation:animation-core:1.0.0-beta08
are released. Version 1.0.0-beta08 contains these commits.
বাগ ফিক্স
- Now
detectDragGesures
,detectVerticalGestures
, anddetectHorizontalGestures
will consume the position change automatically, no need to call change.consumePositionChange in the onDrag callbacks ( I42fc4 , b/185096350 , b/187320697 ) -
Modifier.onGloballyPositioned()
was changed to report the coordinates of this modifier in the modifier chain, not the layout coordinates after applying all the modifiers. This means that now the ordering of modifiers is affecting what coordinates would be reported. ( Ieb67d , b/177926591 )
Version 1.0.0-beta07
১৮ মে, ২০২১
androidx.compose.animation:animation:1.0.0-beta07
and androidx.compose.animation:animation-core:1.0.0-beta07
are released. Version 1.0.0-beta07 contains these commits.
API পরিবর্তনগুলি
- New
AnimatedVisibility
API that support visibility to be specified in aMutableTransitionState
. This also allows the animation states to be observed external toAnimatedVisibility
viacurrentState
andisIdle
.- New child transition support in Transition
- Support custom exit/enter transition animation in AnimatedVisibility using AnimationScope.transition
- New animateEnterExit modifier accessible for all children of AnimatedVisibility
- Deprecated the AnimatedVisibility APIs that take an
initiallyVisible
parameter ( I702f3 )
Version 1.0.0-beta06
৫ মে, ২০২১
androidx.compose.animation:animation:1.0.0-beta06
and androidx.compose.animation:animation-core:1.0.0-beta06
are released. Version 1.0.0-beta06 contains these commits.
Version 1.0.0-beta05
২১ এপ্রিল, ২০২১
androidx.compose.animation:animation:1.0.0-beta05
and androidx.compose.animation:animation-core:1.0.0-beta05
are released. Version 1.0.0-beta05 contains these commits.
বাগ ফিক্স
- The AndroidManifest files from ui-test-manifest and ui-tooling-data are now compatible with Android 12 ( I6f9de , b/184718994 )
Version 1.0.0-beta04
৭ এপ্রিল, ২০২১
androidx.compose.animation:animation:1.0.0-beta04
and androidx.compose.animation:animation-core:1.0.0-beta04
are released. Version 1.0.0-beta04 contains these commits.
API পরিবর্তনগুলি
- Public instances of
RowScope
,ColumnScope
,BoxScope
,BoxWithConstraintsScope
were removed. ( I4e83e , b/181869067 )
Version 1.0.0-beta03
২৪ মার্চ, ২০২১
androidx.compose.animation:animation:1.0.0-beta03
and androidx.compose.animation:animation-core:1.0.0-beta03
are released. Version 1.0.0-beta03 contains these commits.
সংস্করণ 1.0.0-beta02
১০ মার্চ, ২০২১
androidx.compose.animation:animation:1.0.0-beta02
and androidx.compose.animation:animation-core:1.0.0-beta02
are released. Version 1.0.0-beta02 contains these commits.
বাগ ফিক্স
- পরীক্ষামূলক API-এর সর্বজনীন ব্যবহারের উপর বিধিনিষেধ আরোপ করুন ( I6aa29 , b/174531520 )
সংস্করণ 1.0.0-beta01
২৪ ফেব্রুয়ারী, ২০২১
androidx.compose.animation:animation:1.0.0-beta01
and androidx.compose.animation:animation-core:1.0.0-beta01
are released. Version 1.0.0-beta01 contains these commits.
This is the first release of Compose 1.0.0 Beta.
API পরিবর্তনগুলি
-
InteractionState
has been replaced with[Mutable]InteractionSource
- Interfaces are responsible for emitting / collecting Interaction events.
- Instead of passing
interactionState = remember { InteractionState() }
to components such asButton
andModifier.clickable()
, useinteractionSource = remember { MutableInteractionSource() }
. - Instead of:
Interaction.Pressed in interactionState
you should instead use the extension functions on InteractionSource, such as InteractionSource.collectIsPressedAsState(). - For complex use cases you can use InteractionSource.interactions to observe the stream of Interactions. See the InteractionSource documentation and samples for more information.
- ( I85965 , b/152525426 , b/171913923 , b/171710801 , b/174852378 )
- smoothScrollBy and scrollBy methods' packages changed to
androidx.compose.foundation.gestures.*
( I3f7c1 , b/175294473 ) - Size modifiers were renamed. Modifier.width/height/size were renamed to requiredWidth/requiredHeight/requiredSize. Modifier.preferredWidth/preferredHeight/preferredSize were renamed to width/height/size. ( I5b414 )
- Orientation has been moved to foundation package. VelocirtTracker moved from ui.gesture to ui.input.pointer. ( Iff4a8 , b/175294473 )
- AnimationClockObservable and subclasses have been removed. AnimatedFloat has been removed. ( Icde52 , b/177457083 )
- Modifier.draggable now accepts DraggableState instead of a simple lambda. you can create state via
rememberDraggableState { delta -> }
to get the same behaviour as before ( Ica70f , b/175294473 ) - animate, animatedValue, AnimatedValue APIs have been removed ( If27bc , b/177457083 )
- AnimationEndReason.Interrupted is removed. CancellationException will be throws if animation is interrupted. ( I2cbbc , b/179695417 )
- TargetAnimation API has been removed. ( If47d1 , b/177457083 )
Version 1.0.0-alpha12
১০ ফেব্রুয়ারী, ২০২১
androidx.compose.animation:animation:1.0.0-alpha12
and androidx.compose.animation:animation-core:1.0.0-alpha12
are released. Version 1.0.0-alpha12 contains these commits.
API পরিবর্তনগুলি
-
Modifier.pointerInput
now requires remember keys to indicate when the pointer input detection coroutine should restart for new dependencies. ( I849cd ) - Bounds has been renamed to DpRect ( I4b32a )
- Unified the param name for AnimationSpec to animationSpec across the animation system. Also constrain the Enter/ExitTransition to accept FiniteAnimationSpec. ( Ie47c5 , b/177457083 )
- Animatable.snapTo and Animatable.stop are now suspend functions ( If4288 )
- Similarly to how we previously removed
state { 0 }
composable and now promote usage likeremember { mutableStateOf(0) }
we are going to removesavedInstanceState { 0 }
composable. You should userememberSaveable { mutableStateOf(0) }
instead and it will save and restore automatically if the type used inside the MutableState can be stored in the Bundle. If previously you were passing a custom saver object now you need to use a new overload of rememberSaveable which hasstateSaver
parameter. The usage will look like this:val holder = rememberSaveable(stateSaver = HolderSaver) { mutableStateOf(Holder(0)) }
( Ib4c26 , b/177338004 ) - Updated Crossfade's method signature to be more consistent with the rest of the animation system. ( Ib05ed , b/177457083 )
- rememberSavedInstanceState() was renamed to rememberSaveable() and moved to androidx.compose.runtime.saveable package. ( I1366e , b/177338004 )
- RestorableStateHolder was renamed to SaveableStateHolder and moved to androidx.compose.runtime.saveable package. Inner method RestorableStateProvider was renamed to SaveableStateProvider. Generic type was removed so you can just pass Any as a key. Experimental annotation is not needed anymore. ( I0902e , b/174598702 )
- Updated Modifier.animateContentSize API to be consistent with the rest of the animation system. ( I0bf75 , b/177457083 )
- AnimatedValue/Float is now deprecated. Please use Animatable instead. ( I71345 , b/177457083 )
- tapGestureFilter, doubleTapGestureFilter, longPressGestureFilter and pressIndicaitonGestureFilter have been deprecated. Use Modifier.clickable or Modifier.pointerInput with detectTapGestures function instead. ( I6baf9 , b/175294473 )
- Introduced an
InfiniteAnimationPolicy
coroutine context element that will be applied in infinite animations. By default no policy is installed, except when running tests withComposeTestRule
. ( I50ec4 , b/151940543 ) - Destructuring and copy() methods have been removed from several classes where they were rarely used. ( I26702 , b/178659281 )
- Playtime in animation is now unfiied to nanoseconds ( If776a )
- The compose:runtime-dispatch artifact is now deprecated. MonotonicFrameClock can now be found in compose:runtime and AndroidUiDispatcher can be found in compose:ui. ( Ib5c36 )
- Added
Animation.isInfinite
andVectorizedAnimationSpec.isInfinite
that signal if an animation is infinite or not. This can be used in implementations of animations to have special handling of such animations. For example, a special "time remaining" message can be shown, or during tests the animation can be cancelled to prevent waiting for idleness indefinitely. ( Iebb05 , b/151940543 ) - Use Long instead of Uptime as animation time type ( Ie3aa7 , b/177420019 )
Version 1.0.0-alpha11
২৮ জানুয়ারী, ২০২১
androidx.compose.animation:animation:1.0.0-alpha11
and androidx.compose.animation:animation-core:1.0.0-alpha11
are released. Version 1.0.0-alpha11 contains these commits.
API পরিবর্তনগুলি
- TransitionDefinition-based Transition has been deprecated ( I0ac57 )
- A label field is added for Transition and child animations to be displayed in tools ( I619fb )
- animateAsState is now animateFooAsState, where Foo is the type of the variable being animated. eg Float, Dp, Offset, etc ( Ie7e25 )
- New InfiniteTransition that runs any number of child animations. ( I1da81 )
- Changes Material stateful parameter interfaces to have @Composable functions that return
State<T>
. Adds Animatable.asState() to make it easier to convert an Animatable to a State. Also changes animateElevation to be a suspend extension on Animatable. ( If613c )
বাগ ফিক্স
- onCommit, onDispose, and onActive have been deprecated in favor of SideEffect and DisposableEffect APIs ( If760e )
- Initial State in updateTransition is now supported ( Ifd51d )
- Content description parameter has been added to the Image and Icon. It is used to provide description to the accessibility services ( I2ac4c )
- invalidate and compositionReference() are now deprecated in favor of currentRecomposeScope and rememberCompositionReference respectively. ( I583a8 )
- Duration and Uptime will be replace with Long milliseconds, and this step removes the dependency of pointer input on those classes. ( Ia33b2 , b/175142755 , b/177420019 )
- clickable, toggleable and selectable can be created outside of composition now ( I0a130 , b/172938345 , b/175294473 )
- Easing has been changed to a functional interface ( Ib14e5 )
- New
items(count: Int)
factory method for scope of LazyColumn/LazyRow/LazyVerticalGrid.items(items: List)
anditemsIndexed(items: List)
are now extension functions so you have to manually import them when used. New extension overloads for Arrays: items(items: Array) and itemsIndexed(Array) ( I803fc , b/175562574 ) - Leverage TestCoroutineDispatcher in testing ( I532b6 )
- Removed PointerInputData and modified PointerInputChange to give it all of PointerInputData's fields. Made PointerInputEvent and PointerInputEventData internal because they aren't used in any public API. ( Ifff97 , b/175142755 )
Version 1.0.0-alpha10
১৩ জানুয়ারী, ২০২১
androidx.compose.animation:animation:1.0.0-alpha10
and androidx.compose.animation:animation-core:1.0.0-alpha10
are released. Version 1.0.0-alpha10 contains these commits.
API পরিবর্তনগুলি
- Modified Velocity to have component parts and mathematical operations. ( Ib0447 )
- Renamed
@ExperimentalTesting
to@ExperimentalTestApi
to be consistent with similar experimental api annotations ( Ia4502 , b/171464963 ) - Renamed Position to DpOffset and removed getDistance() ( Ib2dfd )
- Removed Any.identityHashCode() public api ( I025d7 )
বাগ ফিক্স
- New coroutine-based API
Animatable
that ensures mutual exclusiveness among its animations. New DecayAnimationSpec to support multi-dimensional decay animation ( I820f2 , b/168014930 ) -
animate()
is now replaced withanimateAsState()
, which returns aState<T>
instead ofT
. This allows better performance, as the invalidation scope can be narrowed down to where the State value is read. ( Ib179e )
Version 1.0.0-alpha09
১৬ ডিসেম্বর, ২০২০
androidx.compose.animation:animation:1.0.0-alpha09
and androidx.compose.animation:animation-core:1.0.0-alpha09
are released. Version 1.0.0-alpha09 contains these commits.
API পরিবর্তনগুলি
- Moved Dp.VectorConverter, Position.VectorConverter, etc to animation-core, and deprecated the old VectorConveters ( If0c4b )
- Introduced a whole new set of Transition APIs with improved ease of use, and support for dynamically added animations, and dynamically calculated animation targets. This APIs are marked experimental for easy differentiation from the TransitionDefinition-based API. ( Ia7fe3 )
বাগ ফিক্স
- Lambdas in offset modifiers now return IntOffset rather than Float. ( Ic9ee5 , b/174137212 , b/174146755 )
- Deprecate LazyColumnFor, LazyRowFor, LazyColumnForIndexed and LazyRowForIndexed. Use LazyColumn and LazyRow instead ( I5b48c )
- For suspending pointer input APIs, renamed HandlePointerInputScope to AwaitPointerEventScope and handlePointerInput() to awaitPointerEventScope(). ( Idf0a1 , b/175142755 )
- New infiniteRepeatable function for creating an InfiniteRepeatableSpec ( I668e5 )
- Removed ExperimentalPointerInput annotation ( Ia7a24 )
সংস্করণ 1.0.0-alpha08
২ ডিসেম্বর, ২০২০
androidx.compose.animation:animation:1.0.0-alpha08
and androidx.compose.animation:animation-core:1.0.0-alpha08
are released. Version 1.0.0-alpha08 contains these commits.
API পরিবর্তনগুলি
- Added lint check for composable lambda parameter naming and position, to check for consistency with Compose guidelines. Also migrated some APIs using
children
as the name for their trailing lambda tocontent
, according to the lint check and guidance. ( Iec48e ) - Previously Deprecated APIs were removed:
-
Modifier.onPositioned
was removed, useModifier.onGloballyPositioned
. -
Modifier.onDraw
was removed, useModifier.onDrawBehind
. -
Modifier.plus
was removed, useModifier.then
. -
Color.Unset
was removed, useColor.Unspecified
. -
PxBounds
class was removed, useRect
instead. - ( Ie9d02 , b/172562222 )
-
- Temporarily added option to let the TestAnimationClock be driven by the MonotonicFrameClock ( I1403b , b/173402197 )
বাগ ফিক্স
- Renamed Modifier.drawLayer to Modifier.graphicsLayer Also updated related classes to GraphicsLayer as per API council feedback. ( I0bd29 , b/173834241 )
- Added Modifier.scale/rotate APIs as conveniences for drawLayer.
- Renamed Modifier.drawOpacity to Modifier.alpha
- Renamed Modifier.drawShadow to Modifier.shadow ( I264ca , b/173208140 )
- Made PointerInputData's uptime and position fields non-nullable. ( Id468a )
- offsetPx modifiers were renamed to offset. They are now taking lambda parameters instead of State. ( Ic3021 , b/173594846 )
- New APIs for running animations in coroutines ( Ied662 )
- Deprecated Ambients named with
Ambient
as their suffix, and replaced them with new properties prefixed with Ambient, following other Ambients and Compose API guidelines. ( I33440 ) - Time control in tests (TestAnimationClock and its usages) is now experimental ( I6ef86 , b/171378521 )
- Remove old ui-test module and its stubs ( I3a7cb )
-
RestorableStateHolder.withRestorableState
function was renamed toRestorableStateProvider
( I66640 ) - The Alignment interface was updated and made functional. ( I46a07 , b/172311734 )
সংস্করণ 1.0.0-alpha07
১১ নভেম্বর, ২০২০
androidx.compose.animation:animation:1.0.0-alpha07
and androidx.compose.animation:animation-core:1.0.0-alpha07
are released. Version 1.0.0-alpha07 contains these commits.
বাগ ফিক্স
- The foundation AmbientTextStyle, ProvideTextStyle, and AmbientContentColor have been deprecated. Instead use the new versions available in the Material library. For non-Material applications, you should instead create your own design system specific theming ambients that can be consumed in your own components. ( I74acc , b/172067770 )
- foundation.Text has been deprecated and replaced with material.Text. For a basic, unopinionated text API that does not consume values from a theme, see androidx.compose.foundation.BasicText. ( If64cb )
- MeasureResult was moved out of MeasureScope. ( Ibf96d , b/171184002 )
- Several layout related symbols were moved from androidx.compose.ui to androidx.compose.layout.ui. ( I0fa98 , b/170475424 )
সংস্করণ 1.0.0-alpha06
২৮ অক্টোবর, ২০২০
androidx.compose.animation:animation:1.0.0-alpha06
and androidx.compose.animation:animation-core:1.0.0-alpha06
are released. Version 1.0.0-alpha06 contains these commits.
API পরিবর্তনগুলি
- Enable transitions in ComposeTestRule; remove option to enable the blinking cursor from ComposeTestRule. ( If0de3 )
সংস্করণ 1.0.0-alpha05
১৪ অক্টোবর, ২০২০
androidx.compose.animation:animation:1.0.0-alpha05
and androidx.compose.animation:animation-core:1.0.0-alpha05
are released. Version 1.0.0-alpha05 contains these commits.
API পরিবর্তনগুলি
- New Animation interface and subclasses: These classes store the start and end conditions for animations, and therefore allow value and velocity to be queried via only playtime ( Ie95bd , b/163329867 )
বাগ ফিক্স
- OnPositionedModifier is renamed to OnGloballyPositionedModifier and onPositioned() is renamed to onGloballyPositioned(). ( I587e8 , b/169083903 )
Deprecates contentColor() and currentTextStyle() APIs, and replaces them with AmbientContentColor and AmbientTextStyle ambients respectively. You can access the current value by using
.current
on the ambient property, as with any other ambient. This was change was made for consistency and to avoid having multiple ways to accomplish the same thing. Additionally renames some ambient properties to better describe their purpose as follows:- ContentColorAmbient -> AmbientContentColor
- TextStyleAmbient -> AmbientTextStyle
- IndicationAmbient -> AmbientIndication
- EmphasisAmbient -> AmbientEmphasisLevels
- RippleThemeAmbient -> AmbientRippleTheme ( I37b6d )
সংস্করণ 1.0.0-alpha04
১ অক্টোবর, ২০২০
androidx.compose.animation:animation:1.0.0-alpha04
and androidx.compose.animation:animation-core:1.0.0-alpha04
are released. Version 1.0.0-alpha04 contains these commits.
API পরিবর্তনগুলি
- Annotated rootAnimationClockFactory, transitionsEnabled, blinkingCursorEnabled and textInputServiceFactory with @VisibleForTesting, make them internal API and hide their kdoc ( I554eb , b/168308412 )
বাগ ফিক্স
- Updated many Graphics APIs
- Updated scale and rotation transformation APIs to consume a single Offset parameter to represent the pivot coordinate instead of separate float parameters for the x/y coordinates in DrawScope and DrawTransform
- Removed Rect.expandToInclude and Rect.join methods
- Updated Radius documentation to say oval in addition to elliptical
- Added documentation to indicate the public constructor for the inline Radius class is not to be called directly but instead Radius objects should be instantiated through their function constructors
- Removed RoundRect APIs to query topRight, bottomRight, bottomCenter, etc.
- Deprecated Rect.shift in favor of Rect.translate
- Removed RoundRect.grow and Rect.shrink APIs
- Renamed RoundRect.outerRect to Rect.boundingRect
- Removed RoundRect.middleRect/tallMiddleRect/wideMiddleRect and Rect.isStadium methods
- Renamed RoundRect.longestSide to RoundRect.maxDimension
- Renamed RoundRect.shortestSide to RoundRect.minDimension
- Changed RoundRect.center to be a property instead of a function
- Updated RoundRect constructor to consume Radius properties instead of individual parameters for x/y radius values
- Removed Size APIs that assumed it was a Rectangle with origin at 0,0
- Added a destructing API to Radius
- Migrated various RoundRect extension functions to be properties instead
- ( I8f5c7 , b/168762961 )
- foundation.Box was deprecated. Please use foundation.layout.Box instead. ( Ie5950 , b/167680279 )
- Stack was renamed to Box. The previously existing Box will be deprecated in favor of the new Box in compose.foundation.layout. The behavior of the new Box is to stack children one on top of another when it has multiple children - this is different from the previous Box, which was behaving similar to a Column. ( I94893 , b/167680279 )
- Box decoration parameters have been deprecated. If you want to have decorations/padding on your box, use Modifiers instead (Modifier.background, Modifier.border, Modifier.padding) ( Ibae92 , b/167680279 )
- We prevented static imports of contents of layout scopes (eg alignWithSiblings in RowScope). The explicit scope alternative should be used instead:
with(RowScope) { Modifier.alignWithSiblings(FirstBaseline) }
. ( I216be , b/166760797 )
সংস্করণ 1.0.0-alpha03
১৬ সেপ্টেম্বর, ২০২০
androidx.compose.animation:animation:1.0.0-alpha03
and androidx.compose.animation:animation-core:1.0.0-alpha03
are released. Version 1.0.0-alpha03 contains these commits.
বাগ ফিক্স
- Usages of gravity were consistently renamed to align or alignment in layout APIs. ( I2421a , b/164077038 )
সংস্করণ 1.0.0-alpha02
২ সেপ্টেম্বর, ২০২০
androidx.compose.animation:animation:1.0.0-alpha02
and androidx.compose.animation:animation-core:1.0.0-alpha02
are released. Version 1.0.0-alpha02 contains these commits.
API পরিবর্তনগুলি
Added
ManualFrameClock.hasAwaiters
to see if anything is awaiting a frame from that clock;runWithManualClock
as a replacement forrunBlocking
when running tests that need a ManualFrameClock;TestUiDispatcher.Main
that gives easy access to the main UI dispatcher in your tests.উদাহরণস্বরূপ:
@Test fun myTest() = runWithManualClock { clock -> // set some compose content withContext(TestUiDispatcher.Main) { clock.advanceClock(1000L) } if (clock.hasAwaiters) { println("The clock has awaiters") } else { println("The clock has no more awaiters") } }
( I0a85b , b/161247083 )
বাগ ফিক্স
onPreCommit is deprecated; onCommit now has onPreCommit's behavior.
onCommit and onActive now run in the same choreographer frame that the composition changes committed in rather than at the beginning of the next choreographer frame. ( I70403 )
সংস্করণ 1.0.0-alpha01
২৬ আগস্ট, ২০২০
androidx.compose.animation:animation:1.0.0-alpha01
and androidx.compose.animation:animation-core:1.0.0-alpha01
are released. Version 1.0.0-alpha01 contains these commits.
Version 0.1.0-dev
Version 0.1.0-dev17
১৯ আগস্ট, ২০২০
androidx.compose.animation:animation:0.1.0-dev17
and androidx.compose.animation:animation-core:0.1.0-dev17
are released. Version 0.1.0-dev17 contains these commits.
নতুন বৈশিষ্ট্য
API পরিবর্তনগুলি
- Offset has become an inline class ( Iaec70 )
- IntOffset is now an inline class ( Iac0bf )
- IntSize is now an inline class ( I2bf42 )
AnimatedVisibilty composable animates the appearance and disappearance of the child content.
EnterTransition and ExitTransition are introduced to work with AnimatedVisibilty composable to provide 3 different typs of appearance and disappearance animation: fade, slide, and expand/shrink the content. The different types of animations can be combined to achieve more bespoke look and feel. ( Idda11 )
Deprecated PxBounds in favor of Rect. Updated all usages of PxBounds with rect and added proper deprecate/replace with annotations to assist with the migration. ( I37038 , b/162627058 )
বাগ ফিক্স
-
PlacementScope.placeAbsolute()
was renamed toPlacementScope.place()
, and the previousPlacementScope.place()
was renamed toPlacementScope.placeRelative()
. As a result, thePlacementScope.place()
method will not automatically mirror the position in right-to-left contexts anymore. If this is desired, usePlacementScope.placeRelative()
instead. ( I873ac , b/162916675 ) - The
state { ... }
composable is now deprecated in favor of explicit calls toremember { mutableStateOf(...) }
for clarity. This reduces the overall API surface and number of concepts for state management, and matches theby mutableStateOf()
pattern for class property delegation. ( Ia5727 )
Version 0.1.0-dev16
৫ আগস্ট, ২০২০
androidx.compose.animation:animation:0.1.0-dev16
and androidx.compose.animation:animation-core:0.1.0-dev16
are released. Version 0.1.0-dev16 contains these commits.
API পরিবর্তনগুলি
- Built-in vector converters to convert built-in units are now accessible via
Foo.VectorConverter
. egDp.VectorConverter
,Color.VectorConverter
,Float.VectorConverter
, etc ( I3e273 ) - Support end listener in
Modifier.animateContentSize()
such that when size change animation finishes, the listener will be notified, along with start/end size of the animation. ( I277b2 ) - New animateContentSize modifier that animates the layout size change of its child modifier ( Ieffdc )
Added
MonotonicFrameAnimationClock
that enables you to use a MonotonicFrameClock as anAnimationClockObservable
to bridge the gap between the new coroutines based clocks and APIs that still use the old callback based clocks.The
MonotonicFrameClock
equivalent ofManualAnimationClock
is nowManualFrameClock
. ( I111c7 , b/161247083 )
বাগ ফিক্স
- The APIs for right-to-left support has been updated. LayoutDirectionAmbient has been added, which can be used to read and change the layout direction. Modifier.rtl and Modifier.ltr have been removed. ( I080b3 )
- Require type T to be explicitly specified for transitionDefinition. ( I1aded )
- foundation.shape.corner package were flatten to foundation.share ( I46491 , b/161887429 )
- Modifier.plus has been deprecated, use Modifier.then instead. 'Then' has a stronger signal of ordering, while also prohibits to type
Modifier.padding().background() + anotherModifier
, which breaks the chain and harder to read ( Iedd58 , b/161529964 ) - Modifier.drawBackground has been renamed to Modifier.background ( I13677 )
Version 0.1.0-dev15
জুলাই ২২, ২০২০
androidx.compose.animation:animation:0.1.0-dev15
and androidx.compose.animation:animation-core:0.1.0-dev15
are released. Version 0.1.0-dev15 contains these commits.
Dependencies Update
- To use the
0.1.0-dev15
version of Compose, you will need to update your dependencies according to the new code snippets shown above in Declaring dependencies .
API পরিবর্তনগুলি
- Transition API has been changed to return a TransitionState instead of passing the TransitionState to children. This makes the API more consistent with animate() APIs. ( I24e38 )
- Modifier parameter added for Crossfade ( I87cfe , b/159706180 )
- Use AnimationSpec instead of AnimationBuilder in the top level APIs to clarify the concept of static animation specification
- Improve the transition DSL by removing the lambda requirement for creating AnimationSpecs such as tween, spring. They instead take constructor params directly.
- Improve the overall ease of use of AnimationSpec opening up constructors instead of relying on builders
- Change the duration and delay for KeyFrames and Tween to Int. This eliminates unnecessary type casts and method overloading (for supporting both Long and Int). ( Ica0b4 )
- Replaced usage of IntPx with Int. Replaced IntPxPosition with IntOffset. Replaced IntPxSize with IntSize. ( Ib7b44 )
- In order to consolidate the number of classes used to represent sizing information, standardize on usage of the Size class instead of PxSize. This provides the benefits of an inline class to leverage a long to pack 2 float values to represent width and height represented as floats. ( Ic0191 )
- In order to consolidate the number of classes used to represent positioning information, standardize on usage of the Offset class instead of PxPosition. This provides the benefits of an inline class to leverage a long to pack 2 float values to represent x and y offsets represented as floats. ( I3ad98 )
- Replaced usage of Px class in various compose classes as part of the large refactoring effort to only rely on Dp and primitive types for pixel parameters ( I086f4 )
- Added animate() support for Dp, Px, Size, Position, Bounds, PxPosition, PxSize, PxBounds, IntPx, IntPxSize, IntPxPosition, IntPxBounds, and AnimationVector ( Ib7518 )
- Crossfade now accepts optional AnimationBuilder param to allow configuring the animation ( I6d6e0 )
- Replaced all nullable Color uses in API with non-nullable and use Color.Unset instead of null ( Iabaa7 )
- Removed ValueHolder class. Restructured AnimatedValue, AnimatedFloat classes to make the animation value field abstract so that subclasses can watch the value update.
- Added model classes for AnimatedValue, AnimatedFloat, etc.
- Added a new set of light-weight @Composable API for animating between values. ( I79530 )
- Breaking changes to the ambients API. See log and
Ambient<T>
documentation for details ( I4c7ee , b/143769776 ) - New repeat mode: Reverse. This mode reverses the previous iteration as the animation repeats in RepeatableSpec or VectorizedRepeatableSpec. ( Ibe0f5 )
- API additions to ManualAnimationClock:
hasObservers: Boolean
and constructor parameterdispatchOnSubscribe: Boolean
( Iaa134 ) - Added APIs for getting min/max bounds in AnimatedFloat ( Icd9cc )
বাগ ফিক্স
-
runOnIdleCompose
renamed torunOnIdle
( I83607 ) - Several testing APIs were renamed to be more intuitive. All findXYZ APIs were renamed to onNodeXYZ. All doXYZ APIs were renamed to performXYZ. ( I7f164 )
- Introduced low level stateless animation APIs. These APIs ( I63bf7 )
- The Recompose composable is no longer a useful abstraction. Most recomposition should happen as a result of MutableState assignments. For anything beyond that, it is recommended that you use the
invalidate
function to trigger a recomposition of the current scope. ( Ifc992 ) - Replaced usage of Px class in various compose classes as part of the large refactoring effort to only rely on Dp and primitive types for pixel parameters. Deleted Px class in its entirety ( I3ff33 )
- Replaced usage of Px class in various compose classes as part of the large refactoring effort to only rely on Dp and primitive types for pixel parameters ( Id3434 )
- Crossfade can now work with null as initial value ( Iad6a4 , b/155947711 )
- Replaced usage of Px class in various compose classes as part of the large refactoring effort to only rely on Dp and primitive types for pixel parameters ( I19d02 )
- Consolidated CanvasScope implementations so there is now just DrawScope and ContentDrawScope Renamed CanvasScope to DrawScope. Updated DrawScope to implement Density interface and provide LayoutDirection Deleted DrawScope subclass in ContentDrawScope Painter and PainterModifier have been updated to no longer maintain an RTL property themselves as DrawScope provides this already without manually providing it ( I1798e )
- Updated higher level compose APIs that expose a Canvas to expose CanvasScope instead. This removes the need for consumers to maintain their own Paint objects. For consumers that still require access to a Canvas they can use the drawCanvas extension method which provides a callback to issue drawing commands with the underlying Canvas. ( I80afd )
- Added verticalGravity and horizontalGravity parameters to Row and Column, respectively. ( I7dc5a )
- ui-text module is renamed as ui-text-core ( I57dec )
- Improve DrawModifier API:
- Made the receiver scope for draw() ContentDrawScope
- Removed all parameters on draw()
- DrawScope has same interface as former CanvasScope
- ContentDrawScope has drawContent() method ( Ibaced , b/152919067 )
-
runOnIdleCompose
andrunOnUiThread
are now global functions instead of methods on ComposeTestRule. ( Icbe8f ) - [Mutable]State property delegate operators moved to extensions to support Kotlin 1.4 property delegate optimizations. Callers must add imports to continue using
by state { ... }
orby mutableStateOf(...)
. ( I5312c ) - ColoredRect has been deprecated. Use
Box(Modifier.preferredSize(width, height).drawBackground(color))
instead. ( I499fa , b/152753731 ) - Replaced Modifier plus operator with factory extension functions ( I225e4 )
- Deprecated Center composable. It should be replaced either with the LayoutSize.Fill + LayoutAlign.Center modifier, or with one of the Box or Stack composables with suitable modifiers applied ( Idf5e0 )
- Renamed LayoutFlexible to LayoutWeight. Renamed tight parameter to fill. ( If4738 )
- The Opacity composable function has been replaced with the drawOpacity modifier. ( I5fb62 )
- Tests using AndroidComposeTestRule now provide an animation clock at the root of the composition that allows it to be paused, resumed and advanced manually. ( Id54c5 )
- Support right-to-left direction in LayoutPadding modifier ( I9e8da )
- Density and DensityScope were merged into one interface. Instead of ambientDensity() you can now use DensityAmbient.current. Instead of withDensity(density) just with(density) ( I11cb1 )
- Added copy methods to various inline class types including:
- অফসেট
- আকার
- ব্যাসার্ধ
- গতি
- TransformOrigin
- Deprecated Size.copy companion object method favor of instance copy method ( Ife290 , b/159905651 )
- androidx.compose.ViewComposer has been moved to androidx.ui.node.UiComposer androidx.compose.Emittable has been removed. It was redundant with ComponentNode. androidx.compose.ViewAdapters has been removed. They are no longer a supported use case. Compose.composeInto has been deprecated. Use
setContent
orsetViewContent
instead. Compose.disposeComposition has been deprecated. Use thedispose
method on theComposition
returned bysetContent
instead. androidx.compose.Compose.subcomposeInto has moved to androidx.ui.core.subcomposeInto ComponentNode#emitInsertAt has been renamed to ComponentNode#insertAt ComponentNode#emitRemoveAt has been renamed to ComponentNode#removeAt ComponentNode#emitMode has been renamed to ComponentNode#move ( Idef00 )