Unreal Engine 5 androidx.fragment:fragment:1.0.0 outdated

Error [ANDROID] androidx.fragment:fragment:1.0.0

This SDK version has been reported as outdated. Consider upgrading to a newer version (1.1.0+).

The solution I find, that works, is really simple, go to

C:\Program Files\Epic Games\UE(your engine version)\Engine\Source\ThirdParty\AndroidPermission\permission_library - search for the file additions.gradle - before making changes to it make sure the file is not Read only, if it is, open the file Properties, uncheck the tick box and apply

Now, open the file with a text (.txt) editor (like Notepad), add the following line of code below the implementation statement in the curly brackets (braces)

constraints.implementation 'androidx.fragment:fragment:1.3.6'

Then save. That was all you need to do for the androidx.fragment:fragment to be updated in your future packaging

The final piece of code should look like this:

dependencies {

implementation 'androidx.legacy:legacy-support-v13:1.0.0'

constraints.implementation 'androidx.fragment:fragment:1.3.6'

}

About Me - I'm an indie game dev, active on Unreal Engine since 2019, I made multiple games for PC and Android platforms - if you want to support a fellow dev, check out my games on Google Play Store - I'm also a music producer and web dev - if you want to follow my projects the links are above. Have a nice day!

Read more articles about Unreal Engine

Unreal Engine 5.4.2 SDK NDK JDK 0 Android Errors App Store

Unreal Engine 5 com.google.android.play:core:1.10.0

Unreal Engine 5 XAPK File Validation Failed

Unreal Engine target API level, SDK issues, Billing Library errors Solution

Unreal Engine Migrate a Project to a New Engine Version

Unreal Engine Android App Bundle (Different Type of Key Store) To Upload .aab on Google Play Store

Unreal Engine - How To Generate Key Store for .apk (Sign Projects for Release)

Unreal Engine 5 on Android - Permission Required, Storage, Error Screen

Unreal Engine 5 androidx.fragment:fragment:1.0.0 outdated

Unreal Engine 5 Update Google Play Billing Library 3, 4 or 5 to 6

Unreal Engine 5 Package Project Android Set up SDK NDK JDK 2024 update

Comments