drag-sort-listview
drag-sort-listview copied to clipboard
New maven and maven-android version support
Trying to build the projects with maven v. 3.22 results in an error. The maven-android plugin must be updated to 3.8.0 and a sdk platform must be specified as such:
<plugin>
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
<artifactId>android-maven-plugin</artifactId>
<version>3.8.0</version>
<extensions>true</extensions>
<configuration>
<sdk><platform>20</platform></sdk>
</configuration>
</plugin>
At least that worked for me :)
Wish I'd looked here sooner. I encountered the same problem and found the same solution myself.