jeweltry 0.0.4 copy "jeweltry: ^0.0.4" to clipboard
jeweltry: ^0.0.4 copied to clipboard

JewelTry package for flutter apps.

Jeweltry #

A jewellery tryon package for flutter apps.

Logo

Requirements
Dart sdk ^3.5.0
Flutter >=3.24.0
Android minSdkVersion >= 19
compileSdk 34
iOS 12.0+ --ios-language swift
Xcode version >= 15.0
MacOS 10.14+
Xcode version >= 15.0

Setup #

For ios

ios>Podfile

post_install do |installer|
  installer.pods_project.targets.each do |target|
    flutter_additional_ios_build_settings(target)
    target.build_configurations.each do |config|
                    config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= [
                       '$(inherited)',
                       'PERMISSION_CAMERA=1',
                       'PERMISSION_MICROPHONE=1',
                       'PERMISSION_PHOTOS=1',
                       'PERMISSION_LOCATION_WHENINUSE=0',
                       'PERMISSION_MEDIA_LIBRARY=1',
                     ]
            end
  end
end

ios>Runner>info.plist

<key>NSPhotoLibraryUsageDescription</key>
<string>App needs access to photo lib for profile images</string>
<key>NSAppleMusicUsageDescription</key>
<string>This app needs access to your Apple Music library to enhance your experience with personalized audio integration.</string>
<key>NSCameraUsageDescription</key>
<string>To capture profile photo please grant camera access</string>
<key>NSLocationWhenInUseUsageDescription</key>


Android #

<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<uses-permission android:name="android.permission.CAMERA"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />