পূর্ববর্তী রিলিজের মতো, Android 15-এ এমন আচরণের পরিবর্তন অন্তর্ভুক্ত রয়েছে যা আপনার অ্যাপকে প্রভাবিত করতে পারে। নিম্নলিখিত আচরণ পরিবর্তনগুলি শুধুমাত্র Android 15 বা উচ্চতর সংস্করণগুলিকে লক্ষ্য করে এমন অ্যাপগুলিতে প্রযোজ্য৷ যদি আপনার অ্যাপটি Android 15 বা উচ্চতরকে লক্ষ্য করে থাকে, তাহলে প্রযোজ্য ক্ষেত্রে এই আচরণগুলিকে সঠিকভাবে সমর্থন করার জন্য আপনার অ্যাপটি সংশোধন করা উচিত।
আপনার অ্যাপের targetSdkVersion
নির্বিশেষে Android 15-এ চলমান সমস্ত অ্যাপকে প্রভাবিত করে এমন আচরণের পরিবর্তনের তালিকাটিও পর্যালোচনা করতে ভুলবেন না।
মূল কার্যকারিতা
Android 15 অ্যান্ড্রয়েড সিস্টেমের বিভিন্ন মূল ক্ষমতাগুলিকে সংশোধন বা প্রসারিত করে।
ফোরগ্রাউন্ড পরিষেবাতে পরিবর্তন
We are making the following changes to foreground services with Android 15.
- Data sync foreground service timeout behavior
- New media processing foreground service type
- Restrictions on
BOOT_COMPLETED
broadcast receivers launching foreground services - Restrictions on starting foreground services while an app holds the
SYSTEM_ALERT_WINDOW
permission
Data sync foreground service timeout behavior
Android 15 Android 15 (API স্তর 35) বা উচ্চতরকে লক্ষ্য করে এমন অ্যাপগুলির জন্য dataSync
একটি নতুন টাইমআউট আচরণ প্রবর্তন করে৷ এই আচরণটি নতুন mediaProcessing
ফোরগ্রাউন্ড পরিষেবা প্রকারের ক্ষেত্রেও প্রযোজ্য।
সিস্টেমটি একটি অ্যাপের dataSync
পরিষেবাগুলিকে 24-ঘন্টা সময়ের মধ্যে মোট 6 ঘন্টা চালানোর অনুমতি দেয়, তারপরে সিস্টেমটি চলমান পরিষেবাটির Service.onTimeout(int, int)
পদ্ধতিতে কল করে (Android 15 এ চালু করা হয়েছে)৷ এই সময়ে, পরিষেবাটিতে Service.stopSelf()
কল করার জন্য কয়েক সেকেন্ড সময় আছে। যখন Service.onTimeout()
কল করা হয়, তখন পরিষেবাটিকে আর অগ্রভাগের পরিষেবা হিসাবে বিবেচনা করা হয় না। যদি পরিষেবাটি Service.stopSelf()
কল না করে, তবে সিস্টেমটি একটি অভ্যন্তরীণ ব্যতিক্রম নিক্ষেপ করে৷ ব্যতিক্রমটি নিম্নলিখিত বার্তার সাথে লগক্যাটে লগ ইন করা হয়েছে:
Fatal Exception: android.app.RemoteServiceException: "A foreground service of
type dataSync did not stop within its timeout: [component name]"
এই আচরণ পরিবর্তনের সমস্যাগুলি এড়াতে, আপনি নিম্নলিখিতগুলির মধ্যে এক বা একাধিক করতে পারেন:
- আপনার পরিষেবাকে নতুন
Service.onTimeout(int, int)
পদ্ধতি প্রয়োগ করতে দিন। আপনার অ্যাপ কলব্যাক গ্রহণ করলে, কয়েক সেকেন্ডের মধ্যেstopSelf()
কল করতে ভুলবেন না। (যদি আপনি এখনই অ্যাপটি বন্ধ না করেন তবে সিস্টেমটি একটি ব্যর্থতা তৈরি করে।) - নিশ্চিত করুন যে আপনার অ্যাপের
dataSync
পরিষেবাগুলি যে কোনও 24-ঘণ্টার সময়ের মধ্যে মোট 6 ঘন্টার বেশি চলবে না (যদি না ব্যবহারকারী অ্যাপটির সাথে ইন্টারঅ্যাক্ট করে, টাইমার রিসেট করে)। - শুধুমাত্র
dataSync
ফোরগ্রাউন্ড পরিষেবাগুলি সরাসরি ব্যবহারকারীর ইন্টারঅ্যাকশনের ফলে শুরু করুন; যেহেতু পরিষেবাটি শুরু হওয়ার সময় আপনার অ্যাপটি ফোরগ্রাউন্ডে থাকে, তাই অ্যাপটি ব্যাকগ্রাউন্ডে যাওয়ার পরে আপনার পরিষেবার পুরো ছয় ঘন্টা থাকে। - একটি
dataSync
ফোরগ্রাউন্ড পরিষেবা ব্যবহার করার পরিবর্তে, একটি বিকল্প API ব্যবহার করুন৷
যদি আপনার অ্যাপের dataSync
ফোরগ্রাউন্ড পরিষেবাগুলি গত 24-এর মধ্যে 6 ঘন্টা ধরে চলে থাকে, তবে ব্যবহারকারী আপনার অ্যাপটিকে ফোরগ্রাউন্ডে না আনলে আপনি অন্য dataSync
ফোরগ্রাউন্ড পরিষেবা শুরু করতে পারবেন না (যা টাইমার রিসেট করে)। আপনি যদি অন্য একটি dataSync
ফোরগ্রাউন্ড পরিষেবা শুরু করার চেষ্টা করেন, তাহলে সিস্টেমটি "ফোরগ্রাউন্ড সার্ভিস টাইপ ডেটাসিঙ্কের জন্য সময়সীমা ইতিমধ্যেই শেষ" এর মতো একটি ত্রুটি বার্তা সহ ForegroundServiceStartNotAllowedException
ছুড়ে দেয়৷
টেস্টিং
আপনার অ্যাপের আচরণ পরীক্ষা করার জন্য, আপনি ডেটা সিঙ্ক টাইমআউট সক্ষম করতে পারেন এমনকি যদি আপনার অ্যাপ অ্যান্ড্রয়েড 15 টার্গেট না করে (যতক্ষণ অ্যাপটি একটি Android 15 ডিভাইসে চলছে)। টাইমআউট সক্ষম করতে, নিম্নলিখিত adb
কমান্ডটি চালান:
adb shell am compat enable FGS_INTRODUCE_TIME_LIMITS your-package-name
আপনি টাইমআউট পিরিয়ড সামঞ্জস্য করতে পারেন, সীমা পৌঁছে গেলে আপনার অ্যাপ কীভাবে আচরণ করে তা পরীক্ষা করা সহজ করতে। একটি নতুন টাইমআউট পিরিয়ড সেট করতে, নিম্নলিখিত adb
কমান্ডটি চালান:
adb shell device_config put activity_manager data_sync_fgs_timeout_duration duration-in-milliseconds
New media processing foreground service type
Android 15 introduces a new foreground service type, mediaProcessing
. This
service type is appropriate for operations like transcoding media files. For
example, a media app might download an audio file and need to convert it to a
different format before playing it. You can use a mediaProcessing
foreground
service to make sure the conversion continues even while the app is in the
background.
The system permits an app's mediaProcessing
services to run for a total of 6
hours in a 24-hour period, after which the system calls the running service's
Service.onTimeout(int, int)
method (introduced in Android
15). At this time, the service has a few seconds to call
Service.stopSelf()
. If the service does not
call Service.stopSelf()
, the system throws an internal exception. The
exception is logged in Logcat with the following message:
Fatal Exception: android.app.RemoteServiceException: "A foreground service of
type mediaProcessing did not stop within its timeout: [component name]"
To avoid having the exception, you can do one of the following:
- Have your service implement the new
Service.onTimeout(int, int)
method. When your app receives the callback, make sure to callstopSelf()
within a few seconds. (If you don't stop the app right away, the system generates a failure.) - Make sure your app's
mediaProcessing
services don't run for more than a total of 6 hours in any 24-hour period (unless the user interacts with the app, resetting the timer). - Only start
mediaProcessing
foreground services as a result of direct user interaction; since your app is in the foreground when the service starts, your service has the full six hours after the app goes to the background. - Instead of using a
mediaProcessing
foreground service, use an alternative API, like WorkManager.
If your app's mediaProcessing
foreground services have run for 6 hours in the
last 24, you cannot start another mediaProcessing
foreground service unless
the user has brought your app to the foreground (which resets the timer). If you
try to start another mediaProcessing
foreground service, the system throws
ForegroundServiceStartNotAllowedException
with an error message like "Time limit already exhausted for foreground service
type mediaProcessing".
For more information about the mediaProcessing
service type, see Changes to
foreground service types for Android 15: Media processing.
Testing
To test your app's behavior, you can enable media processing timeouts even if
your app is not targeting Android 15 (as long as the app is running on an
Android 15 device). To enable timeouts, run the following adb
command:
adb shell am compat enable FGS_INTRODUCE_TIME_LIMITS your-package-name
You can also adjust the timeout period, to make it easier to test how your
app behaves when the limit is reached. To set a new timeout period, run the
following adb
command:
adb shell device_config put activity_manager media_processing_fgs_timeout_duration duration-in-milliseconds
Restrictions on BOOT_COMPLETED
broadcast receivers launching foreground services
There are new restrictions on BOOT_COMPLETED
broadcast receivers launching
foreground services. BOOT_COMPLETED
receivers are not allowed to launch the
following types of foreground services:
dataSync
camera
mediaPlayback
phoneCall
mediaProjection
microphone
(this restriction has been in place formicrophone
since Android 14)
If a BOOT_COMPLETED
receiver tries to launch any of those types of foreground
services, the system throws ForegroundServiceStartNotAllowedException
.
Testing
To test your app's behavior, you can enable these new restrictions even if your
app is not targeting Android 15 (as long as the app is running on an Android 15
device). Run the following adb
command:
adb shell am compat enable FGS_BOOT_COMPLETED_RESTRICTIONS your-package-name
To send a BOOT_COMPLETED
broadcast without restarting the device,
run the following adb
command:
adb shell am broadcast -a android.intent.action.BOOT_COMPLETED your-package-name
Restrictions on starting foreground services while an app holds the SYSTEM_ALERT_WINDOW
permission
Previously, if an app held the SYSTEM_ALERT_WINDOW
permission, it could launch
a foreground service even if the app was currently in the background (as
discussed in exemptions from background start restrictions).
If an app targets Android 15, this exemption is now narrower. The app now needs
to have the SYSTEM_ALERT_WINDOW
permission and also have a visible overlay
window. That is, the app needs to first launch a
TYPE_APPLICATION_OVERLAY
window and the window
needs to be visible before you start a foreground service.
If your app attempts to start a foreground service from the background without
meeting these new requirements (and it does not have some other exemption), the
system throws ForegroundServiceStartNotAllowedException
.
If your app declares the SYSTEM_ALERT_WINDOW
permission
and launches foreground services from the background, it may be affected by this
change. If your app gets a ForegroundServiceStartNotAllowedException
, check
your app's order of operations and make sure your app already has an active
overlay window before it attempts to start a foreground service from the
background. You can check if your overlay window is currently visible
by calling View.getWindowVisibility()
, or you
can override View.onWindowVisibilityChanged()
to get notified whenever the visibility changes.
Testing
To test your app's behavior, you can enable these new restrictions even if your
app is not targeting Android 15 (as long as the app is running on an Android 15
device). To enable these new restrictions on starting foreground services
from the background, run the following adb
command:
adb shell am compat enable FGS_SAW_RESTRICTIONS your-package-name
অ্যাপ্লিকেশানগুলি কখন বিরক্ত করবে না মোডের বৈশ্বিক অবস্থা পরিবর্তন করতে পারে তার পরিবর্তন৷
Apps that target Android 15 (API level 35) and higher can no longer change the
global state or policy of Do Not Disturb (DND) on a device (either by modifying
user settings, or turning off DND mode). Instead, apps must contribute an
AutomaticZenRule
, which the system combines into a global policy with the
existing most-restrictive-policy-wins scheme. Calls to existing APIs that
previously affected global state (setInterruptionFilter
,
setNotificationPolicy
) result in the creation or update of an implicit
AutomaticZenRule
, which is toggled on and off depending on the call-cycle of
those API calls.
Note that this change only affects observable behavior if the app is calling
setInterruptionFilter(INTERRUPTION_FILTER_ALL)
and expects that call to
deactivate an AutomaticZenRule
that was previously activated by their owners.
OpenJDK API পরিবর্তন
Android 15 continues the work of refreshing Android's core libraries to align with the features in the latest OpenJDK LTS releases.
Some of these changes can affect app compatibility for apps targeting Android 15 (API level 35):
Changes to string formatting APIs: Validation of argument index, flags, width, and precision are now more strict when using the following
String.format()
andFormatter.format()
APIs:String.format(String, Object[])
String.format(Locale, String, Object[])
Formatter.format(String, Object[])
Formatter.format(Locale, String, Object[])
For example, the following exception is thrown when an argument index of 0 is used (
%0
in the format string):IllegalFormatArgumentIndexException: Illegal format argument index = 0
In this case, the issue can be fixed by using an argument index of 1 (
%1
in the format string).Changes to component type of
Arrays.asList(...).toArray()
: When usingArrays.asList(...).toArray()
, the component type of the resulting array is now anObject
—not the type of the underlying array's elements. So the following code throws aClassCastException
:String[] elements = (String[]) Arrays.asList("one", "two").toArray();
For this case, to preserve
String
as the component type in the resulting array, you could useCollection.toArray(Object[])
instead:String[] elements = Arrays.asList("two", "one").toArray(new String[0]);
Changes to language code handling: When using the
Locale
API, language codes for Hebrew, Yiddish, and Indonesian are no longer converted to their obsolete forms (Hebrew:iw
, Yiddish:ji
, and Indonesian:in
). When specifying the language code for one of these locales, use the codes from ISO 639-1 instead (Hebrew:he
, Yiddish:yi
, and Indonesian:id
).Changes to random int sequences: Following the changes made in https://bugs.openjdk.org/browse/JDK-8301574, the following
Random.ints()
methods now return a different sequence of numbers than theRandom.nextInt()
methods do:Generally, this change shouldn't result in app-breaking behavior, but your code shouldn't expect the sequence generated from
Random.ints()
methods to matchRandom.nextInt()
.
The new SequencedCollection
API can affect your app's compatibility
after you update compileSdk
in your app's build configuration to use
Android 15 (API level 35):
Collision with
MutableList.removeFirst()
andMutableList.removeLast()
extension functions inkotlin-stdlib
The
List
type in Java is mapped to theMutableList
type in Kotlin. Because theList.removeFirst()
andList.removeLast()
APIs have been introduced in Android 15 (API level 35), the Kotlin compiler resolves function calls, for examplelist.removeFirst()
, statically to the newList
APIs instead of to the extension functions inkotlin-stdlib
.If an app is re-compiled with
compileSdk
set to35
andminSdk
set to34
or lower, and then the app is run on Android 14 and lower, a runtime error is thrown:java.lang.NoSuchMethodError: No virtual method removeFirst()Ljava/lang/Object; in class Ljava/util/ArrayList;
The existing
NewApi
lint option in Android Gradle Plugin can catch these new API usages../gradlew lint
MainActivity.kt:41: Error: Call requires API level 35 (current min is 34): java.util.List#removeFirst [NewApi] list.removeFirst()To fix the runtime exception and lint errors, the
removeFirst()
andremoveLast()
function calls can be replaced withremoveAt(0)
andremoveAt(list.lastIndex)
respectively in Kotlin. If you're using Android Studio Ladybug | 2024.1.3 or higher, it also provides a quick fix option for these errors.Consider removing
@SuppressLint("NewApi")
andlintOptions { disable 'NewApi' }
if the lint option has been disabled.Collision with other methods in Java
New methods have been added into the existing types, for example,
List
andDeque
. These new methods might not be compatible with the methods with the same name and argument types in other interfaces and classes. In the case of a method signature collision with incompatibility, thejavac
compiler outputs a build-time error. For example:Example error 1:
javac MyList.java
MyList.java:135: error: removeLast() in MyList cannot implement removeLast() in List public void removeLast() { ^ return type void is not compatible with Object where E is a type-variable: E extends Object declared in interface ListExample error 2:
javac MyList.java
MyList.java:7: error: types Deque<Object> and List<Object> are incompatible; public class MyList implements List<Object>, Deque<Object> { both define reversed(), but with unrelated return types 1 errorExample error 3:
javac MyList.java
MyList.java:43: error: types List<E#1> and MyInterface<E#2> are incompatible; public static class MyList implements List<Object>, MyInterface<Object> { class MyList inherits unrelated defaults for getFirst() from types List and MyInterface where E#1,E#2 are type-variables: E#1 extends Object declared in interface List E#2 extends Object declared in interface MyInterface 1 errorTo fix these build errors, the class implementing these interfaces should override the method with a compatible return type. For example:
@Override public Object getFirst() { return List.super.getFirst(); }
নিরাপত্তা
অ্যান্ড্রয়েড 15-এ এমন পরিবর্তনগুলি অন্তর্ভুক্ত রয়েছে যা অ্যাপ এবং ব্যবহারকারীদের ক্ষতিকারক অ্যাপ থেকে রক্ষা করতে সিস্টেম নিরাপত্তার প্রচার করে।
সুরক্ষিত ব্যাকগ্রাউন্ড কার্যকলাপ চালু হয়
অ্যান্ড্রয়েড 15 ব্যবহারকারীদের ক্ষতিকারক অ্যাপ থেকে রক্ষা করে এবং ক্ষতিকারক ব্যাকগ্রাউন্ড অ্যাপগুলিকে অন্য অ্যাপগুলিকে অগ্রভাগে আনতে, তাদের বিশেষাধিকারগুলিকে উন্নত করতে এবং ব্যবহারকারীর ইন্টারঅ্যাকশনের অপব্যবহার করে এমন পরিবর্তনগুলি যোগ করে তাদের ডিভাইসের উপর আরও নিয়ন্ত্রণ দেয়। Android 10 (API স্তর 29) থেকে পটভূমি কার্যকলাপ লঞ্চ সীমাবদ্ধ করা হয়েছে।
অন্যান্য পরিবর্তন
UID মিলের জন্য সীমাবদ্ধতা ছাড়াও, এই অন্যান্য পরিবর্তনগুলিও অন্তর্ভুক্ত:
- ডিফল্টরূপে ব্যাকগ্রাউন্ড অ্যাক্টিভিটি লঞ্চ ব্লক করতে
PendingIntent
নির্মাতাদের পরিবর্তন করুন । এটি অ্যাপগুলিকে দুর্ঘটনাক্রমে একটিPendingIntent
তৈরি করা থেকে আটকাতে সাহায্য করে যা দূষিত অভিনেতাদের দ্বারা অপব্যবহার হতে পারে৷ -
PendingIntent
প্রেরক এটির অনুমতি না দিলে অগ্রভাগে একটি অ্যাপ আনবেন না ৷ এই পরিবর্তনের লক্ষ্য হল দূষিত অ্যাপগুলিকে ব্যাকগ্রাউন্ডে ক্রিয়াকলাপ শুরু করার ক্ষমতা অপব্যবহার করা থেকে আটকানো৷ ডিফল্টরূপে, অ্যাপ্লিকেশানগুলিকে অগ্রভাগে টাস্ক স্ট্যাক আনার অনুমতি দেওয়া হয় না যদি না স্রষ্টা ব্যাকগ্রাউন্ড অ্যাক্টিভিটি লঞ্চের বিশেষাধিকার বা প্রেরকের ব্যাকগ্রাউন্ড অ্যাক্টিভিটি লঞ্চের বিশেষাধিকার না থাকে। - একটি টাস্ক স্ট্যাকের শীর্ষ কার্যকলাপ কিভাবে তার কাজ শেষ করতে পারে তা নিয়ন্ত্রণ করুন । যদি শীর্ষ ক্রিয়াকলাপ একটি টাস্ক শেষ করে, তবে Android সর্বশেষ সক্রিয় যে কোনও টাস্কে ফিরে যাবে। অধিকন্তু, যদি একটি নন-টপ অ্যাক্টিভিটি তার কাজ শেষ করে, তাহলে অ্যান্ড্রয়েড হোম স্ক্রিনে ফিরে যাবে; এটি এই অ-শীর্ষ কার্যকলাপের সমাপ্তি ব্লক করবে না।
- আপনার নিজের টাস্কে অন্য অ্যাপ থেকে স্বেচ্ছাচারী ক্রিয়াকলাপ চালু করা প্রতিরোধ করুন । এই পরিবর্তনটি ক্ষতিকারক অ্যাপগুলিকে ফিশিং ব্যবহারকারীদের থেকে আটকায় এমন ক্রিয়াকলাপগুলি তৈরি করে যা অন্যান্য অ্যাপ থেকে দেখা যায়৷
- পটভূমি কার্যকলাপ লঞ্চের জন্য বিবেচনা করা থেকে অ-দৃশ্যমান উইন্ডোগুলিকে ব্লক করুন ৷ এটি ব্যবহারকারীদের কাছে অবাঞ্ছিত বা দূষিত সামগ্রী প্রদর্শন করতে ব্যাকগ্রাউন্ড অ্যাক্টিভিটি লঞ্চের অপব্যবহার থেকে ক্ষতিকারক অ্যাপগুলিকে প্রতিরোধ করতে সহায়তা করে৷
অ্যান্ড্রয়েড 15 ব্যবহারকারীদের ক্ষতিকারক অ্যাপ থেকে রক্ষা করে এবং ক্ষতিকারক ব্যাকগ্রাউন্ড অ্যাপগুলিকে অন্য অ্যাপগুলিকে অগ্রভাগে আনতে, তাদের বিশেষাধিকারগুলিকে উন্নত করতে এবং ব্যবহারকারীর ইন্টারঅ্যাকশনের অপব্যবহার করে এমন পরিবর্তনগুলি যোগ করে তাদের ডিভাইসের উপর আরও নিয়ন্ত্রণ দেয়। Android 10 (API স্তর 29) থেকে পটভূমি কার্যকলাপ লঞ্চ সীমাবদ্ধ করা হয়েছে।
অন্যান্য পরিবর্তন
UID মিলের জন্য সীমাবদ্ধতা ছাড়াও, এই অন্যান্য পরিবর্তনগুলিও অন্তর্ভুক্ত:
- ডিফল্টরূপে ব্যাকগ্রাউন্ড অ্যাক্টিভিটি লঞ্চ ব্লক করতে
PendingIntent
নির্মাতাদের পরিবর্তন করুন । এটি অ্যাপগুলিকে দুর্ঘটনাক্রমে একটিPendingIntent
তৈরি করা থেকে আটকাতে সাহায্য করে যা দূষিত অভিনেতাদের দ্বারা অপব্যবহার হতে পারে৷ -
PendingIntent
প্রেরক এটির অনুমতি না দিলে অগ্রভাগে একটি অ্যাপ আনবেন না ৷ এই পরিবর্তনের লক্ষ্য হল দূষিত অ্যাপগুলিকে ব্যাকগ্রাউন্ডে ক্রিয়াকলাপ শুরু করার ক্ষমতা অপব্যবহার করা থেকে আটকানো৷ ডিফল্টরূপে, অ্যাপ্লিকেশানগুলিকে অগ্রভাগে টাস্ক স্ট্যাক আনার অনুমতি দেওয়া হয় না যদি না স্রষ্টা ব্যাকগ্রাউন্ড অ্যাক্টিভিটি লঞ্চের বিশেষাধিকার বা প্রেরকের ব্যাকগ্রাউন্ড অ্যাক্টিভিটি লঞ্চের বিশেষাধিকার না থাকে। - একটি টাস্ক স্ট্যাকের শীর্ষ কার্যকলাপ কিভাবে তার কাজ শেষ করতে পারে তা নিয়ন্ত্রণ করুন । যদি শীর্ষ ক্রিয়াকলাপ একটি টাস্ক শেষ করে, তবে Android সর্বশেষ সক্রিয় যে কোনও টাস্কে ফিরে যাবে। অধিকন্তু, যদি একটি নন-টপ অ্যাক্টিভিটি তার কাজ শেষ করে, তাহলে অ্যান্ড্রয়েড হোম স্ক্রিনে ফিরে যাবে; এটি এই অ-শীর্ষ কার্যকলাপের সমাপ্তি ব্লক করবে না।
- আপনার নিজের টাস্কে অন্য অ্যাপ থেকে স্বেচ্ছাচারী ক্রিয়াকলাপ চালু করা প্রতিরোধ করুন । এই পরিবর্তনটি ক্ষতিকারক অ্যাপগুলিকে ফিশিং ব্যবহারকারীদের থেকে আটকায় এমন ক্রিয়াকলাপগুলি তৈরি করে যা অন্যান্য অ্যাপ থেকে দেখা যায়৷
- পটভূমি কার্যকলাপ লঞ্চের জন্য বিবেচনা করা থেকে অ-দৃশ্যমান উইন্ডোগুলিকে ব্লক করুন ৷ এটি ব্যবহারকারীদের কাছে অবাঞ্ছিত বা দূষিত সামগ্রী প্রদর্শন করতে ব্যাকগ্রাউন্ড অ্যাক্টিভিটি লঞ্চের অপব্যবহার থেকে ক্ষতিকারক অ্যাপগুলিকে প্রতিরোধ করতে সহায়তা করে৷
নিরাপদ অভিপ্রায়
Android 15 introduces new optional security measures to make intents safer and more robust. These changes are aimed at preventing potential vulnerabilities and misuse of intents that can be exploited by malicious apps. There are two main improvements to the security of intents in Android 15:
- Match target intent-filters: Intents that target specific components must accurately match the target's intent-filter specifications. If you send an intent to launch another app's activity, the target intent component needs to align with the receiving activity's declared intent-filters.
- Intents must have actions: Intents without an action will no longer match any intent-filters. This means that intents used to start activities or services must have a clearly defined action.
In order to check how your app responds to these changes, use
StrictMode
in your app. To see detailed
logs about Intent
usage violations, add the following method:
Kotlin
fun onCreate() { StrictMode.setVmPolicy(VmPolicy.Builder() .detectUnsafeIntentLaunch() .build() ) }
Java
public void onCreate() { StrictMode.setVmPolicy(new VmPolicy.Builder() .detectUnsafeIntentLaunch() .build()); }
ব্যবহারকারীর অভিজ্ঞতা এবং সিস্টেম UI
অ্যান্ড্রয়েড 15-এ এমন কিছু পরিবর্তন রয়েছে যা আরও সামঞ্জস্যপূর্ণ, স্বজ্ঞাত ব্যবহারকারীর অভিজ্ঞতা তৈরি করার উদ্দেশ্যে করা হয়েছে।
উইন্ডো ইনসেট পরিবর্তন
There are two changes related to window insets in Android 15: edge-to-edge is enforced by default, and there are also configuration changes, such as the default configuration of system bars.
Edge-to-edge enforcement
অ্যাপ্লিকেশানগুলি যদি Android 15 (API স্তর 35) কে লক্ষ্য করে তাহলে Android 15 চালিত ডিভাইসগুলিতে ডিফল্টরূপে এজ-টু-এজ থাকে৷
এটি একটি ব্রেকিং পরিবর্তন যা আপনার অ্যাপের UI কে নেতিবাচকভাবে প্রভাবিত করতে পারে। পরিবর্তনগুলি নিম্নলিখিত UI অঞ্চলগুলিকে প্রভাবিত করে:
- অঙ্গভঙ্গি হ্যান্ডেল নেভিগেশন বার
- ডিফল্টরূপে স্বচ্ছ।
- নীচের অফসেট অক্ষম করা হয়েছে তাই ইনসেটগুলি প্রয়োগ করা না হলে বিষয়বস্তু সিস্টেম নেভিগেশন বারের পিছনে চলে যায়৷
-
setNavigationBarColor
এবংR.attr#navigationBarColor
বাতিল করা হয়েছে এবং অঙ্গভঙ্গি নেভিগেশনকে প্রভাবিত করে না। -
setNavigationBarContrastEnforced
এবংR.attr#navigationBarContrastEnforced
জেসচার নেভিগেশনের উপর কোন প্রভাব নেই।
- 3-বোতাম নেভিগেশন
- অস্বচ্ছতা ডিফল্টরূপে 80% এ সেট করা হয়েছে, সম্ভবত উইন্ডোর পটভূমির সাথে রঙের সাথে মিল রয়েছে।
- নীচের অফসেট অক্ষম করা হয়েছে যাতে ইনসেটগুলি প্রয়োগ না করা হলে বিষয়বস্তু সিস্টেম নেভিগেশন বারের পিছনে চলে যায়৷
-
setNavigationBarColor
এবংR.attr#navigationBarColor
ডিফল্টরূপে উইন্ডোর পটভূমির সাথে মেলে সেট করা আছে। এই ডিফল্টটি প্রয়োগ করার জন্য উইন্ডোর পটভূমিতে অবশ্যই একটি রঙ আঁকতে হবে। এই APIটি বাতিল করা হয়েছে কিন্তু 3-বোতাম নেভিগেশনকে প্রভাবিত করে চলেছে৷ -
setNavigationBarContrastEnforced
এবংR.attr#navigationBarContrastEnforced
ডিফল্টভাবে সত্য, যা 3-বোতাম নেভিগেশন জুড়ে একটি 80% অস্বচ্ছ পটভূমি যোগ করে।
- স্ট্যাটাস বার
- ডিফল্টরূপে স্বচ্ছ।
- শীর্ষ অফসেটটি অক্ষম করা হয়েছে তাই ইনসেটগুলি প্রয়োগ করা না হলে বিষয়বস্তু স্ট্যাটাস বারের পিছনে চলে যায়৷
-
setStatusBarColor
এবংR.attr#statusBarColor
বাতিল করা হয়েছে এবং Android 15-এ কোনো প্রভাব নেই। -
setStatusBarContrastEnforced
এবংR.attr#statusBarContrastEnforced
বাতিল করা হয়েছে কিন্তু এখনও Android 15-এ এর প্রভাব রয়েছে।
- ডিসপ্লে কাটআউট
- নন-ফ্লোটিং উইন্ডোগুলির
layoutInDisplayCutoutMode
অবশ্যইLAYOUT_IN_DISPLAY_CUTOUT_MODE_ALWAYS
হতে হবে।SHORT_EDGES
,NEVER
, এবংDEFAULT
ALWAYS
হিসাবে ব্যাখ্যা করা হয় যাতে ব্যবহারকারীরা ডিসপ্লে কাটআউটের কারণে একটি কালো বার দেখতে না পায় এবং প্রান্ত থেকে প্রান্তে প্রদর্শিত হয়৷
- নন-ফ্লোটিং উইন্ডোগুলির
নিম্নলিখিত উদাহরণটি Android 15 (API স্তর 35) লক্ষ্য করার আগে এবং পরে এবং ইনসেটগুলি প্রয়োগ করার আগে এবং পরে একটি অ্যাপ দেখায়।
আপনার অ্যাপটি ইতিমধ্যেই এজ-টু-এজ কিনা তা পরীক্ষা করতে হবে
যদি আপনার অ্যাপটি ইতিমধ্যেই এজ-টু-এজ হয়ে থাকে এবং ইনসেটগুলি প্রয়োগ করে, তবে নিম্নলিখিত পরিস্থিতিগুলি ব্যতীত আপনি বেশিরভাগ ক্ষেত্রেই প্রভাবিত হবেন না। যাইহোক, এমনকি যদি আপনি মনে করেন যে আপনি প্রভাবিত হননি, আমরা আপনাকে আপনার অ্যাপ পরীক্ষা করার পরামর্শ দিই।
- আপনার কাছে একটি নন-ফ্লোটিং উইন্ডো আছে, যেমন একটি
Activity
যাLAYOUT_IN_DISPLAY_CUTOUT_MODE_ALWAYS
এর পরিবর্তেSHORT_EDGES
,NEVER
বাDEFAULT
ব্যবহার করে। আপনার অ্যাপ লঞ্চের সময় ক্র্যাশ হলে, এটি আপনার স্প্ল্যাশস্ক্রিনের কারণে হতে পারে। আপনি হয় কোর স্প্ল্যাশস্ক্রিন নির্ভরতাকে 1.2.0-alpha01 বা পরবর্তীতে আপগ্রেড করতে পারেন অথবাwindow.attributes.layoutInDisplayCutoutMode = WindowManager.LayoutInDisplayCutoutMode.always
সেট করতে পারেন। - আবদ্ধ UI সহ নিম্ন-ট্রাফিক স্ক্রীন থাকতে পারে। এই কম পরিদর্শন করা স্ক্রীনে UI আটকানো নেই তা যাচাই করুন। নিম্ন-ট্র্যাফিক স্ক্রিনগুলির মধ্যে রয়েছে:
- অনবোর্ডিং বা সাইন-ইন স্ক্রীন
- সেটিংস পৃষ্ঠা
আপনার অ্যাপ ইতিমধ্যেই এজ-টু-এজ না হলে কী পরীক্ষা করবেন
যদি আপনার অ্যাপ ইতিমধ্যেই এজ-টু-এজ না হয়, তাহলে আপনি সম্ভবত প্রভাবিত হবেন। ইতিমধ্যেই এজ-টু-এজ অ্যাপ্লিকেশানগুলির জন্য পরিস্থিতিগুলি ছাড়াও, আপনার নিম্নলিখিতগুলি বিবেচনা করা উচিত:
- যদি আপনার অ্যাপটি কম্পোজে Material 3 উপাদান (
androidx.compose.material3
) ব্যবহার করে, যেমনTopAppBar
,BottomAppBar
, এবংNavigationBar
, তাহলে এই উপাদানগুলি সম্ভবত প্রভাবিত হবে না কারণ তারা স্বয়ংক্রিয়ভাবে ইনসেটগুলি পরিচালনা করে৷ - যদি আপনার অ্যাপটি রচনায় উপাদান 2 উপাদান (
androidx.compose.material
) ব্যবহার করে, তাহলে এই উপাদানগুলি স্বয়ংক্রিয়ভাবে ইনসেটগুলি পরিচালনা করে না৷ যাইহোক, আপনি ইনসেটগুলিতে অ্যাক্সেস পেতে পারেন এবং সেগুলি ম্যানুয়ালি প্রয়োগ করতে পারেন। androidx.compose.material 1.6.0 এবং পরবর্তীতে,BottomAppBar
,TopAppBar
,BottomNavigation
এবংNavigationRail
জন্য ম্যানুয়ালি ইনসেটগুলি প্রয়োগ করতেwindowInsets
প্যারামিটার ব্যবহার করুন। একইভাবে,Scaffold
জন্যcontentWindowInsets
প্যারামিটার ব্যবহার করুন। - যদি আপনার অ্যাপটি ভিউ এবং ম্যাটেরিয়াল কম্পোনেন্ট (
com.google.android.material
) ব্যবহার করে, তবে বেশিরভাগ ভিউ-ভিত্তিক মেটেরিয়াল কম্পোনেন্ট যেমনBottomNavigationView
,BottomAppBar
,NavigationRailView
, বাNavigationView
, ইনসেটগুলি পরিচালনা করে এবং কোনও অতিরিক্ত কাজের প্রয়োজন নেই৷ যাইহোক,AppBarLayout
ব্যবহার করলে আপনাকেandroid:fitsSystemWindows="true"
যোগ করতে হবে। - কাস্টম কম্পোজেবলের জন্য, প্যাডিং হিসাবে ম্যানুয়ালি ইনসেটগুলি প্রয়োগ করুন। যদি আপনার বিষয়বস্তু একটি
Scaffold
মধ্যে থাকে, তাহলে আপনিScaffold
প্যাডিং মান ব্যবহার করে ইনসেটগুলি ব্যবহার করতে পারেন৷ অন্যথায়, একটিWindowInsets
ব্যবহার করে প্যাডিং প্রয়োগ করুন। - আপনার অ্যাপ যদি ভিউ এবং
BottomSheet
,SideSheet
বা কাস্টম কন্টেনার ব্যবহার করে, তাহলেViewCompat.setOnApplyWindowInsetsListener
ব্যবহার করে প্যাডিং প্রয়োগ করুন।RecyclerView
এর জন্য, এই শ্রোতা ব্যবহার করে প্যাডিং প্রয়োগ করুন এবংclipToPadding="false"
যোগ করুন।
আপনার অ্যাপটি অবশ্যই কাস্টম ব্যাকগ্রাউন্ড সুরক্ষা প্রদান করবে কিনা তা পরীক্ষা করতে হবে
যদি আপনার অ্যাপটি অবশ্যই 3-বোতাম নেভিগেশন বা স্ট্যাটাস বারে কাস্টম ব্যাকগ্রাউন্ড সুরক্ষা প্রদান করে, আপনার অ্যাপটি 3-বোতাম নেভিগেশন বারের উচ্চতা বা WindowInsets.Type#statusBars
পেতে WindowInsets.Type#tappableElement()
ব্যবহার করে সিস্টেম বারের পিছনে একটি কম্পোজযোগ্য বা ভিউ স্থাপন করা উচিত। WindowInsets.Type#statusBars
।
অতিরিক্ত এজ-টু-এজ রিসোর্স
ইনসেট প্রয়োগ করার বিষয়ে অতিরিক্ত বিবেচনার জন্য এজ থেকে এজ ভিউ এবং এজ টু এজ কম্পোজ গাইড দেখুন।
অপ্রচলিত API
নিম্নোক্ত APIগুলিকে অবমূল্যায়ন করা হয়েছে কিন্তু নিষ্ক্রিয় করা হয়নি:
-
R.attr#enforceStatusBarContrast
-
R.attr#navigationBarColor
(3 বোতাম নেভিগেশনের জন্য, 80% আলফা সহ) -
Window#isStatusBarContrastEnforced
-
Window#setNavigationBarColor
(3 বোতাম নেভিগেশনের জন্য, 80% আলফা সহ) -
Window#setStatusBarContrastEnforced
নিম্নোক্ত API গুলি অবমূল্যায়িত এবং অক্ষম করা হয়েছে:
-
R.attr#navigationBarColor
(জেসচার নেভিগেশনের জন্য) -
R.attr#navigationBarDividerColor
-
R.attr#statusBarColor
-
Window#setDecorFitsSystemWindows
-
Window#getNavigationBarColor
-
Window#getNavigationBarDividerColor
-
Window#getStatusBarColor
-
Window#setNavigationBarColor
(জেসচার নেভিগেশনের জন্য) -
Window#setNavigationBarDividerColor
-
Window#setStatusBarColor
Stable configuration
If your app targets Android 15 (API level 35) or higher, Configuration
no
longer excludes the system bars. If you use the screen size in the
Configuration
class for layout calculation, you should replace it with better
alternatives like an appropriate ViewGroup
, WindowInsets
, or
WindowMetricsCalculator
depending on your need.
Configuration
has been available since API 1. It is typically obtained from
Activity.onConfigurationChanged
. It provides information like window density,
orientation, and sizes. One important characteristic about the window sizes
returned from Configuration
is that it previously excluded the system bars.
The configuration size is typically used for resource selection, such as
/res/layout-h500dp
, and this is still a valid use case. However, using it for
layout calculation has always been discouraged. If you do so, you should move
away from it now. You should replace the use of Configuration
with something
more suitable depending on your use case.
If you use it to calculate the layout, use an appropriate ViewGroup
, such as
CoordinatorLayout
or ConstraintLayout
. If you use it to determine the height
of the system navbar, use WindowInsets
. If you want to know the current size
of your app window, use computeCurrentWindowMetrics
.
The following list describes the fields affected by this change:
Configuration.screenWidthDp
andscreenHeightDp
sizes no longer exclude the system bars.Configuration.smallestScreenWidthDp
is indirectly affected by changes toscreenWidthDp
andscreenHeightDp
.Configuration.orientation
is indirectly affected by changes toscreenWidthDp
andscreenHeightDp
on close-to-square devices.Display.getSize(Point)
is indirectly affected by the changes inConfiguration
. This was deprecated beginning in API level 30.Display.getMetrics()
has already worked like this since API level 33.
elegantTextHeight অ্যাট্রিবিউট ডিফল্টে সত্য
অ্যান্ড্রয়েড 15 (API স্তর 35) লক্ষ্য করা অ্যাপগুলির জন্য, elegantTextHeight
TextView
বৈশিষ্ট্যটি ডিফল্টরূপে true
হয়ে যায়, ডিফল্টরূপে ব্যবহৃত কমপ্যাক্ট ফন্টটিকে এমন কিছু স্ক্রিপ্টের সাথে প্রতিস্থাপন করে যেখানে বড় উল্লম্ব মেট্রিক্স রয়েছে যা অনেক বেশি পাঠযোগ্য। বিন্যাস ভাঙা প্রতিরোধ করার জন্য কমপ্যাক্ট ফন্ট চালু করা হয়েছিল; অ্যান্ড্রয়েড 13 (এপিআই লেভেল 33) fallbackLineSpacing
অ্যাট্রিবিউট ব্যবহার করে টেক্সট লেআউটকে উল্লম্ব উচ্চতা প্রসারিত করার অনুমতি দিয়ে এই ধরনের অনেক ভাঙন প্রতিরোধ করে।
অ্যান্ড্রয়েড 15-এ, কমপ্যাক্ট ফন্টটি এখনও সিস্টেমে রয়ে গেছে, তাই আপনার অ্যাপটি আগের মতো একই আচরণ পেতে elegantTextHeight
false
সেট করতে পারে, তবে এটি আসন্ন রিলিজে সমর্থিত হওয়ার সম্ভাবনা কম। সুতরাং, যদি আপনার অ্যাপ নিম্নলিখিত স্ক্রিপ্টগুলিকে সমর্থন করে: আরবি, লাও, মায়ানমার, তামিল, গুজরাটি, কন্নড়, মালয়ালম, ওড়িয়া, তেলুগু বা থাই, তাহলে আপনার অ্যাপটি true
elegantTextHeight
সেট করে পরীক্ষা করুন।
জটিল অক্ষর আকারের জন্য TextView প্রস্থ পরিবর্তন
অ্যান্ড্রয়েডের পূর্ববর্তী সংস্করণগুলিতে, কিছু অভিশাপযুক্ত ফন্ট বা ভাষা যা জটিল আকার ধারণ করে সেগুলি পূর্ববর্তী বা পরবর্তী অক্ষরের ক্ষেত্রে অক্ষরগুলি আঁকতে পারে। কিছু ক্ষেত্রে, এই জাতীয় অক্ষরগুলি শুরুতে বা শেষের অবস্থানে ক্লিপ করা হয়েছিল। অ্যান্ড্রয়েড 15 থেকে শুরু করে, একটি TextView
এই ধরনের অক্ষরগুলির জন্য পর্যাপ্ত জায়গা আঁকার জন্য প্রস্থ বরাদ্দ করে এবং ক্লিপিং রোধ করতে অ্যাপগুলিকে বাম দিকে অতিরিক্ত প্যাডিংয়ের অনুরোধ করার অনুমতি দেয়।
যেহেতু এই পরিবর্তনটি একটি TextView
কিভাবে প্রস্থ নির্ধারণ করে তা প্রভাবিত করে, তাই যদি অ্যাপটি Android 15 (API লেভেল 35) বা তার বেশি লক্ষ্য করে তাহলে TextView
ডিফল্টভাবে আরও প্রস্থ বরাদ্দ করে। আপনি TextView
এ setUseBoundsForWidth
API-কে কল করে এই আচরণটি সক্ষম বা অক্ষম করতে পারেন।
যেহেতু বাম প্যাডিং যোগ করার ফলে বিদ্যমান লেআউটগুলির জন্য একটি মিসলাইনমেন্ট হতে পারে, প্যাডিংটি ডিফল্টরূপে যোগ করা হয় না এমনকি Android 15 বা উচ্চতরকে লক্ষ্য করে এমন অ্যাপগুলির জন্যও। যাইহোক, আপনি setShiftDrawingOffsetForStartOverhang
এ কল করে ক্লিপিং প্রতিরোধে অতিরিক্ত প্যাডিং যোগ করতে পারেন।
নিম্নলিখিত উদাহরণগুলি দেখায় কিভাবে এই পরিবর্তনগুলি কিছু ফন্ট এবং ভাষার জন্য পাঠ্য বিন্যাস উন্নত করতে পারে৷
EditText-এর জন্য স্থানীয়-সচেতন ডিফল্ট লাইন উচ্চতা
অ্যান্ড্রয়েডের পূর্ববর্তী সংস্করণগুলিতে, বর্তমান লোকেলের সাথে মেলে ফন্টের লাইনের উচ্চতা মেটাতে পাঠ্য বিন্যাস পাঠ্যের উচ্চতাকে প্রসারিত করে। উদাহরণস্বরূপ, যদি বিষয়বস্তু জাপানি ভাষায় হয়, কারণ জাপানি ফন্টের লাইনের উচ্চতা একটি ল্যাটিন ফন্টের চেয়ে সামান্য বড়, পাঠ্যের উচ্চতা কিছুটা বড় হয়ে গেছে। যাইহোক, লাইনের উচ্চতায় এই পার্থক্য থাকা সত্ত্বেও, EditText
উপাদানটি অভিন্ন আকারের ছিল, লোকেল ব্যবহার করা নির্বিশেষে, নিম্নলিখিত ছবিতে চিত্রিত হয়েছে:
Android 15 (API লেভেল 35) লক্ষ্য করা অ্যাপগুলির জন্য, একটি ন্যূনতম লাইন উচ্চতা এখন EditText
এর জন্য নির্দিষ্ট লোকেলের রেফারেন্স ফন্টের সাথে মেলে, যা নিম্নলিখিত ছবিতে দেখানো হয়েছে:
প্রয়োজনে, আপনার অ্যাপ useLocalePreferredLineHeightForMinimum
অ্যাট্রিবিউটটি false
নির্দিষ্ট করে পূর্ববর্তী আচরণ পুনরুদ্ধার করতে পারে এবং আপনার অ্যাপটি Kotlin এবং Java এ setMinimumFontMetrics
API ব্যবহার করে কাস্টম ন্যূনতম উল্লম্ব মেট্রিক্স সেট করতে পারে।
ক্যামেরা এবং মিডিয়া
Android 15 অ্যানড্রয়েড 15 বা উচ্চতরকে লক্ষ্য করে এমন অ্যাপগুলির জন্য ক্যামেরা এবং মিডিয়া আচরণে নিম্নলিখিত পরিবর্তনগুলি করে৷
অডিও ফোকাস অনুরোধের উপর সীমাবদ্ধতা
যে অ্যাপগুলি Android 15 (API স্তর 35) টার্গেট করে সেগুলিকে অবশ্যই শীর্ষ অ্যাপ হতে হবে বা অডিও ফোকাসের অনুরোধ করার জন্য একটি ফোরগ্রাউন্ড পরিষেবা চালাতে হবে৷ যদি কোনো অ্যাপ ফোকাসের অনুরোধ করার চেষ্টা করে যখন এটি এই প্রয়োজনীয়তার একটি পূরণ না করে, তাহলে কলটি AUDIOFOCUS_REQUEST_FAILED
ফেরত দেয়।
আপনি অডিও ফোকাস পরিচালনা অডিও ফোকাস সম্পর্কে আরও জানতে পারেন।
নন-SDK সীমাবদ্ধতা আপডেট করা হয়েছে
Android 15-এ Android বিকাশকারীদের সাথে সহযোগিতা এবং সর্বশেষ অভ্যন্তরীণ পরীক্ষার উপর ভিত্তি করে সীমাবদ্ধ নন-SDK ইন্টারফেসের আপডেট করা তালিকা অন্তর্ভুক্ত রয়েছে। যখনই সম্ভব, আমরা নিশ্চিত করি যে আমরা নন-SDK ইন্টারফেস সীমাবদ্ধ করার আগে সর্বজনীন বিকল্পগুলি উপলব্ধ রয়েছে।
যদি আপনার অ্যাপটি Android 15 কে টার্গেট না করে, তবে এই পরিবর্তনগুলির মধ্যে কিছু আপনাকে অবিলম্বে প্রভাবিত করতে পারে না। যাইহোক, আপনার অ্যাপের টার্গেট API স্তরের উপর নির্ভর করে কিছু নন-SDK ইন্টারফেস অ্যাক্সেস করা আপনার অ্যাপের পক্ষে সম্ভব হলেও, যেকোনো নন-SDK পদ্ধতি বা ক্ষেত্র ব্যবহার করলে সবসময় আপনার অ্যাপ ভেঙে যাওয়ার উচ্চ ঝুঁকি থাকে।
আপনি যদি নিশ্চিত না হন যে আপনার অ্যাপ নন-SDK ইন্টারফেস ব্যবহার করে, তাহলে আপনি খুঁজে বের করতে আপনার অ্যাপ পরীক্ষা করতে পারেন। যদি আপনার অ্যাপ নন-SDK ইন্টারফেসের উপর নির্ভর করে, তাহলে আপনার SDK বিকল্পগুলিতে স্থানান্তরের পরিকল্পনা শুরু করা উচিত। তা সত্ত্বেও, আমরা বুঝি যে কিছু অ্যাপে নন-SDK ইন্টারফেস ব্যবহার করার জন্য বৈধ ব্যবহারের ক্ষেত্রে রয়েছে। আপনি যদি আপনার অ্যাপে একটি বৈশিষ্ট্যের জন্য একটি নন-SDK ইন্টারফেস ব্যবহার করার বিকল্প খুঁজে না পান, তাহলে আপনাকে একটি নতুন সর্বজনীন API অনুরোধ করা উচিত।
To learn more about the changes in this release of Android, see Updates to non-SDK interface restrictions in Android 15. To learn more about non-SDK interfaces generally, see Restrictions on non-SDK interfaces.