photo_classifier.podspec 1.5 KB

1234567891011121314151617181920212223242526272829
  1. #
  2. # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html.
  3. # Run `pod lib lint photo_classifier.podspec` to validate before publishing.
  4. #
  5. Pod::Spec.new do |s|
  6. s.name = 'photo_classifier'
  7. s.version = '1.0.0+1'
  8. s.summary = 'A photo classifier plugin for Clean Pro APP, Helps to classify photos with different types, such as similar, people, screenshot, blurry, etc.'
  9. s.description = <<-DESC
  10. A photo classifier plugin for Clean Pro APP, Helps to classify photos with different types, such as similar, people, screenshot, blurry, etc.
  11. DESC
  12. s.homepage = 'https://github.com/atmob/photo_classifier'
  13. s.license = { :file => '../LICENSE' }
  14. s.author = { 'Groot' => 'chenning@atmob.com' }
  15. s.source = { :path => '.' }
  16. s.source_files = 'Classes/**/*'
  17. s.dependency 'Flutter'
  18. s.platform = :ios, '15.0'
  19. # Flutter.framework does not contain a i386 slice.
  20. s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' }
  21. s.swift_version = '5.0'
  22. # If your plugin requires a privacy manifest, for example if it uses any
  23. # required reason APIs, update the PrivacyInfo.xcprivacy file to describe your
  24. # plugin's privacy impact, and then uncomment this line. For more information,
  25. # see https://developer.apple.com/documentation/bundleresources/privacy_manifest_files
  26. # s.resource_bundles = {'photo_classifier_privacy' => ['Resources/PrivacyInfo.xcprivacy']}
  27. end