tkyaji / cordova-plugin-crypt-file

This plugin to encrypt the source files.
Apache License 2.0
178 stars 116 forks source link

Support Android-X in cordova v10.0.0 / cordova-android@9.0.0 #92

Open WuglyakBolgoink opened 3 years ago

WuglyakBolgoink commented 3 years ago
 - Added AndroidX Support
        AndroidX is the new and improved namespace for the Android Support Libraries. The original support libraries are no longer maintained.
        It is recommended to use AndroidX so that your app is running the latest support libraries but, by default, Cordova has AndroidX support disabled for compatibility with existing plugins.
        A lot of the Android supported plugins are still using the old support libraries which can not build when using the AndroidX support libraries. It is recommended to research each plugin to see if they support AndroidX before enabling this feature.
        It is recommended for plugin developers to start migrating to support AndroidX. App developers could also use Jetifier to automatically migrates their existing third-party libraries to use AndroidX.
        You can enable this feature by setting the AndroidXEnabled preference to true in config.xml.
        <preference name="AndroidXEnabled" value="true" />
        If you were previously using the cordova-plugin-androidx plugin to enable AndroidX support, this plugin is no longer needed with this preference flag.
        The cordova-plugin-androidx-adapter plugin can be used to migrate the legacy references to the new AndroidX references.