mpatric / mp3agic

A java library for reading mp3 files and reading / manipulating the ID3 tags (ID3v1 and ID3v2.2 through ID3v2.4).
MIT License
1.2k stars 310 forks source link

Allow inclusion as Android app module #195

Open gxcare opened 2 years ago

gxcare commented 2 years ago

With those two files the library can be used as a module in Android apps.

The only requirement for the user is to add the following declaration in the app build.gradle file: ext { compileSdkVersion = 31 }

sphrak commented 1 year ago

correct me if im wrong but wont this make it impossible for jvm only projects to use it since it always applies the android framework plugin? 🤔

gxcare commented 1 year ago

Yes, the provided gradle file is able to build only for Android, but you are not providing one for jvm only as I guess in that case the build environment is maven.