Nanfeng

Notes on software development, code, and curious ideas

Fix Cocos Creator Android checkReleaseDuplicateClasses with AndroidX and Jetifier

The exported project failed at checkReleaseDuplicateClasses:

Gradle error

Add these lines to gradle.properties:

1
2
Android.useAndroidX=true
Android.enableJetifier=true
gradle.properties

Sync Gradle and rebuild. If duplicates remain, inspect the dependency tree instead of relying on Jetifier alone.

+