LeGoffMael / insta_assets_picker

An image (and videos) picker similar with Instagram, supports multi picking, crop and aspect ratio.
https://pub.dev/packages/insta_assets_picker
MIT License
81 stars 37 forks source link

🐛 Fix compatibility with AGP 8.0 #47

Closed LeGoffMael closed 3 months ago

LeGoffMael commented 3 months ago

fix #38

Gradle script to detect dependencies without namespace :

subprojects {
     afterEvaluate { project ->
         if (project.hasProperty('android')) {
             project.android {
                 if (namespace == null) {
                     print("Setting ${project.group} as no android namespace")
                     namespace project.group
                 }
             }
         }
    }
}