tom5079
03/02/2021, 11:49 AMuses-sdk:minSdkVersion 16 cannot be smaller than version 21 declared in library [org.kodein.di:kodein-di-framework-android-x:7.4.0]
when I'm using version 7.3.0 and up
Does kodein require minSdk 21 from that version? I can't find any documentation about it.tom5079
03/02/2021, 11:56 AMAndroidManifest.xml
in the aar in mavenCentral contains different content from the one on Github.
mavenCentral
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="<http://schemas.android.com/apk/res/android>"
package="org.kodein.di.android.x" >
<uses-sdk android:minSdkVersion="21" />
</manifest>
Github
<?xml version="1.0" encoding="UTF-8"?>
<manifest package="org.kodein.di.android.x" />
tom5079
03/02/2021, 12:19 PMromainbsl
03/02/2021, 1:23 PMtom5079
03/02/2021, 1:35 PMromainbsl
03/02/2021, 2:13 PMtom5079
03/02/2021, 11:07 PMromainbsl
03/03/2021, 8:47 AMsalomonbrys
03/04/2021, 5:19 PMkodein-di-framework-android-*
(which add Android specific utilities) are affected by this minimum versioning. "Regular" kodein-di
works on all versions of Android.
@romainbsl Maybe you could update the doc to reflect that?romainbsl
03/05/2021, 11:23 AM