@baic/yolk-cli 2.1.0-alpha.8 → 2.1.0-github.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/compiled/commander/index.d.ts +430 -0
- package/compiled/commander/index.js +1970 -0
- package/compiled/commander/package.json +1 -0
- package/compiled/glob/index.d.ts +101 -0
- package/compiled/glob/index.js +2218 -0
- package/compiled/glob/package.json +1 -0
- package/compiled/minimatch/index.d.ts +312 -0
- package/compiled/minimatch/index.js +1254 -0
- package/compiled/minimatch/package.json +1 -0
- package/compiled/mkdirp/index.d.ts +114 -0
- package/compiled/mkdirp/index.js +348 -0
- package/compiled/mkdirp/package.json +1 -0
- package/compiled/mustache/index.d.ts +423 -0
- package/compiled/mustache/index.js +828 -0
- package/compiled/mustache/package.json +1 -0
- package/compiled/prettier/index.d.ts +892 -0
- package/compiled/prettier/index.js +48593 -0
- package/compiled/prettier/package.json +1 -0
- package/compiled/rimraf/index.d.ts +48 -0
- package/compiled/rimraf/index.js +449 -0
- package/compiled/rimraf/package.json +1 -0
- package/compiled/staged-git-files/index.js +267 -0
- package/compiled/staged-git-files/package.json +1 -0
- package/es/.prettierrc.js +13 -0
- package/es/index.d.ts +1 -0
- package/es/index.js +1 -1
- package/es/yolk.js +1 -1
- package/lib/.prettierrc.js +13 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +1 -1
- package/lib/yolk.js +1 -1
- package/package.json +38 -26
- package/templates/ice-mobile/.eslintrc +1 -1
- package/templates/ice-mobile/.gitignore.tpl +10 -3
- package/templates/ice-mobile/.icerc.ts +2 -2
- package/templates/ice-mobile/.npmrc.tpl +2 -0
- package/templates/ice-mobile/.prettierignore +4 -5
- package/templates/ice-mobile/.prettierrc.js +1 -0
- package/templates/ice-mobile/README.md.tpl +1 -1
- package/templates/ice-mobile/package.json.tpl +5 -0
- package/templates/ice-mobile/public/index.html +15 -0
- package/templates/ice-mobile/src/app.tsx +1 -1
- package/templates/ice-mobile/src/pages/demo/examples/Input.tsx +1 -2
- package/templates/ice-mobile/src/pages/demo/examples/List/4.tsx +2 -2
- package/templates/ice-mobile/src/pages/demo/examples/NumberInput/1.tsx +1 -2
- package/templates/ice-mobile/src/pages/demo/examples/NumberInput/2.tsx +1 -2
- package/templates/ice-mobile/src/pages/demo/examples/NumberInput/3.tsx +1 -2
- package/templates/ice-mobile/src/pages/demo/examples/NumberInput/4.tsx +1 -2
- package/templates/ice-mobile/src/routes.ts +2 -1
- package/templates/ice-mobile-h5+app/.eslintrc +6 -0
- package/templates/ice-mobile-h5+app/.gitignore.tpl +37 -0
- package/templates/ice-mobile-h5+app/.icerc.ts +6 -0
- package/templates/ice-mobile-h5+app/.npmrc.tpl +2 -0
- package/templates/ice-mobile-h5+app/.prettierignore +8 -0
- package/templates/ice-mobile-h5+app/.prettierrc.js +1 -0
- package/templates/ice-mobile-h5+app/.stylelintrc +3 -0
- package/templates/ice-mobile-h5+app/README.md.tpl +34 -0
- package/templates/ice-mobile-h5+app/h5+app/manifest.json +87 -0
- package/templates/ice-mobile-h5+app/package.json.tpl +16 -0
- package/templates/ice-mobile-h5+app/public/favicon.ico +0 -0
- package/templates/ice-mobile-h5+app/public/index.html +15 -0
- package/templates/ice-mobile-h5+app/src/app.tsx +5 -0
- package/templates/ice-mobile-h5+app/src/common/request.ts +3 -0
- package/templates/ice-mobile-h5+app/src/common/util.ts +7 -0
- package/templates/ice-mobile-h5+app/src/components/index.ts +0 -0
- package/templates/ice-mobile-h5+app/src/global.less +3 -0
- package/templates/ice-mobile-h5+app/src/layouts/index.tsx +5 -0
- package/templates/ice-mobile-h5+app/src/pages/404.tsx +10 -0
- package/templates/ice-mobile-h5+app/src/pages/demo/examples/BarCode.tsx +4 -0
- package/templates/ice-mobile-h5+app/src/pages/demo/examples/Iconfont.tsx +18 -0
- package/templates/ice-mobile-h5+app/src/pages/demo/examples/Input.tsx +16 -0
- package/templates/ice-mobile-h5+app/src/pages/demo/examples/List/1.tsx +12 -0
- package/templates/ice-mobile-h5+app/src/pages/demo/examples/List/2.tsx +29 -0
- package/templates/ice-mobile-h5+app/src/pages/demo/examples/List/3.tsx +29 -0
- package/templates/ice-mobile-h5+app/src/pages/demo/examples/List/4.tsx +55 -0
- package/templates/ice-mobile-h5+app/src/pages/demo/examples/List/mock.ts +30 -0
- package/templates/ice-mobile-h5+app/src/pages/demo/examples/Loading.tsx +12 -0
- package/templates/ice-mobile-h5+app/src/pages/demo/examples/NumberInput/1.tsx +16 -0
- package/templates/ice-mobile-h5+app/src/pages/demo/examples/NumberInput/2.tsx +16 -0
- package/templates/ice-mobile-h5+app/src/pages/demo/examples/NumberInput/3.tsx +16 -0
- package/templates/ice-mobile-h5+app/src/pages/demo/examples/NumberInput/4.tsx +16 -0
- package/templates/ice-mobile-h5+app/src/pages/demo/examples/PagingList/1.tsx +6 -0
- package/templates/ice-mobile-h5+app/src/pages/demo/examples/QrCode.tsx +4 -0
- package/templates/ice-mobile-h5+app/src/pages/demo/examples/Required.tsx +4 -0
- package/templates/ice-mobile-h5+app/src/pages/demo/examples/TimerButton.tsx +4 -0
- package/templates/ice-mobile-h5+app/src/pages/demo/examples/usePreload.tsx +9 -0
- package/templates/ice-mobile-h5+app/src/pages/demo/index.tsx +87 -0
- package/templates/ice-mobile-h5+app/src/pages/index.tsx +3 -0
- package/templates/ice-mobile-h5+app/src/routes.ts +29 -0
- package/templates/ice-mobile-h5+app/src/types/user.d.ts +3 -0
- package/templates/ice-mobile-h5+app/tsconfig.json +3 -0
- package/templates/ice-mobile-h5+app/typings.d.ts +1 -0
- package/templates/ice-mobile-native/.eslintrc +6 -0
- package/templates/ice-mobile-native/.gitignore.tpl +42 -0
- package/templates/ice-mobile-native/.icerc.ts +8 -0
- package/templates/ice-mobile-native/.npmrc.tpl +2 -0
- package/templates/ice-mobile-native/.prettierignore +8 -0
- package/templates/ice-mobile-native/.prettierrc.js +1 -0
- package/templates/ice-mobile-native/.stylelintrc +3 -0
- package/templates/ice-mobile-native/README.md.tpl +34 -0
- package/templates/ice-mobile-native/android/app/6209ba977ffec7d62675a4e254ebc209.keystore +0 -0
- package/templates/ice-mobile-native/android/app/build.gradle +66 -0
- package/templates/ice-mobile-native/android/app/libs/Bluetooth-release.aar +0 -0
- package/templates/ice-mobile-native/android/app/libs/PosPrinterSDK.jar +0 -0
- package/templates/ice-mobile-native/android/app/libs/android-gif-drawable-release@1.2.23.aar +0 -0
- package/templates/ice-mobile-native/android/app/libs/lib.5plus.base-release.aar +0 -0
- package/templates/ice-mobile-native/android/app/libs/oaid_sdk_1.0.25.aar +0 -0
- package/templates/ice-mobile-native/android/app/libs/webview-x5-release.aar +0 -0
- package/templates/ice-mobile-native/android/app/proguard-rules.pro +303 -0
- package/templates/ice-mobile-native/android/app/src/main/AndroidManifest.xml +98 -0
- package/templates/ice-mobile-native/android/app/src/main/assets/apps/H5ECA1DEE/www/manifest.json +89 -0
- package/templates/ice-mobile-native/android/app/src/main/assets/data/dcloud_control.xml +6 -0
- package/templates/ice-mobile-native/android/app/src/main/assets/data/dcloud_error.html +92 -0
- package/templates/ice-mobile-native/android/app/src/main/assets/data/dcloud_properties.xml +19 -0
- package/templates/ice-mobile-native/android/app/src/main/java/plus/H5ECA1DEE/JSBridge/FunctionCreator.java +119 -0
- package/templates/ice-mobile-native/android/app/src/main/java/plus/H5ECA1DEE/MPandoraEntryActivity.java +17 -0
- package/templates/ice-mobile-native/android/app/src/main/java/plus/H5ECA1DEE/Xprinter/FunctionFactory/Creator.java +17 -0
- package/templates/ice-mobile-native/android/app/src/main/java/plus/H5ECA1DEE/Xprinter/FunctionFactory/Error.java +26 -0
- package/templates/ice-mobile-native/android/app/src/main/java/plus/H5ECA1DEE/Xprinter/JSPlugin.java +265 -0
- package/templates/ice-mobile-native/android/app/src/main/res/drawable/icon.png +0 -0
- package/templates/ice-mobile-native/android/app/src/main/res/values/colors.xml +5 -0
- package/templates/ice-mobile-native/android/app/src/main/res/values/strings.xml +3 -0
- package/templates/ice-mobile-native/android/build.gradle +9 -0
- package/templates/ice-mobile-native/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/templates/ice-mobile-native/android/gradle/wrapper/gradle-wrapper.properties +6 -0
- package/templates/ice-mobile-native/android/gradle.properties +22 -0
- package/templates/ice-mobile-native/android/gradlew +185 -0
- package/templates/ice-mobile-native/android/gradlew.bat +89 -0
- package/templates/ice-mobile-native/android/settings.gradle +16 -0
- package/templates/ice-mobile-native/ios/HBuilder/HBuilder.entitlements +5 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/AppIcon.appiconset/1024x1024.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/AppIcon.appiconset/120x120-1.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/AppIcon.appiconset/120x120.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/AppIcon.appiconset/180x180.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/AppIcon.appiconset/40x40.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/AppIcon.appiconset/58x58.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/AppIcon.appiconset/60x60.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/AppIcon.appiconset/80x80.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/AppIcon.appiconset/87x87.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/AppIcon.appiconset/Contents.json +62 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/Contents.json +6 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/Image.imageset/Contents.json +20 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/app.imageset/120x120.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/app.imageset/180x180.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/app.imageset/60x60.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/app.imageset/Contents.json +26 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/control_brightness.imageset/Contents.json +21 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/control_brightness.imageset/brightness@2x.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/exitfullscreen.imageset/Contents.json +22 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/exitfullscreen.imageset/shrinkscreen@2x.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/exitfullscreen.imageset/shrinkscreen@3x.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/exposure_slider_max.imageset/Contents.json +22 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/exposure_slider_max.imageset//346/233/235/345/205/211-1.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/exposure_slider_max.imageset//346/233/235/345/205/211.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/focus_border.imageset/Contents.json +22 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/focus_border.imageset//345/257/271/347/204/246/346/241/206-1.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/focus_border.imageset//345/257/271/347/204/246/346/241/206.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/focus_slider_line.imageset/Contents.json +21 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/focus_slider_line.imageset//345/257/271/347/204/246/347/272/277.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/focus_slider_thumb.imageset/Contents.json +22 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/focus_slider_thumb.imageset//345/257/271/347/204/246/345/272/225-1.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/focus_slider_thumb.imageset//345/257/271/347/204/246/345/272/225.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/full-screen.imageset/Contents.json +22 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/full-screen.imageset/fullscreen@2x.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/full-screen.imageset/fullscreen@3x.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/play.imageset/Contents.json +23 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/play.imageset/play.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/play.imageset/play@2x.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/play.imageset/play@3x.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/player_back.imageset/Contents.json +23 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/player_back.imageset/player_back.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/player_back.imageset/player_back@2x.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/player_back.imageset/player_back@3x.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/player_play.imageset/Contents.json +23 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/player_play.imageset/play.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/player_play.imageset/play@2x.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/player_play.imageset/play@3x.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/player_stop.imageset/Contents.json +23 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/player_stop.imageset/player-stop.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/player_stop.imageset/player-stop@2x.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/player_stop.imageset/player-stop@3x.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/video_ic_muteoff.imageset/Contents.json +22 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/video_ic_muteoff.imageset/video_ic_muteoff@2x.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/video_ic_muteoff.imageset/video_ic_muteoff@3x.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/video_ic_muteon.imageset/Contents.json +22 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/video_ic_muteon.imageset/video_ic_muteon@2x.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/video_ic_muteon.imageset/video_ic_muteon@3x.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/video_volume.imageset/Contents.json +22 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/video_volume.imageset/video_volume@2x.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder/Images.xcassets/video_volume.imageset/video_volume@3x.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder-Hello/120x120.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder-Hello/180x180.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder-Hello/AppDelegate.h +16 -0
- package/templates/ice-mobile-native/ios/HBuilder-Hello/AppDelegate.m +225 -0
- package/templates/ice-mobile-native/ios/HBuilder-Hello/Base.lproj/LaunchScreen.storyboard +65 -0
- package/templates/ice-mobile-native/ios/HBuilder-Hello/English.lproj/Localizable.strings +13 -0
- package/templates/ice-mobile-native/ios/HBuilder-Hello/HBuilder-Hello-Info.plist +486 -0
- package/templates/ice-mobile-native/ios/HBuilder-Hello/HBuilder-Hello-Prefix.pch +16 -0
- package/templates/ice-mobile-native/ios/HBuilder-Hello/LaunchScreen.storyboard +67 -0
- package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/manifest.json +79 -0
- package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/1024x1024.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/120x120.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/144x144.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/152x152.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/167x167.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/180x180.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/192x192.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/20x20.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/29x29.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/40x40.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/58x58.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/60x60.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/72x72.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/76x76.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/80x80.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/87x87.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/96x96.png +0 -0
- package/templates/ice-mobile-native/ios/HBuilder-Hello/ViewController.h +19 -0
- package/templates/ice-mobile-native/ios/HBuilder-Hello/ViewController.m +161 -0
- package/templates/ice-mobile-native/ios/HBuilder-Hello/Xprinter.h +19 -0
- package/templates/ice-mobile-native/ios/HBuilder-Hello/Xprinter.m +235 -0
- package/templates/ice-mobile-native/ios/HBuilder-Hello/control.xml +107 -0
- package/templates/ice-mobile-native/ios/HBuilder-Hello/en.lproj/InfoPlist.strings +4 -0
- package/templates/ice-mobile-native/ios/HBuilder-Hello/en.lproj/Localizable.strings +12 -0
- package/templates/ice-mobile-native/ios/HBuilder-Hello/main.m +18 -0
- package/templates/ice-mobile-native/ios/HBuilder-Hello/zh-Hans.lproj/InfoPlist.strings +4 -0
- package/templates/ice-mobile-native/ios/HBuilder-Hello/zh-Hans.lproj/LaunchScreen.strings +3 -0
- package/templates/ice-mobile-native/ios/HBuilder-Hello/zh-Hans.lproj/Localizable.strings +13 -0
- package/templates/ice-mobile-native/ios/HBuilder-Hello.xcodeproj/project.pbxproj +1607 -0
- package/templates/ice-mobile-native/package.json.tpl +16 -0
- package/templates/ice-mobile-native/public/favicon.ico +0 -0
- package/templates/ice-mobile-native/public/index.html +15 -0
- package/templates/ice-mobile-native/src/app.tsx +5 -0
- package/templates/ice-mobile-native/src/common/Xprinter.ts +58 -0
- package/templates/ice-mobile-native/src/common/bluetooth.ts +354 -0
- package/templates/ice-mobile-native/src/common/bridge.ts +59 -0
- package/templates/ice-mobile-native/src/common/request.ts +3 -0
- package/templates/ice-mobile-native/src/common/util.ts +7 -0
- package/templates/ice-mobile-native/src/components/index.ts +0 -0
- package/templates/ice-mobile-native/src/global.less +3 -0
- package/templates/ice-mobile-native/src/layouts/index.tsx +5 -0
- package/templates/ice-mobile-native/src/pages/404.tsx +10 -0
- package/templates/ice-mobile-native/src/pages/demo/examples/BarCode.tsx +4 -0
- package/templates/ice-mobile-native/src/pages/demo/examples/Iconfont.tsx +18 -0
- package/templates/ice-mobile-native/src/pages/demo/examples/Input.tsx +16 -0
- package/templates/ice-mobile-native/src/pages/demo/examples/List/1.tsx +12 -0
- package/templates/ice-mobile-native/src/pages/demo/examples/List/2.tsx +29 -0
- package/templates/ice-mobile-native/src/pages/demo/examples/List/3.tsx +29 -0
- package/templates/ice-mobile-native/src/pages/demo/examples/List/4.tsx +55 -0
- package/templates/ice-mobile-native/src/pages/demo/examples/List/mock.ts +30 -0
- package/templates/ice-mobile-native/src/pages/demo/examples/Loading.tsx +12 -0
- package/templates/ice-mobile-native/src/pages/demo/examples/NumberInput/1.tsx +16 -0
- package/templates/ice-mobile-native/src/pages/demo/examples/NumberInput/2.tsx +16 -0
- package/templates/ice-mobile-native/src/pages/demo/examples/NumberInput/3.tsx +16 -0
- package/templates/ice-mobile-native/src/pages/demo/examples/NumberInput/4.tsx +16 -0
- package/templates/ice-mobile-native/src/pages/demo/examples/PagingList/1.tsx +6 -0
- package/templates/ice-mobile-native/src/pages/demo/examples/QrCode.tsx +4 -0
- package/templates/ice-mobile-native/src/pages/demo/examples/Required.tsx +4 -0
- package/templates/ice-mobile-native/src/pages/demo/examples/TimerButton.tsx +4 -0
- package/templates/ice-mobile-native/src/pages/demo/examples/Xprinter/index.tsx +64 -0
- package/templates/ice-mobile-native/src/pages/demo/examples/Xprinter/style.less +16 -0
- package/templates/ice-mobile-native/src/pages/demo/examples/usePreload.tsx +9 -0
- package/templates/ice-mobile-native/src/pages/demo/index.tsx +89 -0
- package/templates/ice-mobile-native/src/pages/index.tsx +3 -0
- package/templates/ice-mobile-native/src/routes.ts +29 -0
- package/templates/ice-mobile-native/src/types/user.d.ts +3 -0
- package/templates/ice-mobile-native/tsconfig.json +3 -0
- package/templates/ice-mobile-native/typings.d.ts +1 -0
- package/templates/ice-web/.eslintrc +1 -1
- package/templates/ice-web/.gitignore.tpl +10 -3
- package/templates/ice-web/.icerc.ts +1 -1
- package/templates/ice-web/.npmrc.tpl +2 -0
- package/templates/ice-web/.prettierignore +4 -5
- package/templates/ice-web/.prettierrc.js +1 -0
- package/templates/ice-web/README.md.tpl +1 -1
- package/templates/ice-web/package.json.tpl +5 -0
- package/templates/ice-web/public/index.html +15 -0
- package/templates/ice-web/src/app.tsx +1 -1
- package/templates/ice-web/src/pages/demo/examples/BankInput.tsx +1 -2
- package/templates/ice-web/src/pages/demo/examples/Grid/5.tsx +1 -2
- package/templates/ice-web/src/pages/demo/examples/Input/2.tsx +2 -1
- package/templates/ice-web/src/pages/demo/examples/RangeNumber/2.tsx +1 -2
- package/templates/ice-web/src/pages/demo/examples/SearchLayout.tsx +2 -2
- package/templates/ice-web/src/pages/demo/examples/Wrapper.tsx +1 -1
- package/templates/ice-web/src/routes.ts +2 -1
- package/templates/ice-web-screen/.eslintrc +6 -0
- package/templates/ice-web-screen/.gitignore.tpl +37 -0
- package/templates/ice-web-screen/.icerc.ts +3 -0
- package/templates/ice-web-screen/.npmrc.tpl +2 -0
- package/templates/ice-web-screen/.prettierignore +8 -0
- package/templates/ice-web-screen/.prettierrc.js +1 -0
- package/templates/ice-web-screen/.stylelintrc +3 -0
- package/templates/ice-web-screen/README.md.tpl +34 -0
- package/templates/ice-web-screen/package.json.tpl +17 -0
- package/templates/ice-web-screen/public/favicon.ico +0 -0
- package/templates/ice-web-screen/public/index.html +15 -0
- package/templates/ice-web-screen/src/app.tsx +5 -0
- package/templates/ice-web-screen/src/common/request.ts +3 -0
- package/templates/ice-web-screen/src/common/util.ts +15 -0
- package/templates/ice-web-screen/src/components/index.ts +1 -0
- package/templates/ice-web-screen/src/components/resize-container/index.tsx +95 -0
- package/templates/ice-web-screen/src/components/resize-container/style.module.less +3 -0
- package/templates/ice-web-screen/src/constants.ts +7 -0
- package/templates/ice-web-screen/src/global.less +31 -0
- package/templates/ice-web-screen/src/hooks/use-size.ts +18 -0
- package/templates/ice-web-screen/src/layouts/16_9/fixed.less +18 -0
- package/templates/ice-web-screen/src/layouts/16_9/index.tsx +34 -0
- package/templates/ice-web-screen/src/layouts/16_9/style.module.less +19 -0
- package/templates/ice-web-screen/src/layouts/components/index.ts +0 -0
- package/templates/ice-web-screen/src/layouts/controller/index.tsx +79 -0
- package/templates/ice-web-screen/src/layouts/index.tsx +11 -0
- package/templates/ice-web-screen/src/pages/404.tsx +17 -0
- package/templates/ice-web-screen/src/pages/index.tsx +3 -0
- package/templates/ice-web-screen/src/pages/template/16_9/index.tsx +13 -0
- package/templates/ice-web-screen/src/pages/template/16_9/style.module.less +7 -0
- package/templates/ice-web-screen/src/pages/template/components/charts/demo-line/index.tsx +274 -0
- package/templates/ice-web-screen/src/pages/template/components/charts/index.ts +1 -0
- package/templates/ice-web-screen/src/pages/template/components/index.ts +1 -0
- package/templates/ice-web-screen/src/pages/template/controller/index.tsx +85 -0
- package/templates/ice-web-screen/src/pages/template/index.tsx +15 -0
- package/templates/ice-web-screen/src/pages/template/style.module.less +3 -0
- package/templates/ice-web-screen/src/routes.ts +29 -0
- package/templates/ice-web-screen/src/styles/vars.less +5 -0
- package/templates/ice-web-screen/src/types/user.d.ts +3 -0
- package/templates/ice-web-screen/tsconfig.json +3 -0
- package/templates/ice-web-screen/typings.d.ts +1 -0
- package/templates/miniprogram/.eslintrc +1 -1
- package/templates/miniprogram/.gitignore.tpl +12 -11
- package/templates/miniprogram/.npmrc.tpl +2 -0
- package/templates/miniprogram/.prettierignore +5 -1
- package/templates/miniprogram/.prettierrc.js +1 -0
- package/templates/miniprogram/README.md.tpl +2 -2
- package/templates/miniprogram/global.d.ts +1 -33
- package/templates/miniprogram/package.json.tpl +6 -2
- package/templates/miniprogram/src/pages/demo/examples/Input.tsx +11 -2
- package/templates/miniprogram/src/pages/demo/{index.module.scss → style.scss} +0 -0
- package/templates/miniprogram/src/pages/index/index.tsx +3 -1
- package/templates/miniprogram/src/pages/index/{index.module.scss → style.scss} +0 -0
- package/templates/umi-mobile/.eslintrc +1 -1
- package/templates/umi-mobile/.gitignore.tpl +8 -5
- package/templates/umi-mobile/.npmrc.tpl +2 -0
- package/templates/umi-mobile/.prettierignore +6 -2
- package/templates/umi-mobile/.prettierrc.js +1 -0
- package/templates/umi-mobile/.umirc.ts.tpl +2 -1
- package/templates/umi-mobile/README.md.tpl +2 -2
- package/templates/umi-mobile/package.json.tpl +5 -0
- package/templates/umi-mobile/src/app.tsx +1 -1
- package/templates/umi-mobile/src/pages/demo/examples/Input.tsx +1 -2
- package/templates/umi-mobile/src/pages/demo/examples/List/4.tsx +2 -2
- package/templates/umi-mobile/src/pages/demo/examples/NumberInput/1.tsx +1 -2
- package/templates/umi-mobile/src/pages/demo/examples/NumberInput/2.tsx +1 -2
- package/templates/umi-mobile/src/pages/demo/examples/NumberInput/3.tsx +1 -2
- package/templates/umi-mobile/src/pages/demo/examples/NumberInput/4.tsx +1 -2
- package/templates/umi-mobile-h5+app/.eslintrc +6 -0
- package/templates/umi-mobile-h5+app/.gitignore.tpl +37 -0
- package/templates/umi-mobile-h5+app/.npmrc.tpl +2 -0
- package/templates/umi-mobile-h5+app/.prettierignore +12 -0
- package/templates/umi-mobile-h5+app/.prettierrc.js +1 -0
- package/templates/umi-mobile-h5+app/.stylelintrc +3 -0
- package/templates/umi-mobile-h5+app/.umirc.ts.tpl +8 -0
- package/templates/umi-mobile-h5+app/LICENSE +21 -0
- package/templates/umi-mobile-h5+app/README.md.tpl +34 -0
- package/templates/umi-mobile-h5+app/h5+app/manifest.json +87 -0
- package/templates/umi-mobile-h5+app/package.json.tpl +16 -0
- package/templates/umi-mobile-h5+app/public/favicon.ico +0 -0
- package/templates/umi-mobile-h5+app/src/app.tsx +19 -0
- package/templates/umi-mobile-h5+app/src/common/request.ts +3 -0
- package/templates/umi-mobile-h5+app/src/common/util.ts +7 -0
- package/templates/umi-mobile-h5+app/src/components/index.ts +0 -0
- package/templates/umi-mobile-h5+app/src/global.less +3 -0
- package/templates/umi-mobile-h5+app/src/layouts/index.tsx +3 -0
- package/templates/umi-mobile-h5+app/src/pages/404.tsx +10 -0
- package/templates/umi-mobile-h5+app/src/pages/demo/examples/BarCode.tsx +4 -0
- package/templates/umi-mobile-h5+app/src/pages/demo/examples/Iconfont.tsx +18 -0
- package/templates/umi-mobile-h5+app/src/pages/demo/examples/Input.tsx +16 -0
- package/templates/umi-mobile-h5+app/src/pages/demo/examples/List/1.tsx +12 -0
- package/templates/umi-mobile-h5+app/src/pages/demo/examples/List/2.tsx +29 -0
- package/templates/umi-mobile-h5+app/src/pages/demo/examples/List/3.tsx +29 -0
- package/templates/umi-mobile-h5+app/src/pages/demo/examples/List/4.tsx +55 -0
- package/templates/umi-mobile-h5+app/src/pages/demo/examples/List/mock.ts +30 -0
- package/templates/umi-mobile-h5+app/src/pages/demo/examples/Loading.tsx +12 -0
- package/templates/umi-mobile-h5+app/src/pages/demo/examples/NumberInput/1.tsx +16 -0
- package/templates/umi-mobile-h5+app/src/pages/demo/examples/NumberInput/2.tsx +16 -0
- package/templates/umi-mobile-h5+app/src/pages/demo/examples/NumberInput/3.tsx +16 -0
- package/templates/umi-mobile-h5+app/src/pages/demo/examples/NumberInput/4.tsx +16 -0
- package/templates/umi-mobile-h5+app/src/pages/demo/examples/PagingList/1.tsx +6 -0
- package/templates/umi-mobile-h5+app/src/pages/demo/examples/QrCode.tsx +4 -0
- package/templates/umi-mobile-h5+app/src/pages/demo/examples/Required.tsx +4 -0
- package/templates/umi-mobile-h5+app/src/pages/demo/examples/TimerButton.tsx +4 -0
- package/templates/umi-mobile-h5+app/src/pages/demo/examples/usePreload.tsx +9 -0
- package/templates/umi-mobile-h5+app/src/pages/demo/index.tsx +87 -0
- package/templates/umi-mobile-h5+app/src/pages/index.tsx +3 -0
- package/templates/umi-mobile-h5+app/src/types/user.d.ts +3 -0
- package/templates/umi-mobile-h5+app/tsconfig.json +3 -0
- package/templates/umi-mobile-h5+app/typings.d.ts +1 -0
- package/templates/umi-mobile-native/.eslintrc +6 -0
- package/templates/umi-mobile-native/.gitignore.tpl +42 -0
- package/templates/umi-mobile-native/.npmrc.tpl +2 -0
- package/templates/umi-mobile-native/.prettierignore +12 -0
- package/templates/umi-mobile-native/.prettierrc.js +1 -0
- package/templates/umi-mobile-native/.stylelintrc +3 -0
- package/templates/umi-mobile-native/.umirc.ts.tpl +10 -0
- package/templates/umi-mobile-native/LICENSE +21 -0
- package/templates/umi-mobile-native/README.md.tpl +34 -0
- package/templates/umi-mobile-native/android/app/6209ba977ffec7d62675a4e254ebc209.keystore +0 -0
- package/templates/umi-mobile-native/android/app/build.gradle +66 -0
- package/templates/umi-mobile-native/android/app/libs/Bluetooth-release.aar +0 -0
- package/templates/umi-mobile-native/android/app/libs/PosPrinterSDK.jar +0 -0
- package/templates/umi-mobile-native/android/app/libs/android-gif-drawable-release@1.2.23.aar +0 -0
- package/templates/umi-mobile-native/android/app/libs/lib.5plus.base-release.aar +0 -0
- package/templates/umi-mobile-native/android/app/libs/oaid_sdk_1.0.25.aar +0 -0
- package/templates/umi-mobile-native/android/app/libs/webview-x5-release.aar +0 -0
- package/templates/umi-mobile-native/android/app/proguard-rules.pro +303 -0
- package/templates/umi-mobile-native/android/app/src/main/AndroidManifest.xml +98 -0
- package/templates/umi-mobile-native/android/app/src/main/assets/apps/H5ECA1DEE/www/manifest.json +89 -0
- package/templates/umi-mobile-native/android/app/src/main/assets/data/dcloud_control.xml +6 -0
- package/templates/umi-mobile-native/android/app/src/main/assets/data/dcloud_error.html +92 -0
- package/templates/umi-mobile-native/android/app/src/main/assets/data/dcloud_properties.xml +19 -0
- package/templates/umi-mobile-native/android/app/src/main/java/plus/H5ECA1DEE/JSBridge/FunctionCreator.java +119 -0
- package/templates/umi-mobile-native/android/app/src/main/java/plus/H5ECA1DEE/MPandoraEntryActivity.java +17 -0
- package/templates/umi-mobile-native/android/app/src/main/java/plus/H5ECA1DEE/Xprinter/FunctionFactory/Creator.java +17 -0
- package/templates/umi-mobile-native/android/app/src/main/java/plus/H5ECA1DEE/Xprinter/FunctionFactory/Error.java +26 -0
- package/templates/umi-mobile-native/android/app/src/main/java/plus/H5ECA1DEE/Xprinter/JSPlugin.java +265 -0
- package/templates/umi-mobile-native/android/app/src/main/res/drawable/icon.png +0 -0
- package/templates/umi-mobile-native/android/app/src/main/res/values/colors.xml +5 -0
- package/templates/umi-mobile-native/android/app/src/main/res/values/strings.xml +3 -0
- package/templates/umi-mobile-native/android/build.gradle +9 -0
- package/templates/umi-mobile-native/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/templates/umi-mobile-native/android/gradle/wrapper/gradle-wrapper.properties +6 -0
- package/templates/umi-mobile-native/android/gradle.properties +22 -0
- package/templates/umi-mobile-native/android/gradlew +185 -0
- package/templates/umi-mobile-native/android/gradlew.bat +89 -0
- package/templates/umi-mobile-native/android/settings.gradle +16 -0
- package/templates/umi-mobile-native/ios/HBuilder/HBuilder.entitlements +5 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/AppIcon.appiconset/1024x1024.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/AppIcon.appiconset/120x120-1.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/AppIcon.appiconset/120x120.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/AppIcon.appiconset/180x180.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/AppIcon.appiconset/40x40.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/AppIcon.appiconset/58x58.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/AppIcon.appiconset/60x60.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/AppIcon.appiconset/80x80.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/AppIcon.appiconset/87x87.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/AppIcon.appiconset/Contents.json +62 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/Contents.json +6 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/Image.imageset/Contents.json +20 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/app.imageset/120x120.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/app.imageset/180x180.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/app.imageset/60x60.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/app.imageset/Contents.json +26 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/control_brightness.imageset/Contents.json +21 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/control_brightness.imageset/brightness@2x.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/exitfullscreen.imageset/Contents.json +22 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/exitfullscreen.imageset/shrinkscreen@2x.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/exitfullscreen.imageset/shrinkscreen@3x.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/exposure_slider_max.imageset/Contents.json +22 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/exposure_slider_max.imageset//346/233/235/345/205/211-1.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/exposure_slider_max.imageset//346/233/235/345/205/211.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/focus_border.imageset/Contents.json +22 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/focus_border.imageset//345/257/271/347/204/246/346/241/206-1.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/focus_border.imageset//345/257/271/347/204/246/346/241/206.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/focus_slider_line.imageset/Contents.json +21 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/focus_slider_line.imageset//345/257/271/347/204/246/347/272/277.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/focus_slider_thumb.imageset/Contents.json +22 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/focus_slider_thumb.imageset//345/257/271/347/204/246/345/272/225-1.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/focus_slider_thumb.imageset//345/257/271/347/204/246/345/272/225.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/full-screen.imageset/Contents.json +22 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/full-screen.imageset/fullscreen@2x.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/full-screen.imageset/fullscreen@3x.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/play.imageset/Contents.json +23 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/play.imageset/play.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/play.imageset/play@2x.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/play.imageset/play@3x.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/player_back.imageset/Contents.json +23 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/player_back.imageset/player_back.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/player_back.imageset/player_back@2x.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/player_back.imageset/player_back@3x.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/player_play.imageset/Contents.json +23 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/player_play.imageset/play.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/player_play.imageset/play@2x.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/player_play.imageset/play@3x.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/player_stop.imageset/Contents.json +23 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/player_stop.imageset/player-stop.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/player_stop.imageset/player-stop@2x.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/player_stop.imageset/player-stop@3x.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/video_ic_muteoff.imageset/Contents.json +22 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/video_ic_muteoff.imageset/video_ic_muteoff@2x.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/video_ic_muteoff.imageset/video_ic_muteoff@3x.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/video_ic_muteon.imageset/Contents.json +22 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/video_ic_muteon.imageset/video_ic_muteon@2x.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/video_ic_muteon.imageset/video_ic_muteon@3x.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/video_volume.imageset/Contents.json +22 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/video_volume.imageset/video_volume@2x.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder/Images.xcassets/video_volume.imageset/video_volume@3x.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder-Hello/120x120.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder-Hello/180x180.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder-Hello/AppDelegate.h +16 -0
- package/templates/umi-mobile-native/ios/HBuilder-Hello/AppDelegate.m +225 -0
- package/templates/umi-mobile-native/ios/HBuilder-Hello/Base.lproj/LaunchScreen.storyboard +65 -0
- package/templates/umi-mobile-native/ios/HBuilder-Hello/English.lproj/Localizable.strings +13 -0
- package/templates/umi-mobile-native/ios/HBuilder-Hello/HBuilder-Hello-Info.plist +486 -0
- package/templates/umi-mobile-native/ios/HBuilder-Hello/HBuilder-Hello-Prefix.pch +16 -0
- package/templates/umi-mobile-native/ios/HBuilder-Hello/LaunchScreen.storyboard +67 -0
- package/templates/umi-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/manifest.json +79 -0
- package/templates/umi-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/1024x1024.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/120x120.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/144x144.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/152x152.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/167x167.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/180x180.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/192x192.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/20x20.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/29x29.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/40x40.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/58x58.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/60x60.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/72x72.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/76x76.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/80x80.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/87x87.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder-Hello/Pandora/apps/H5ECA1DEE/www/unpackage/res/icons/96x96.png +0 -0
- package/templates/umi-mobile-native/ios/HBuilder-Hello/ViewController.h +19 -0
- package/templates/umi-mobile-native/ios/HBuilder-Hello/ViewController.m +161 -0
- package/templates/umi-mobile-native/ios/HBuilder-Hello/Xprinter.h +19 -0
- package/templates/umi-mobile-native/ios/HBuilder-Hello/Xprinter.m +235 -0
- package/templates/umi-mobile-native/ios/HBuilder-Hello/control.xml +107 -0
- package/templates/umi-mobile-native/ios/HBuilder-Hello/en.lproj/InfoPlist.strings +4 -0
- package/templates/umi-mobile-native/ios/HBuilder-Hello/en.lproj/Localizable.strings +12 -0
- package/templates/umi-mobile-native/ios/HBuilder-Hello/main.m +18 -0
- package/templates/umi-mobile-native/ios/HBuilder-Hello/zh-Hans.lproj/InfoPlist.strings +4 -0
- package/templates/umi-mobile-native/ios/HBuilder-Hello/zh-Hans.lproj/LaunchScreen.strings +3 -0
- package/templates/umi-mobile-native/ios/HBuilder-Hello/zh-Hans.lproj/Localizable.strings +13 -0
- package/templates/umi-mobile-native/ios/HBuilder-Hello.xcodeproj/project.pbxproj +1607 -0
- package/templates/umi-mobile-native/package.json.tpl +16 -0
- package/templates/umi-mobile-native/public/favicon.ico +0 -0
- package/templates/umi-mobile-native/src/app.tsx +19 -0
- package/templates/umi-mobile-native/src/common/Xprinter.ts +58 -0
- package/templates/umi-mobile-native/src/common/bluetooth.ts +354 -0
- package/templates/umi-mobile-native/src/common/bridge.ts +59 -0
- package/templates/umi-mobile-native/src/common/request.ts +3 -0
- package/templates/umi-mobile-native/src/common/util.ts +7 -0
- package/templates/umi-mobile-native/src/components/index.ts +0 -0
- package/templates/umi-mobile-native/src/global.less +3 -0
- package/templates/umi-mobile-native/src/images/head.png +0 -0
- package/templates/umi-mobile-native/src/layouts/index.tsx +3 -0
- package/templates/umi-mobile-native/src/pages/404.tsx +10 -0
- package/templates/umi-mobile-native/src/pages/demo/examples/BarCode.tsx +4 -0
- package/templates/umi-mobile-native/src/pages/demo/examples/Iconfont.tsx +18 -0
- package/templates/umi-mobile-native/src/pages/demo/examples/Input.tsx +16 -0
- package/templates/umi-mobile-native/src/pages/demo/examples/List/1.tsx +12 -0
- package/templates/umi-mobile-native/src/pages/demo/examples/List/2.tsx +29 -0
- package/templates/umi-mobile-native/src/pages/demo/examples/List/3.tsx +29 -0
- package/templates/umi-mobile-native/src/pages/demo/examples/List/4.tsx +55 -0
- package/templates/umi-mobile-native/src/pages/demo/examples/List/mock.ts +30 -0
- package/templates/umi-mobile-native/src/pages/demo/examples/Loading.tsx +12 -0
- package/templates/umi-mobile-native/src/pages/demo/examples/NumberInput/1.tsx +16 -0
- package/templates/umi-mobile-native/src/pages/demo/examples/NumberInput/2.tsx +16 -0
- package/templates/umi-mobile-native/src/pages/demo/examples/NumberInput/3.tsx +16 -0
- package/templates/umi-mobile-native/src/pages/demo/examples/NumberInput/4.tsx +16 -0
- package/templates/umi-mobile-native/src/pages/demo/examples/PagingList/1.tsx +6 -0
- package/templates/umi-mobile-native/src/pages/demo/examples/QrCode.tsx +4 -0
- package/templates/umi-mobile-native/src/pages/demo/examples/Required.tsx +4 -0
- package/templates/umi-mobile-native/src/pages/demo/examples/TimerButton.tsx +4 -0
- package/templates/umi-mobile-native/src/pages/demo/examples/Xprinter/index.tsx +64 -0
- package/templates/umi-mobile-native/src/pages/demo/examples/Xprinter/style.less +16 -0
- package/templates/umi-mobile-native/src/pages/demo/examples/usePreload.tsx +9 -0
- package/templates/umi-mobile-native/src/pages/demo/index.tsx +89 -0
- package/templates/umi-mobile-native/src/pages/index.tsx +9 -0
- package/templates/umi-mobile-native/src/pages/style.less +6 -0
- package/templates/umi-mobile-native/src/types/user.d.ts +3 -0
- package/templates/umi-mobile-native/tsconfig.json +3 -0
- package/templates/umi-mobile-native/typings.d.ts +1 -0
- package/templates/umi-web/.eslintrc +1 -1
- package/templates/umi-web/.gitignore.tpl +8 -5
- package/templates/umi-web/.npmrc.tpl +2 -0
- package/templates/umi-web/.prettierignore +6 -2
- package/templates/umi-web/.prettierrc.js +1 -0
- package/templates/umi-web/.umirc.ts.tpl +1 -1
- package/templates/umi-web/README.md.tpl +1 -1
- package/templates/umi-web/package.json.tpl +5 -0
- package/templates/umi-web/src/app.tsx +1 -1
- package/templates/umi-web/src/pages/demo/examples/BankInput.tsx +1 -2
- package/templates/umi-web/src/pages/demo/examples/Grid/5.tsx +1 -2
- package/templates/umi-web/src/pages/demo/examples/Input/2.tsx +2 -1
- package/templates/umi-web/src/pages/demo/examples/RangeNumber/2.tsx +1 -2
- package/templates/umi-web/src/pages/demo/examples/SearchLayout.tsx +2 -2
- package/templates/umi-web/src/pages/demo/examples/Wrapper.tsx +1 -1
- package/templates/umi-web-screen/.eslintrc +6 -0
- package/templates/umi-web-screen/.gitignore.tpl +37 -0
- package/templates/umi-web-screen/.npmrc.tpl +2 -0
- package/templates/umi-web-screen/.prettierignore +12 -0
- package/templates/umi-web-screen/.prettierrc.js +1 -0
- package/templates/umi-web-screen/.stylelintrc +3 -0
- package/templates/umi-web-screen/.umirc.ts.tpl +8 -0
- package/templates/umi-web-screen/LICENSE +21 -0
- package/templates/umi-web-screen/README.md.tpl +34 -0
- package/templates/umi-web-screen/package.json.tpl +17 -0
- package/templates/umi-web-screen/public/favicon.ico +0 -0
- package/templates/umi-web-screen/src/app.tsx +19 -0
- package/templates/umi-web-screen/src/common/request.ts +3 -0
- package/templates/umi-web-screen/src/common/util.ts +15 -0
- package/templates/umi-web-screen/src/components/index.ts +1 -0
- package/templates/umi-web-screen/src/components/resize-container/index.tsx +95 -0
- package/templates/umi-web-screen/src/components/resize-container/style.less +3 -0
- package/templates/umi-web-screen/src/constants.ts +7 -0
- package/templates/umi-web-screen/src/global.less +28 -0
- package/templates/umi-web-screen/src/hooks/use-size.ts +18 -0
- package/templates/umi-web-screen/src/layouts/16_9/fixed.less +16 -0
- package/templates/umi-web-screen/src/layouts/16_9/index.tsx +30 -0
- package/templates/umi-web-screen/src/layouts/16_9/style.less +17 -0
- package/templates/umi-web-screen/src/layouts/components/index.ts +0 -0
- package/templates/umi-web-screen/src/layouts/controller/index.tsx +79 -0
- package/templates/umi-web-screen/src/layouts/index.tsx +11 -0
- package/templates/umi-web-screen/src/pages/404.tsx +17 -0
- package/templates/umi-web-screen/src/pages/index.tsx +3 -0
- package/templates/umi-web-screen/src/pages/template/16_9/index.tsx +13 -0
- package/templates/umi-web-screen/src/pages/template/16_9/style.less +7 -0
- package/templates/umi-web-screen/src/pages/template/components/charts/demo-line/index.tsx +274 -0
- package/templates/umi-web-screen/src/pages/template/components/charts/index.ts +1 -0
- package/templates/umi-web-screen/src/pages/template/components/index.ts +1 -0
- package/templates/umi-web-screen/src/pages/template/controller/index.tsx +85 -0
- package/templates/umi-web-screen/src/pages/template/index.tsx +15 -0
- package/templates/umi-web-screen/src/pages/template/style.less +3 -0
- package/templates/umi-web-screen/src/styles/vars.less +5 -0
- package/templates/umi-web-screen/src/types/user.d.ts +3 -0
- package/templates/umi-web-screen/tsconfig.json +3 -0
- package/templates/umi-web-screen/typings.d.ts +1 -0
- package/templates/ice-mobile/.prettierrc +0 -11
- package/templates/ice-web/.eslintcache +0 -1
- package/templates/ice-web/.prettierrc +0 -11
- package/templates/miniprogram/.editorconfig +0 -12
- package/templates/miniprogram/.prettierrc +0 -12
- package/templates/miniprogram/src/pages/demo/index.module.scss.d.ts +0 -5
- package/templates/miniprogram/src/pages/index/index.module.scss.d.ts +0 -5
- package/templates/umi-mobile/.prettierrc +0 -11
- package/templates/umi-web/.prettierrc +0 -11
|
@@ -0,0 +1,1607 @@
|
|
|
1
|
+
// !$*UTF8*$!
|
|
2
|
+
{
|
|
3
|
+
archiveVersion = 1;
|
|
4
|
+
classes = {
|
|
5
|
+
};
|
|
6
|
+
objectVersion = 46;
|
|
7
|
+
objects = {
|
|
8
|
+
|
|
9
|
+
/* Begin PBXBuildFile section */
|
|
10
|
+
240905031C200AEF0070786F /* CoreBluetooth.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 240905021C200AEF0070786F /* CoreBluetooth.framework */; };
|
|
11
|
+
242725CB1D2666ED00EBD79E /* JavaScriptCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 242725CA1D2666ED00EBD79E /* JavaScriptCore.framework */; };
|
|
12
|
+
242725CD1D26686700EBD79E /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 242725CC1D26686700EBD79E /* CoreMotion.framework */; };
|
|
13
|
+
2430A7011E11603E00D3D42D /* libcrypto.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2430A6FF1E11603E00D3D42D /* libcrypto.a */; };
|
|
14
|
+
2430A7021E11603E00D3D42D /* libssl.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2430A7001E11603E00D3D42D /* libssl.a */; };
|
|
15
|
+
2447371B1D0830BB00D0F08F /* WebKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2447371A1D0830BB00D0F08F /* WebKit.framework */; };
|
|
16
|
+
247F85DB1FA32B2C006ECAC6 /* liblibPDRCore.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 247F85DA1FA32B2C006ECAC6 /* liblibPDRCore.a */; };
|
|
17
|
+
24A7515F1D9CCCC600C8B0F9 /* QuickLook.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24A7515E1D9CCCC600C8B0F9 /* QuickLook.framework */; };
|
|
18
|
+
24AFD7FF1CB50C3200C0F062 /* AlipaySDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24AFD7FB1CB50C3200C0F062 /* AlipaySDK.framework */; };
|
|
19
|
+
24AFD8021CB50C3200C0F062 /* TencentOpenAPI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24AFD7FE1CB50C3200C0F062 /* TencentOpenAPI.framework */; };
|
|
20
|
+
24AFD8401CB50C4000C0F062 /* libalixpayment.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 24AFD8031CB50C3F00C0F062 /* libalixpayment.a */; };
|
|
21
|
+
24AFD8431CB50C4000C0F062 /* libBaiduMobStatForSDK.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 24AFD8061CB50C3F00C0F062 /* libBaiduMobStatForSDK.a */; };
|
|
22
|
+
24AFD8461CB50C4000C0F062 /* libcoreSupport.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 24AFD8091CB50C3F00C0F062 /* libcoreSupport.a */; };
|
|
23
|
+
24AFD8491CB50C4000C0F062 /* libIAPPay.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 24AFD80C1CB50C3F00C0F062 /* libIAPPay.a */; };
|
|
24
|
+
24AFD84C1CB50C4000C0F062 /* liblibAccelerometer.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 24AFD80F1CB50C3F00C0F062 /* liblibAccelerometer.a */; };
|
|
25
|
+
24AFD84D1CB50C4000C0F062 /* liblibBarcode.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 24AFD8101CB50C3F00C0F062 /* liblibBarcode.a */; };
|
|
26
|
+
24AFD84E1CB50C4000C0F062 /* liblibCache.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 24AFD8111CB50C3F00C0F062 /* liblibCache.a */; };
|
|
27
|
+
24AFD84F1CB50C4000C0F062 /* liblibCamera.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 24AFD8121CB50C3F00C0F062 /* liblibCamera.a */; };
|
|
28
|
+
24AFD8501CB50C4000C0F062 /* liblibContacts.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 24AFD8131CB50C3F00C0F062 /* liblibContacts.a */; };
|
|
29
|
+
24AFD8521CB50C4000C0F062 /* liblibIO.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 24AFD8151CB50C4000C0F062 /* liblibIO.a */; };
|
|
30
|
+
24AFD8531CB50C4000C0F062 /* liblibLog.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 24AFD8161CB50C4000C0F062 /* liblibLog.a */; };
|
|
31
|
+
24AFD8541CB50C4000C0F062 /* liblibMap.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 24AFD8171CB50C4000C0F062 /* liblibMap.a */; };
|
|
32
|
+
24AFD8551CB50C4000C0F062 /* liblibMedia.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 24AFD8181CB50C4000C0F062 /* liblibMedia.a */; };
|
|
33
|
+
24AFD8561CB50C4000C0F062 /* liblibMessage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 24AFD8191CB50C4000C0F062 /* liblibMessage.a */; };
|
|
34
|
+
24AFD8571CB50C4000C0F062 /* liblibNativeObj.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 24AFD81A1CB50C4000C0F062 /* liblibNativeObj.a */; };
|
|
35
|
+
24AFD8581CB50C4000C0F062 /* liblibNativeUI.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 24AFD81B1CB50C4000C0F062 /* liblibNativeUI.a */; };
|
|
36
|
+
24AFD8591CB50C4000C0F062 /* liblibNavigator.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 24AFD81C1CB50C4000C0F062 /* liblibNavigator.a */; };
|
|
37
|
+
24AFD85A1CB50C4000C0F062 /* liblibOauth.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 24AFD81D1CB50C4000C0F062 /* liblibOauth.a */; };
|
|
38
|
+
24AFD85B1CB50C4000C0F062 /* liblibOrientation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 24AFD81E1CB50C4000C0F062 /* liblibOrientation.a */; };
|
|
39
|
+
24AFD85C1CB50C4000C0F062 /* liblibPayment.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 24AFD81F1CB50C4000C0F062 /* liblibPayment.a */; };
|
|
40
|
+
24AFD85E1CB50C4000C0F062 /* liblibPGInvocation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 24AFD8211CB50C4000C0F062 /* liblibPGInvocation.a */; };
|
|
41
|
+
24AFD85F1CB50C4000C0F062 /* liblibPGProximity.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 24AFD8221CB50C4000C0F062 /* liblibPGProximity.a */; };
|
|
42
|
+
24AFD8601CB50C4000C0F062 /* liblibPush.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 24AFD8231CB50C4000C0F062 /* liblibPush.a */; };
|
|
43
|
+
24AFD8611CB50C4000C0F062 /* liblibShare.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 24AFD8241CB50C4000C0F062 /* liblibShare.a */; };
|
|
44
|
+
24AFD8621CB50C4000C0F062 /* liblibSpeech.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 24AFD8251CB50C4000C0F062 /* liblibSpeech.a */; };
|
|
45
|
+
24AFD8631CB50C4000C0F062 /* liblibStatistic.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 24AFD8261CB50C4000C0F062 /* liblibStatistic.a */; };
|
|
46
|
+
24AFD8641CB50C4000C0F062 /* liblibStorage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 24AFD8271CB50C4000C0F062 /* liblibStorage.a */; };
|
|
47
|
+
24AFD8651CB50C4000C0F062 /* liblibUI.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 24AFD8281CB50C4000C0F062 /* liblibUI.a */; };
|
|
48
|
+
24AFD8681CB50C4000C0F062 /* liblibXHR.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 24AFD82B1CB50C4000C0F062 /* liblibXHR.a */; };
|
|
49
|
+
24AFD8691CB50C4000C0F062 /* liblibZip.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 24AFD82C1CB50C4000C0F062 /* liblibZip.a */; };
|
|
50
|
+
24AFD86B1CB50C4000C0F062 /* libopencore-amrnb.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 24AFD82E1CB50C4000C0F062 /* libopencore-amrnb.a */; };
|
|
51
|
+
24AFD86F1CB50C4000C0F062 /* libQQOauth.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 24AFD8321CB50C4000C0F062 /* libQQOauth.a */; };
|
|
52
|
+
24AFD8701CB50C4000C0F062 /* libQQShare.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 24AFD8331CB50C4000C0F062 /* libQQShare.a */; };
|
|
53
|
+
24AFD8721CB50C4000C0F062 /* libSinaShare.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 24AFD8351CB50C4000C0F062 /* libSinaShare.a */; };
|
|
54
|
+
24AFD8731CB50C4000C0F062 /* libSinaWBOauth.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 24AFD8361CB50C4000C0F062 /* libSinaWBOauth.a */; };
|
|
55
|
+
24AFD8761CB50C4000C0F062 /* libTouchJSON.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 24AFD8391CB50C4000C0F062 /* libTouchJSON.a */; };
|
|
56
|
+
24AFD8791CB50C4000C0F062 /* libWeiboSDK.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 24AFD83C1CB50C4000C0F062 /* libWeiboSDK.a */; };
|
|
57
|
+
24AFD87A1CB50C4000C0F062 /* libweixinShare.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 24AFD83D1CB50C4000C0F062 /* libweixinShare.a */; };
|
|
58
|
+
24AFD87B1CB50C4000C0F062 /* libWXOauth.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 24AFD83E1CB50C4000C0F062 /* libWXOauth.a */; };
|
|
59
|
+
24AFD87C1CB50C4000C0F062 /* libwxpay.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 24AFD83F1CB50C4000C0F062 /* libwxpay.a */; };
|
|
60
|
+
24BD5AE81C99491D00B05AA2 /* libsqlite3.0.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 24BD5AE71C99491D00B05AA2 /* libsqlite3.0.tbd */; };
|
|
61
|
+
24BD5AEA1C99492A00B05AA2 /* libiconv.2.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 24BD5AE91C99492A00B05AA2 /* libiconv.2.tbd */; };
|
|
62
|
+
24BD5AEE1C99494200B05AA2 /* libxml2.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 24BD5AED1C99494200B05AA2 /* libxml2.tbd */; };
|
|
63
|
+
24BD5AF01C99494A00B05AA2 /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 24BD5AEF1C99494A00B05AA2 /* libz.tbd */; };
|
|
64
|
+
24BD5AF21C994A1700B05AA2 /* libicucore.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 24BD5AF11C994A1700B05AA2 /* libicucore.tbd */; };
|
|
65
|
+
24BD5AF61C994BB200B05AA2 /* libc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 24BD5AF51C994BB200B05AA2 /* libc++.tbd */; };
|
|
66
|
+
24F990131DFBDA3300848C2B /* CoreData.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24F990121DFBDA3300848C2B /* CoreData.framework */; };
|
|
67
|
+
2F0BA3F9215B48A700F67004 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 2F0BA3F8215B48A700F67004 /* Images.xcassets */; };
|
|
68
|
+
2F0BA410215B784100F67004 /* Contacts.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2F0BA40F215B784000F67004 /* Contacts.framework */; };
|
|
69
|
+
2F0BA412215B814100F67004 /* liblibVideo.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2F0BA411215B814000F67004 /* liblibVideo.a */; };
|
|
70
|
+
2F0BA416215B8B1400F67004 /* VideoToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2F0BA415215B8B1300F67004 /* VideoToolbox.framework */; };
|
|
71
|
+
2F0BA418215B8B5C00F67004 /* libbz2.1.0.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 2F0BA417215B8B5C00F67004 /* libbz2.1.0.tbd */; };
|
|
72
|
+
2F0BA4DC215BA12300F67004 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 2F0BA4DB215BA12300F67004 /* LaunchScreen.storyboard */; };
|
|
73
|
+
2FD11BBB215C79C5000A23AD /* liblibAdSupport.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2FD11BBA215C79C5000A23AD /* liblibAdSupport.a */; };
|
|
74
|
+
2FDE156A215F468000588710 /* liblibWeex.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2FDE1569215F468000588710 /* liblibWeex.a */; };
|
|
75
|
+
408652282806C445007B18A5 /* libz.1.2.5.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 408652272806C445007B18A5 /* libz.1.2.5.tbd */; };
|
|
76
|
+
40D85F6F27B9EE3B00FCDE13 /* 120x120.png in Resources */ = {isa = PBXBuildFile; fileRef = 40D85F6D27B9EE3B00FCDE13 /* 120x120.png */; };
|
|
77
|
+
40D85F7027B9EE3B00FCDE13 /* 180x180.png in Resources */ = {isa = PBXBuildFile; fileRef = 40D85F6E27B9EE3B00FCDE13 /* 180x180.png */; };
|
|
78
|
+
40F248C027BA2FAD0042E27E /* Xprinter.m in Sources */ = {isa = PBXBuildFile; fileRef = 40F248BF27BA2FAD0042E27E /* Xprinter.m */; };
|
|
79
|
+
40F2490027BB7F3D0042E27E /* XYSDK.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 40F248FF27BB7F3D0042E27E /* XYSDK.a */; };
|
|
80
|
+
4F48903E24656F73003B56F0 /* mapapi.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 4F48902024656F73003B56F0 /* mapapi.bundle */; };
|
|
81
|
+
4F48903F24656F73003B56F0 /* __uniappes6.js in Resources */ = {isa = PBXBuildFile; fileRef = 4F48902124656F73003B56F0 /* __uniappes6.js */; };
|
|
82
|
+
4F48904024656F73003B56F0 /* MiPassport.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 4F48902224656F73003B56F0 /* MiPassport.bundle */; };
|
|
83
|
+
4F48904124656F73003B56F0 /* AlipaySDK.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 4F48902324656F73003B56F0 /* AlipaySDK.bundle */; };
|
|
84
|
+
4F48904224656F73003B56F0 /* uni-jsframework.js in Resources */ = {isa = PBXBuildFile; fileRef = 4F48902424656F73003B56F0 /* uni-jsframework.js */; };
|
|
85
|
+
4F48904324656F73003B56F0 /* WeiboSDK.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 4F48902524656F73003B56F0 /* WeiboSDK.bundle */; };
|
|
86
|
+
4F48904524656F73003B56F0 /* bds_license.dat in Resources */ = {isa = PBXBuildFile; fileRef = 4F48902824656F73003B56F0 /* bds_license.dat */; };
|
|
87
|
+
4F48904624656F73003B56F0 /* bds_easr_basic_model.dat in Resources */ = {isa = PBXBuildFile; fileRef = 4F48902924656F73003B56F0 /* bds_easr_basic_model.dat */; };
|
|
88
|
+
4F48904724656F73003B56F0 /* bds_easr_mfe_cmvn.dat in Resources */ = {isa = PBXBuildFile; fileRef = 4F48902A24656F73003B56F0 /* bds_easr_mfe_cmvn.dat */; };
|
|
89
|
+
4F48904824656F73003B56F0 /* temp_license_2018-02-24.dat in Resources */ = {isa = PBXBuildFile; fileRef = 4F48902B24656F73003B56F0 /* temp_license_2018-02-24.dat */; };
|
|
90
|
+
4F48904924656F73003B56F0 /* bds_easr_mfe_dnn.dat in Resources */ = {isa = PBXBuildFile; fileRef = 4F48902C24656F73003B56F0 /* bds_easr_mfe_dnn.dat */; };
|
|
91
|
+
4F48904A24656F73003B56F0 /* bds_easr_gramm.dat in Resources */ = {isa = PBXBuildFile; fileRef = 4F48902D24656F73003B56F0 /* bds_easr_gramm.dat */; };
|
|
92
|
+
4F48904B24656F73003B56F0 /* bds_easr_wakeup_words.dat in Resources */ = {isa = PBXBuildFile; fileRef = 4F48902E24656F73003B56F0 /* bds_easr_wakeup_words.dat */; };
|
|
93
|
+
4F48904C24656F73003B56F0 /* bds_easr_dnn_wakeup_model.dat in Resources */ = {isa = PBXBuildFile; fileRef = 4F48902F24656F73003B56F0 /* bds_easr_dnn_wakeup_model.dat */; };
|
|
94
|
+
4F48904D24656F73003B56F0 /* DCTZImagePickerController.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 4F48903024656F73003B56F0 /* DCTZImagePickerController.bundle */; };
|
|
95
|
+
4F48904E24656F73003B56F0 /* PandoraApi.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 4F48903124656F73003B56F0 /* PandoraApi.bundle */; };
|
|
96
|
+
4F48904F24656F73003B56F0 /* unincomponents.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 4F48903224656F73003B56F0 /* unincomponents.ttf */; };
|
|
97
|
+
4F48905024656F73003B56F0 /* QHADVideoPlayer.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 4F48903324656F73003B56F0 /* QHADVideoPlayer.bundle */; };
|
|
98
|
+
4F48905124656F73003B56F0 /* AMap.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 4F48903424656F73003B56F0 /* AMap.bundle */; };
|
|
99
|
+
4F48905224656F73003B56F0 /* uni-jsframework-dev.js in Resources */ = {isa = PBXBuildFile; fileRef = 4F48903524656F73003B56F0 /* uni-jsframework-dev.js */; };
|
|
100
|
+
4F48905324656F73003B56F0 /* userPosition@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4F48903624656F73003B56F0 /* userPosition@2x.png */; };
|
|
101
|
+
4F48905424656F73003B56F0 /* qucsdkResources.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 4F48903724656F73003B56F0 /* qucsdkResources.bundle */; };
|
|
102
|
+
4F48905524656F73003B56F0 /* BUAdSDK.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 4F48903824656F73003B56F0 /* BUAdSDK.bundle */; };
|
|
103
|
+
4F48905624656F73003B56F0 /* DCPGVideo.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 4F48903924656F73003B56F0 /* DCPGVideo.bundle */; };
|
|
104
|
+
4F48905724656F73003B56F0 /* DCMediaVideo.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 4F48903A24656F73003B56F0 /* DCMediaVideo.bundle */; };
|
|
105
|
+
4F48905824656F73003B56F0 /* DCSVProgressHUD.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 4F48903B24656F73003B56F0 /* DCSVProgressHUD.bundle */; };
|
|
106
|
+
4F48905924656F73003B56F0 /* weex-polyfill.js in Resources */ = {isa = PBXBuildFile; fileRef = 4F48903C24656F73003B56F0 /* weex-polyfill.js */; };
|
|
107
|
+
4F48905A24656F73003B56F0 /* weexUniJs.js in Resources */ = {isa = PBXBuildFile; fileRef = 4F48903D24656F73003B56F0 /* weexUniJs.js */; };
|
|
108
|
+
4F4DAE6B25DE60DB0094E580 /* libUniPush.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4F4DAE6A25DE60DB0094E580 /* libUniPush.a */; };
|
|
109
|
+
4F5762F5261461A000A5C0BA /* MetalKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4F5762F4261461A000A5C0BA /* MetalKit.framework */; };
|
|
110
|
+
4F5762F7261461AB00A5C0BA /* GLKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4F5762F6261461AB00A5C0BA /* GLKit.framework */; };
|
|
111
|
+
4F8C6937265E502C00C2A73C /* Masonry.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4F8C6936265E502C00C2A73C /* Masonry.framework */; };
|
|
112
|
+
4FA53F7926E5D09500BAD6A0 /* uni-jsframework-vue3.js in Resources */ = {isa = PBXBuildFile; fileRef = 4FA53F7826E5D09500BAD6A0 /* uni-jsframework-vue3.js */; };
|
|
113
|
+
4FE3666C254FE70E00DCD173 /* libuchardet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4FE3666B254FE70E00DCD173 /* libuchardet.a */; };
|
|
114
|
+
67229AD1230171AE0093F29A /* libDCUniAmap.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 67229AC9230171AE0093F29A /* libDCUniAmap.a */; };
|
|
115
|
+
67229AD2230171AE0093F29A /* libDCUniVideo.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 67229ACA230171AE0093F29A /* libDCUniVideo.a */; };
|
|
116
|
+
67229AD6230171AE0093F29A /* libDCUniGPUImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 67229ACE230171AE0093F29A /* libDCUniGPUImage.a */; };
|
|
117
|
+
67229AD8230171AE0093F29A /* libDCUniMap.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 67229AD0230171AE0093F29A /* libDCUniMap.a */; };
|
|
118
|
+
672CE2B322DC9118005A0D88 /* DCUniVideoPublic.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 672CE2B222DC9118005A0D88 /* DCUniVideoPublic.framework */; };
|
|
119
|
+
672CE2B522DC916C005A0D88 /* libDCUniZXing.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 672CE2B422DC916C005A0D88 /* libDCUniZXing.a */; };
|
|
120
|
+
672DEB2C23056152003F27CC /* libDCUniBarcode.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 67229ACB230171AE0093F29A /* libDCUniBarcode.a */; };
|
|
121
|
+
6731F394232F4CE2007838BC /* libresolv.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 6731F393232F4CE2007838BC /* libresolv.tbd */; };
|
|
122
|
+
6731F396232F4D05007838BC /* UserNotifications.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6731F395232F4D05007838BC /* UserNotifications.framework */; settings = {ATTRIBUTES = (Weak, ); }; };
|
|
123
|
+
6731F398232F4D8E007838BC /* Photos.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6731F397232F4D8E007838BC /* Photos.framework */; };
|
|
124
|
+
673E6E7321E44ABF00C021FE /* liblibFingerprint.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 673E6E7221E44ABF00C021FE /* liblibFingerprint.a */; };
|
|
125
|
+
67566B1F2251DC3A00BDF218 /* liblibSqlite.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 67566B1E2251DC3A00BDF218 /* liblibSqlite.a */; };
|
|
126
|
+
6756AB6821F58ACD00765F52 /* liblibBeacon.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6756AB6721F58ACC00765F52 /* liblibBeacon.a */; };
|
|
127
|
+
6756AB6A21F58CA300765F52 /* liblibBlueTooth.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6756AB6921F58CA300765F52 /* liblibBlueTooth.a */; };
|
|
128
|
+
67A9340023A8B922004A4DF4 /* libSDWebImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 24AFD8341CB50C4000C0F062 /* libSDWebImage.a */; };
|
|
129
|
+
67AB0B3D21EEEA6B0029B229 /* libAMapImp.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 67AB0B3C21EEEA6B0029B229 /* libAMapImp.a */; };
|
|
130
|
+
67AB0B3F21EEEAA60029B229 /* AMapSearchKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 67AB0B3E21EEEAA60029B229 /* AMapSearchKit.framework */; };
|
|
131
|
+
67AB0B4121EEEACA0029B229 /* MAMapKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 67AB0B4021EEEACA0029B229 /* MAMapKit.framework */; };
|
|
132
|
+
67AB0B4321EEEAE50029B229 /* AMapFoundationKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 67AB0B4221EEEAE50029B229 /* AMapFoundationKit.framework */; };
|
|
133
|
+
67AB0B9721EF10E70029B229 /* liblibGeolocation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 67AB0B9621EF10E60029B229 /* liblibGeolocation.a */; };
|
|
134
|
+
67AB0B9921EF10FE0029B229 /* libBaiduKeyVerify.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 67AB0B9821EF10FE0029B229 /* libBaiduKeyVerify.a */; };
|
|
135
|
+
67AB0BA021EF111D0029B229 /* BaiduMapAPI_Cloud.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 67AB0B9A21EF111C0029B229 /* BaiduMapAPI_Cloud.framework */; };
|
|
136
|
+
67AB0BA121EF111D0029B229 /* BaiduMapAPI_Search.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 67AB0B9B21EF111D0029B229 /* BaiduMapAPI_Search.framework */; };
|
|
137
|
+
67AB0BA221EF111D0029B229 /* BaiduMapAPI_Utils.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 67AB0B9C21EF111D0029B229 /* BaiduMapAPI_Utils.framework */; };
|
|
138
|
+
67AB0BA321EF111D0029B229 /* BaiduMapAPI_Map.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 67AB0B9D21EF111D0029B229 /* BaiduMapAPI_Map.framework */; };
|
|
139
|
+
67AB0BA421EF111D0029B229 /* BaiduMapAPI_Base.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 67AB0B9E21EF111D0029B229 /* BaiduMapAPI_Base.framework */; };
|
|
140
|
+
67AB0BA521EF111D0029B229 /* BaiduMapAPI_Location.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 67AB0B9F21EF111D0029B229 /* BaiduMapAPI_Location.framework */; };
|
|
141
|
+
67B7CAA221DCE8180083E96A /* control.xml in Resources */ = {isa = PBXBuildFile; fileRef = 67B7CAA121DCE8180083E96A /* control.xml */; };
|
|
142
|
+
67D6390921C12945005D1E8F /* libBaiduSpeechSDK.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 67D6390721C12944005D1E8F /* libBaiduSpeechSDK.a */; };
|
|
143
|
+
67D6390A21C12945005D1E8F /* libbaiduSpeech.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 67D6390821C12944005D1E8F /* libbaiduSpeech.a */; };
|
|
144
|
+
67E9CDCF22968D2E0076E0FB /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 67E9CDCD22968D2E0076E0FB /* Localizable.strings */; };
|
|
145
|
+
7A1967C1212536C300B330A9 /* GTSDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7A1967C0212536C300B330A9 /* GTSDK.framework */; };
|
|
146
|
+
7A1967C3212536EC00B330A9 /* libmp3lame.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7A1967C2212536EC00B330A9 /* libmp3lame.a */; };
|
|
147
|
+
7A1967C52125371000B330A9 /* storage.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7A1967C42125371000B330A9 /* storage.framework */; };
|
|
148
|
+
7A1967C721253B5F00B330A9 /* libWeChatSDK_pay.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7A1967C621253B5F00B330A9 /* libWeChatSDK_pay.a */; };
|
|
149
|
+
7A49810B2126B01200D20880 /* libiconv.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 7A49810A2126B01200D20880 /* libiconv.tbd */; };
|
|
150
|
+
7A49810D2126B01900D20880 /* Accelerate.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7A49810C2126B01900D20880 /* Accelerate.framework */; };
|
|
151
|
+
7ACF69AB19FF899A007C64F1 /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7ACF69AA19FF899A007C64F1 /* CFNetwork.framework */; };
|
|
152
|
+
7ACF69AD19FF89B1007C64F1 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7ACF69AC19FF89B1007C64F1 /* Security.framework */; };
|
|
153
|
+
8E163D021A8D208500308A8B /* AssetsLibrary.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8E163D011A8D208500308A8B /* AssetsLibrary.framework */; };
|
|
154
|
+
8E6E37AC1B0E1B580036EB48 /* ImageIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8E6E37AB1B0E1B580036EB48 /* ImageIO.framework */; };
|
|
155
|
+
8EED629C198A1D13000A4449 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EED629B198A1D13000A4449 /* Foundation.framework */; };
|
|
156
|
+
8EED629E198A1D13000A4449 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EED629D198A1D13000A4449 /* CoreGraphics.framework */; };
|
|
157
|
+
8EED62A0198A1D13000A4449 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EED629F198A1D13000A4449 /* UIKit.framework */; };
|
|
158
|
+
8EED62A6198A1D13000A4449 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 8EED62A4198A1D13000A4449 /* InfoPlist.strings */; };
|
|
159
|
+
8EED62A8198A1D13000A4449 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 8EED62A7198A1D13000A4449 /* main.m */; };
|
|
160
|
+
8EED62AC198A1D13000A4449 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 8EED62AB198A1D13000A4449 /* AppDelegate.m */; };
|
|
161
|
+
8EED62B5198A1D14000A4449 /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8EED62B4198A1D14000A4449 /* ViewController.m */; };
|
|
162
|
+
8EED6412198A2622000A4449 /* MobileCoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EED6411198A2622000A4449 /* MobileCoreServices.framework */; };
|
|
163
|
+
8EED6414198A262C000A4449 /* CoreMedia.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EED6413198A262C000A4449 /* CoreMedia.framework */; };
|
|
164
|
+
8EED6416198A2635000A4449 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EED6415198A2635000A4449 /* CoreVideo.framework */; };
|
|
165
|
+
8EED641C198A2654000A4449 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EED641B198A2654000A4449 /* SystemConfiguration.framework */; };
|
|
166
|
+
8EED641E198A265F000A4449 /* CoreTelephony.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EED641D198A265F000A4449 /* CoreTelephony.framework */; };
|
|
167
|
+
8EED6420198A2668000A4449 /* MediaPlayer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EED641F198A2668000A4449 /* MediaPlayer.framework */; };
|
|
168
|
+
8EED6422198A2678000A4449 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EED6421198A2678000A4449 /* AudioToolbox.framework */; };
|
|
169
|
+
8EED6590198A3DF7000A4449 /* Pandora in Resources */ = {isa = PBXBuildFile; fileRef = 8EED658F198A3DF7000A4449 /* Pandora */; };
|
|
170
|
+
8EED6592198A5737000A4449 /* AddressBook.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EED6591198A5737000A4449 /* AddressBook.framework */; };
|
|
171
|
+
8EED6594198A5743000A4449 /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EED6593198A5743000A4449 /* AVFoundation.framework */; };
|
|
172
|
+
8EED6596198A574C000A4449 /* CoreLocation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EED6595198A574C000A4449 /* CoreLocation.framework */; };
|
|
173
|
+
8EED6598198A5754000A4449 /* MessageUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EED6597198A5754000A4449 /* MessageUI.framework */; };
|
|
174
|
+
8EED659C198A5773000A4449 /* AddressBookUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EED659B198A5773000A4449 /* AddressBookUI.framework */; };
|
|
175
|
+
8EED659E198A5782000A4449 /* Social.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EED659D198A5782000A4449 /* Social.framework */; };
|
|
176
|
+
8EED65A0198A5789000A4449 /* Accounts.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EED659F198A5789000A4449 /* Accounts.framework */; };
|
|
177
|
+
8EED65A6198A626B000A4449 /* MapKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EED65A5198A626B000A4449 /* MapKit.framework */; };
|
|
178
|
+
8EED65A8198A6273000A4449 /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EED65A7198A6273000A4449 /* OpenGLES.framework */; };
|
|
179
|
+
9564C423278FE64500C804D3 /* liblibWebNavi.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9564C422278FE64500C804D3 /* liblibWebNavi.a */; };
|
|
180
|
+
95BC64EC2754A50000CB55B9 /* UMDevice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 95BC64E92754A50000CB55B9 /* UMDevice.framework */; };
|
|
181
|
+
95BC64ED2754A50000CB55B9 /* UMCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 95BC64EA2754A50000CB55B9 /* UMCommon.framework */; };
|
|
182
|
+
95BC64EE2754A50000CB55B9 /* UMAPM.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 95BC64EB2754A50000CB55B9 /* UMAPM.framework */; };
|
|
183
|
+
/* End PBXBuildFile section */
|
|
184
|
+
|
|
185
|
+
/* Begin PBXCopyFilesBuildPhase section */
|
|
186
|
+
7A4980F42126ADAD00D20880 /* Embed Frameworks */ = {
|
|
187
|
+
isa = PBXCopyFilesBuildPhase;
|
|
188
|
+
buildActionMask = 2147483647;
|
|
189
|
+
dstPath = "";
|
|
190
|
+
dstSubfolderSpec = 10;
|
|
191
|
+
files = (
|
|
192
|
+
);
|
|
193
|
+
name = "Embed Frameworks";
|
|
194
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
195
|
+
};
|
|
196
|
+
/* End PBXCopyFilesBuildPhase section */
|
|
197
|
+
|
|
198
|
+
/* Begin PBXFileReference section */
|
|
199
|
+
240905021C200AEF0070786F /* CoreBluetooth.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreBluetooth.framework; path = System/Library/Frameworks/CoreBluetooth.framework; sourceTree = SDKROOT; };
|
|
200
|
+
242725CA1D2666ED00EBD79E /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
|
|
201
|
+
242725CC1D26686700EBD79E /* CoreMotion.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMotion.framework; path = System/Library/Frameworks/CoreMotion.framework; sourceTree = SDKROOT; };
|
|
202
|
+
2430A6FF1E11603E00D3D42D /* libcrypto.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libcrypto.a; path = ../SDK/Libs/libcrypto.a; sourceTree = "<group>"; };
|
|
203
|
+
2430A7001E11603E00D3D42D /* libssl.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libssl.a; path = ../SDK/Libs/libssl.a; sourceTree = "<group>"; };
|
|
204
|
+
2447371A1D0830BB00D0F08F /* WebKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebKit.framework; path = System/Library/Frameworks/WebKit.framework; sourceTree = SDKROOT; };
|
|
205
|
+
247F85DA1FA32B2C006ECAC6 /* liblibPDRCore.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = liblibPDRCore.a; path = ../SDK/Libs/liblibPDRCore.a; sourceTree = "<group>"; };
|
|
206
|
+
24A7515E1D9CCCC600C8B0F9 /* QuickLook.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuickLook.framework; path = System/Library/Frameworks/QuickLook.framework; sourceTree = SDKROOT; };
|
|
207
|
+
24AFD7FB1CB50C3200C0F062 /* AlipaySDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AlipaySDK.framework; path = ../SDK/Libs/AlipaySDK.framework; sourceTree = "<group>"; };
|
|
208
|
+
24AFD7FE1CB50C3200C0F062 /* TencentOpenAPI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = TencentOpenAPI.framework; path = ../SDK/Libs/TencentOpenAPI.framework; sourceTree = "<group>"; };
|
|
209
|
+
24AFD8031CB50C3F00C0F062 /* libalixpayment.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libalixpayment.a; path = ../SDK/Libs/libalixpayment.a; sourceTree = "<group>"; };
|
|
210
|
+
24AFD8061CB50C3F00C0F062 /* libBaiduMobStatForSDK.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libBaiduMobStatForSDK.a; path = ../SDK/Libs/libBaiduMobStatForSDK.a; sourceTree = "<group>"; };
|
|
211
|
+
24AFD8091CB50C3F00C0F062 /* libcoreSupport.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libcoreSupport.a; path = ../SDK/Libs/libcoreSupport.a; sourceTree = "<group>"; };
|
|
212
|
+
24AFD80A1CB50C3F00C0F062 /* libGeTuiPush.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libGeTuiPush.a; path = ../SDK/Libs/libGeTuiPush.a; sourceTree = "<group>"; };
|
|
213
|
+
24AFD80C1CB50C3F00C0F062 /* libIAPPay.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libIAPPay.a; path = ../SDK/Libs/libIAPPay.a; sourceTree = "<group>"; };
|
|
214
|
+
24AFD80F1CB50C3F00C0F062 /* liblibAccelerometer.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = liblibAccelerometer.a; path = ../SDK/Libs/liblibAccelerometer.a; sourceTree = "<group>"; };
|
|
215
|
+
24AFD8101CB50C3F00C0F062 /* liblibBarcode.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = liblibBarcode.a; path = ../SDK/Libs/liblibBarcode.a; sourceTree = "<group>"; };
|
|
216
|
+
24AFD8111CB50C3F00C0F062 /* liblibCache.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = liblibCache.a; path = ../SDK/Libs/liblibCache.a; sourceTree = "<group>"; };
|
|
217
|
+
24AFD8121CB50C3F00C0F062 /* liblibCamera.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = liblibCamera.a; path = ../SDK/Libs/liblibCamera.a; sourceTree = "<group>"; };
|
|
218
|
+
24AFD8131CB50C3F00C0F062 /* liblibContacts.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = liblibContacts.a; path = ../SDK/Libs/liblibContacts.a; sourceTree = "<group>"; };
|
|
219
|
+
24AFD8151CB50C4000C0F062 /* liblibIO.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = liblibIO.a; path = ../SDK/Libs/liblibIO.a; sourceTree = "<group>"; };
|
|
220
|
+
24AFD8161CB50C4000C0F062 /* liblibLog.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = liblibLog.a; path = ../SDK/Libs/liblibLog.a; sourceTree = "<group>"; };
|
|
221
|
+
24AFD8171CB50C4000C0F062 /* liblibMap.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = liblibMap.a; path = ../SDK/Libs/liblibMap.a; sourceTree = "<group>"; };
|
|
222
|
+
24AFD8181CB50C4000C0F062 /* liblibMedia.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = liblibMedia.a; path = ../SDK/Libs/liblibMedia.a; sourceTree = "<group>"; };
|
|
223
|
+
24AFD8191CB50C4000C0F062 /* liblibMessage.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = liblibMessage.a; path = ../SDK/Libs/liblibMessage.a; sourceTree = "<group>"; };
|
|
224
|
+
24AFD81A1CB50C4000C0F062 /* liblibNativeObj.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = liblibNativeObj.a; path = ../SDK/Libs/liblibNativeObj.a; sourceTree = "<group>"; };
|
|
225
|
+
24AFD81B1CB50C4000C0F062 /* liblibNativeUI.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = liblibNativeUI.a; path = ../SDK/Libs/liblibNativeUI.a; sourceTree = "<group>"; };
|
|
226
|
+
24AFD81C1CB50C4000C0F062 /* liblibNavigator.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = liblibNavigator.a; path = ../SDK/Libs/liblibNavigator.a; sourceTree = "<group>"; };
|
|
227
|
+
24AFD81D1CB50C4000C0F062 /* liblibOauth.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = liblibOauth.a; path = ../SDK/Libs/liblibOauth.a; sourceTree = "<group>"; };
|
|
228
|
+
24AFD81E1CB50C4000C0F062 /* liblibOrientation.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = liblibOrientation.a; path = ../SDK/Libs/liblibOrientation.a; sourceTree = "<group>"; };
|
|
229
|
+
24AFD81F1CB50C4000C0F062 /* liblibPayment.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = liblibPayment.a; path = ../SDK/Libs/liblibPayment.a; sourceTree = "<group>"; };
|
|
230
|
+
24AFD8211CB50C4000C0F062 /* liblibPGInvocation.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = liblibPGInvocation.a; path = ../SDK/Libs/liblibPGInvocation.a; sourceTree = "<group>"; };
|
|
231
|
+
24AFD8221CB50C4000C0F062 /* liblibPGProximity.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = liblibPGProximity.a; path = ../SDK/Libs/liblibPGProximity.a; sourceTree = "<group>"; };
|
|
232
|
+
24AFD8231CB50C4000C0F062 /* liblibPush.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = liblibPush.a; path = ../SDK/Libs/liblibPush.a; sourceTree = "<group>"; };
|
|
233
|
+
24AFD8241CB50C4000C0F062 /* liblibShare.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = liblibShare.a; path = ../SDK/Libs/liblibShare.a; sourceTree = "<group>"; };
|
|
234
|
+
24AFD8251CB50C4000C0F062 /* liblibSpeech.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = liblibSpeech.a; path = ../SDK/Libs/liblibSpeech.a; sourceTree = "<group>"; };
|
|
235
|
+
24AFD8261CB50C4000C0F062 /* liblibStatistic.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = liblibStatistic.a; path = ../SDK/Libs/liblibStatistic.a; sourceTree = "<group>"; };
|
|
236
|
+
24AFD8271CB50C4000C0F062 /* liblibStorage.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = liblibStorage.a; path = ../SDK/Libs/liblibStorage.a; sourceTree = "<group>"; };
|
|
237
|
+
24AFD8281CB50C4000C0F062 /* liblibUI.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = liblibUI.a; path = ../SDK/Libs/liblibUI.a; sourceTree = "<group>"; };
|
|
238
|
+
24AFD82B1CB50C4000C0F062 /* liblibXHR.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = liblibXHR.a; path = ../SDK/Libs/liblibXHR.a; sourceTree = "<group>"; };
|
|
239
|
+
24AFD82C1CB50C4000C0F062 /* liblibZip.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = liblibZip.a; path = ../SDK/Libs/liblibZip.a; sourceTree = "<group>"; };
|
|
240
|
+
24AFD82E1CB50C4000C0F062 /* libopencore-amrnb.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = "libopencore-amrnb.a"; path = "../SDK/Libs/libopencore-amrnb.a"; sourceTree = "<group>"; };
|
|
241
|
+
24AFD8321CB50C4000C0F062 /* libQQOauth.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libQQOauth.a; path = ../SDK/Libs/libQQOauth.a; sourceTree = "<group>"; };
|
|
242
|
+
24AFD8331CB50C4000C0F062 /* libQQShare.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libQQShare.a; path = ../SDK/Libs/libQQShare.a; sourceTree = "<group>"; };
|
|
243
|
+
24AFD8341CB50C4000C0F062 /* libSDWebImage.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libSDWebImage.a; path = ../SDK/Libs/libSDWebImage.a; sourceTree = "<group>"; };
|
|
244
|
+
24AFD8351CB50C4000C0F062 /* libSinaShare.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libSinaShare.a; path = ../SDK/Libs/libSinaShare.a; sourceTree = "<group>"; };
|
|
245
|
+
24AFD8361CB50C4000C0F062 /* libSinaWBOauth.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libSinaWBOauth.a; path = ../SDK/Libs/libSinaWBOauth.a; sourceTree = "<group>"; };
|
|
246
|
+
24AFD8391CB50C4000C0F062 /* libTouchJSON.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libTouchJSON.a; path = ../SDK/Libs/libTouchJSON.a; sourceTree = "<group>"; };
|
|
247
|
+
24AFD83C1CB50C4000C0F062 /* libWeiboSDK.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libWeiboSDK.a; path = ../SDK/Libs/libWeiboSDK.a; sourceTree = "<group>"; };
|
|
248
|
+
24AFD83D1CB50C4000C0F062 /* libweixinShare.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libweixinShare.a; path = ../SDK/Libs/libweixinShare.a; sourceTree = "<group>"; };
|
|
249
|
+
24AFD83E1CB50C4000C0F062 /* libWXOauth.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libWXOauth.a; path = ../SDK/Libs/libWXOauth.a; sourceTree = "<group>"; };
|
|
250
|
+
24AFD83F1CB50C4000C0F062 /* libwxpay.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libwxpay.a; path = ../SDK/Libs/libwxpay.a; sourceTree = "<group>"; };
|
|
251
|
+
24BD5AE71C99491D00B05AA2 /* libsqlite3.0.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.0.tbd; path = usr/lib/libsqlite3.0.tbd; sourceTree = SDKROOT; };
|
|
252
|
+
24BD5AE91C99492A00B05AA2 /* libiconv.2.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libiconv.2.tbd; path = usr/lib/libiconv.2.tbd; sourceTree = SDKROOT; };
|
|
253
|
+
24BD5AED1C99494200B05AA2 /* libxml2.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libxml2.tbd; path = usr/lib/libxml2.tbd; sourceTree = SDKROOT; };
|
|
254
|
+
24BD5AEF1C99494A00B05AA2 /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
|
|
255
|
+
24BD5AF11C994A1700B05AA2 /* libicucore.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libicucore.tbd; path = usr/lib/libicucore.tbd; sourceTree = SDKROOT; };
|
|
256
|
+
24BD5AF51C994BB200B05AA2 /* libc++.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++.tbd"; path = "usr/lib/libc++.tbd"; sourceTree = SDKROOT; };
|
|
257
|
+
24F990121DFBDA3300848C2B /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = System/Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; };
|
|
258
|
+
2F0BA3F8215B48A700F67004 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = ../HBuilder/Images.xcassets; sourceTree = "<group>"; };
|
|
259
|
+
2F0BA40D215B6E6800F67004 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
|
|
260
|
+
2F0BA40F215B784000F67004 /* Contacts.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Contacts.framework; path = System/Library/Frameworks/Contacts.framework; sourceTree = SDKROOT; };
|
|
261
|
+
2F0BA411215B814000F67004 /* liblibVideo.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = liblibVideo.a; path = ../SDK/Libs/liblibVideo.a; sourceTree = "<group>"; };
|
|
262
|
+
2F0BA415215B8B1300F67004 /* VideoToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = VideoToolbox.framework; path = System/Library/Frameworks/VideoToolbox.framework; sourceTree = SDKROOT; };
|
|
263
|
+
2F0BA417215B8B5C00F67004 /* libbz2.1.0.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libbz2.1.0.tbd; path = usr/lib/libbz2.1.0.tbd; sourceTree = SDKROOT; };
|
|
264
|
+
2F0BA4DB215BA12300F67004 /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = LaunchScreen.storyboard; sourceTree = "<group>"; };
|
|
265
|
+
2FD11BBA215C79C5000A23AD /* liblibAdSupport.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = liblibAdSupport.a; path = ../SDK/Libs/liblibAdSupport.a; sourceTree = "<group>"; };
|
|
266
|
+
2FDE1569215F468000588710 /* liblibWeex.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = liblibWeex.a; path = ../SDK/Libs/liblibWeex.a; sourceTree = "<group>"; };
|
|
267
|
+
408652222806A9EF007B18A5 /* TencentLBS.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = TencentLBS.framework; sourceTree = "<group>"; };
|
|
268
|
+
408652272806C445007B18A5 /* libz.1.2.5.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.1.2.5.tbd; path = usr/lib/libz.1.2.5.tbd; sourceTree = SDKROOT; };
|
|
269
|
+
40D85F6D27B9EE3B00FCDE13 /* 120x120.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = 120x120.png; sourceTree = "<group>"; };
|
|
270
|
+
40D85F6E27B9EE3B00FCDE13 /* 180x180.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = 180x180.png; sourceTree = "<group>"; };
|
|
271
|
+
40F248BE27BA2FAD0042E27E /* Xprinter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Xprinter.h; sourceTree = "<group>"; };
|
|
272
|
+
40F248BF27BA2FAD0042E27E /* Xprinter.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Xprinter.m; sourceTree = "<group>"; };
|
|
273
|
+
40F248F027BB7F250042E27E /* XYSDK.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = XYSDK.a; path = ../XYSDK/XYSDK.a; sourceTree = "<group>"; };
|
|
274
|
+
40F248F527BB7F3D0042E27E /* XYBLEManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XYBLEManager.h; sourceTree = "<group>"; };
|
|
275
|
+
40F248F627BB7F3D0042E27E /* PosCommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PosCommand.h; sourceTree = "<group>"; };
|
|
276
|
+
40F248F727BB7F3D0042E27E /* ImageTranster.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ImageTranster.h; sourceTree = "<group>"; };
|
|
277
|
+
40F248F827BB7F3D0042E27E /* AsyncSocket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AsyncSocket.h; sourceTree = "<group>"; };
|
|
278
|
+
40F248F927BB7F3D0042E27E /* BLEManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BLEManager.h; sourceTree = "<group>"; };
|
|
279
|
+
40F248FA27BB7F3D0042E27E /* libXYPrinter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = libXYPrinter.h; sourceTree = "<group>"; };
|
|
280
|
+
40F248FB27BB7F3D0042E27E /* TscCommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TscCommand.h; sourceTree = "<group>"; };
|
|
281
|
+
40F248FC27BB7F3D0042E27E /* XYSDK.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XYSDK.h; sourceTree = "<group>"; };
|
|
282
|
+
40F248FD27BB7F3D0042E27E /* AsyncUdpSocket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AsyncUdpSocket.h; sourceTree = "<group>"; };
|
|
283
|
+
40F248FE27BB7F3D0042E27E /* XYWIFIManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XYWIFIManager.h; sourceTree = "<group>"; };
|
|
284
|
+
40F248FF27BB7F3D0042E27E /* XYSDK.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = XYSDK.a; sourceTree = "<group>"; };
|
|
285
|
+
4F48902024656F73003B56F0 /* mapapi.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = mapapi.bundle; sourceTree = "<group>"; };
|
|
286
|
+
4F48902124656F73003B56F0 /* __uniappes6.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = __uniappes6.js; sourceTree = "<group>"; };
|
|
287
|
+
4F48902224656F73003B56F0 /* MiPassport.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = MiPassport.bundle; sourceTree = "<group>"; };
|
|
288
|
+
4F48902324656F73003B56F0 /* AlipaySDK.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = AlipaySDK.bundle; sourceTree = "<group>"; };
|
|
289
|
+
4F48902424656F73003B56F0 /* uni-jsframework.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = "uni-jsframework.js"; sourceTree = "<group>"; };
|
|
290
|
+
4F48902524656F73003B56F0 /* WeiboSDK.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = WeiboSDK.bundle; sourceTree = "<group>"; };
|
|
291
|
+
4F48902824656F73003B56F0 /* bds_license.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = bds_license.dat; sourceTree = "<group>"; };
|
|
292
|
+
4F48902924656F73003B56F0 /* bds_easr_basic_model.dat */ = {isa = PBXFileReference; lastKnownFileType = file; path = bds_easr_basic_model.dat; sourceTree = "<group>"; };
|
|
293
|
+
4F48902A24656F73003B56F0 /* bds_easr_mfe_cmvn.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = bds_easr_mfe_cmvn.dat; sourceTree = "<group>"; };
|
|
294
|
+
4F48902B24656F73003B56F0 /* temp_license_2018-02-24.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "temp_license_2018-02-24.dat"; sourceTree = "<group>"; };
|
|
295
|
+
4F48902C24656F73003B56F0 /* bds_easr_mfe_dnn.dat */ = {isa = PBXFileReference; lastKnownFileType = file; path = bds_easr_mfe_dnn.dat; sourceTree = "<group>"; };
|
|
296
|
+
4F48902D24656F73003B56F0 /* bds_easr_gramm.dat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = bds_easr_gramm.dat; sourceTree = "<group>"; };
|
|
297
|
+
4F48902E24656F73003B56F0 /* bds_easr_wakeup_words.dat */ = {isa = PBXFileReference; lastKnownFileType = file; path = bds_easr_wakeup_words.dat; sourceTree = "<group>"; };
|
|
298
|
+
4F48902F24656F73003B56F0 /* bds_easr_dnn_wakeup_model.dat */ = {isa = PBXFileReference; lastKnownFileType = file; path = bds_easr_dnn_wakeup_model.dat; sourceTree = "<group>"; };
|
|
299
|
+
4F48903024656F73003B56F0 /* DCTZImagePickerController.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = DCTZImagePickerController.bundle; sourceTree = "<group>"; };
|
|
300
|
+
4F48903124656F73003B56F0 /* PandoraApi.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = PandoraApi.bundle; sourceTree = "<group>"; };
|
|
301
|
+
4F48903224656F73003B56F0 /* unincomponents.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = unincomponents.ttf; sourceTree = "<group>"; };
|
|
302
|
+
4F48903324656F73003B56F0 /* QHADVideoPlayer.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = QHADVideoPlayer.bundle; sourceTree = "<group>"; };
|
|
303
|
+
4F48903424656F73003B56F0 /* AMap.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = AMap.bundle; sourceTree = "<group>"; };
|
|
304
|
+
4F48903524656F73003B56F0 /* uni-jsframework-dev.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = "uni-jsframework-dev.js"; sourceTree = "<group>"; };
|
|
305
|
+
4F48903624656F73003B56F0 /* userPosition@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "userPosition@2x.png"; sourceTree = "<group>"; };
|
|
306
|
+
4F48903724656F73003B56F0 /* qucsdkResources.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = qucsdkResources.bundle; sourceTree = "<group>"; };
|
|
307
|
+
4F48903824656F73003B56F0 /* BUAdSDK.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = BUAdSDK.bundle; sourceTree = "<group>"; };
|
|
308
|
+
4F48903924656F73003B56F0 /* DCPGVideo.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = DCPGVideo.bundle; sourceTree = "<group>"; };
|
|
309
|
+
4F48903A24656F73003B56F0 /* DCMediaVideo.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = DCMediaVideo.bundle; sourceTree = "<group>"; };
|
|
310
|
+
4F48903B24656F73003B56F0 /* DCSVProgressHUD.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = DCSVProgressHUD.bundle; sourceTree = "<group>"; };
|
|
311
|
+
4F48903C24656F73003B56F0 /* weex-polyfill.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = "weex-polyfill.js"; sourceTree = "<group>"; };
|
|
312
|
+
4F48903D24656F73003B56F0 /* weexUniJs.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = weexUniJs.js; sourceTree = "<group>"; };
|
|
313
|
+
4F48905C24656F98003B56F0 /* PDRCoreAppWindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PDRCoreAppWindow.h; sourceTree = "<group>"; };
|
|
314
|
+
4F48905D24656F98003B56F0 /* PDRNView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PDRNView.h; sourceTree = "<group>"; };
|
|
315
|
+
4F48905E24656F98003B56F0 /* PDRCommonString.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PDRCommonString.h; sourceTree = "<group>"; };
|
|
316
|
+
4F48905F24656F98003B56F0 /* PDRCoreWindowManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PDRCoreWindowManager.h; sourceTree = "<group>"; };
|
|
317
|
+
4F48906024656F98003B56F0 /* PGPlugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PGPlugin.h; sourceTree = "<group>"; };
|
|
318
|
+
4F48906124656F98003B56F0 /* H5WEEngineExport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = H5WEEngineExport.h; sourceTree = "<group>"; };
|
|
319
|
+
4F48906224656F98003B56F0 /* PDRCoreAppInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PDRCoreAppInfo.h; sourceTree = "<group>"; };
|
|
320
|
+
4F48906324656F98003B56F0 /* PDRToolSystem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PDRToolSystem.h; sourceTree = "<group>"; };
|
|
321
|
+
4F48907424656F98003B56F0 /* PDRCoreAppFrame.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PDRCoreAppFrame.h; sourceTree = "<group>"; };
|
|
322
|
+
4F48907624656F98003B56F0 /* MASCompositeConstraint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MASCompositeConstraint.h; sourceTree = "<group>"; };
|
|
323
|
+
4F48907724656F98003B56F0 /* MASConstraint+Private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "MASConstraint+Private.h"; sourceTree = "<group>"; };
|
|
324
|
+
4F48907824656F98003B56F0 /* MASLayoutConstraint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MASLayoutConstraint.h; sourceTree = "<group>"; };
|
|
325
|
+
4F48907924656F98003B56F0 /* NSArray+MASShorthandAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+MASShorthandAdditions.h"; sourceTree = "<group>"; };
|
|
326
|
+
4F48907A24656F98003B56F0 /* MASConstraintMaker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MASConstraintMaker.h; sourceTree = "<group>"; };
|
|
327
|
+
4F48907B24656F98003B56F0 /* View+MASAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "View+MASAdditions.h"; sourceTree = "<group>"; };
|
|
328
|
+
4F48907C24656F98003B56F0 /* NSArray+MASAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+MASAdditions.h"; sourceTree = "<group>"; };
|
|
329
|
+
4F48907D24656F98003B56F0 /* MASUtilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MASUtilities.h; sourceTree = "<group>"; };
|
|
330
|
+
4F48907E24656F98003B56F0 /* MASViewAttribute.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MASViewAttribute.h; sourceTree = "<group>"; };
|
|
331
|
+
4F48907F24656F98003B56F0 /* MASViewConstraint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MASViewConstraint.h; sourceTree = "<group>"; };
|
|
332
|
+
4F48908024656F98003B56F0 /* MASConstraint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MASConstraint.h; sourceTree = "<group>"; };
|
|
333
|
+
4F48908124656F98003B56F0 /* NSLayoutConstraint+MASDebugAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSLayoutConstraint+MASDebugAdditions.h"; sourceTree = "<group>"; };
|
|
334
|
+
4F48908224656F98003B56F0 /* View+MASShorthandAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "View+MASShorthandAdditions.h"; sourceTree = "<group>"; };
|
|
335
|
+
4F48908324656F98003B56F0 /* Masonry.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Masonry.h; sourceTree = "<group>"; };
|
|
336
|
+
4F48908424656F98003B56F0 /* ViewController+MASAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "ViewController+MASAdditions.h"; sourceTree = "<group>"; };
|
|
337
|
+
4F48908A24656F98003B56F0 /* PGMethod.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PGMethod.h; sourceTree = "<group>"; };
|
|
338
|
+
4F48908B24656F98003B56F0 /* PDRCore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PDRCore.h; sourceTree = "<group>"; };
|
|
339
|
+
4F48908C24656F98003B56F0 /* PGObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PGObject.h; sourceTree = "<group>"; };
|
|
340
|
+
4F48908D24656F98003B56F0 /* PDRToolSystemEx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PDRToolSystemEx.h; sourceTree = "<group>"; };
|
|
341
|
+
4F48908E24656F98003B56F0 /* PDRCoreAppManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PDRCoreAppManager.h; sourceTree = "<group>"; };
|
|
342
|
+
4F48908F24656F98003B56F0 /* PDRCoreSettings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PDRCoreSettings.h; sourceTree = "<group>"; };
|
|
343
|
+
4F48909024656F98003B56F0 /* H5CoreScreenEdgePan.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = H5CoreScreenEdgePan.h; sourceTree = "<group>"; };
|
|
344
|
+
4F48909124656F98003B56F0 /* H5UniversalApp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = H5UniversalApp.h; sourceTree = "<group>"; };
|
|
345
|
+
4F48909224656F98003B56F0 /* DCADManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DCADManager.h; sourceTree = "<group>"; };
|
|
346
|
+
4F48909324656F98003B56F0 /* H5CoreOverrideResourceOptions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = H5CoreOverrideResourceOptions.h; sourceTree = "<group>"; };
|
|
347
|
+
4F48909524656F98003B56F0 /* WXModuleProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXModuleProtocol.h; sourceTree = "<group>"; };
|
|
348
|
+
4F48909624656F98003B56F0 /* WXResourceLoader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXResourceLoader.h; sourceTree = "<group>"; };
|
|
349
|
+
4F48909724656F98003B56F0 /* WXApmForInstance.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXApmForInstance.h; sourceTree = "<group>"; };
|
|
350
|
+
4F48909824656F98003B56F0 /* WXWebSocketHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXWebSocketHandler.h; sourceTree = "<group>"; };
|
|
351
|
+
4F48909924656F98003B56F0 /* WXImgLoaderProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXImgLoaderProtocol.h; sourceTree = "<group>"; };
|
|
352
|
+
4F48909A24656F98003B56F0 /* WXComponentManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXComponentManager.h; sourceTree = "<group>"; };
|
|
353
|
+
4F48909B24656F98003B56F0 /* WXScrollerProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXScrollerProtocol.h; sourceTree = "<group>"; };
|
|
354
|
+
4F48909C24656F98003B56F0 /* WXRichText.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXRichText.h; sourceTree = "<group>"; };
|
|
355
|
+
4F48909D24656F98003B56F0 /* WXView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXView.h; sourceTree = "<group>"; };
|
|
356
|
+
4F48909E24656F98003B56F0 /* WXValidateProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXValidateProtocol.h; sourceTree = "<group>"; };
|
|
357
|
+
4F48909F24656F98003B56F0 /* WXDefine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXDefine.h; sourceTree = "<group>"; };
|
|
358
|
+
4F4890A024656F98003B56F0 /* JSContext+Weex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "JSContext+Weex.h"; sourceTree = "<group>"; };
|
|
359
|
+
4F4890A124656F98003B56F0 /* WXExtendCallNativeProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXExtendCallNativeProtocol.h; sourceTree = "<group>"; };
|
|
360
|
+
4F4890A224656F98003B56F0 /* WXSDKEngine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXSDKEngine.h; sourceTree = "<group>"; };
|
|
361
|
+
4F4890A324656F98003B56F0 /* style.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = style.h; sourceTree = "<group>"; };
|
|
362
|
+
4F4890A424656F98003B56F0 /* WXResourceRequestHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXResourceRequestHandler.h; sourceTree = "<group>"; };
|
|
363
|
+
4F4890A524656F98003B56F0 /* WXDisplayLinkManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXDisplayLinkManager.h; sourceTree = "<group>"; };
|
|
364
|
+
4F4890A624656F98003B56F0 /* WXUtility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXUtility.h; sourceTree = "<group>"; };
|
|
365
|
+
4F4890A724656F98003B56F0 /* WXResourceRequest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXResourceRequest.h; sourceTree = "<group>"; };
|
|
366
|
+
4F4890A824656F98003B56F0 /* WXConvert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXConvert.h; sourceTree = "<group>"; };
|
|
367
|
+
4F4890A924656F98003B56F0 /* WXPageEventNotifyEvent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXPageEventNotifyEvent.h; sourceTree = "<group>"; };
|
|
368
|
+
4F4890AA24656F98003B56F0 /* WXSDKInstance.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXSDKInstance.h; sourceTree = "<group>"; };
|
|
369
|
+
4F4890AB24656F98003B56F0 /* WXSDKManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXSDKManager.h; sourceTree = "<group>"; };
|
|
370
|
+
4F4890AC24656F98003B56F0 /* WXDebugTool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXDebugTool.h; sourceTree = "<group>"; };
|
|
371
|
+
4F4890AD24656F98003B56F0 /* WXType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXType.h; sourceTree = "<group>"; };
|
|
372
|
+
4F4890AE24656F98003B56F0 /* WXApmProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXApmProtocol.h; sourceTree = "<group>"; };
|
|
373
|
+
4F4890AF24656F98003B56F0 /* WXJSFrameworkLoadProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXJSFrameworkLoadProtocol.h; sourceTree = "<group>"; };
|
|
374
|
+
4F4890B024656F98003B56F0 /* WXExceptionUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXExceptionUtils.h; sourceTree = "<group>"; };
|
|
375
|
+
4F4890B124656F98003B56F0 /* WXIndicatorComponent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXIndicatorComponent.h; sourceTree = "<group>"; };
|
|
376
|
+
4F4890B224656F98003B56F0 /* WXErrorView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXErrorView.h; sourceTree = "<group>"; };
|
|
377
|
+
4F4890B324656F98003B56F0 /* NSObject+WXSwizzle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+WXSwizzle.h"; sourceTree = "<group>"; };
|
|
378
|
+
4F4890B424656F98003B56F0 /* WXMonitor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXMonitor.h; sourceTree = "<group>"; };
|
|
379
|
+
4F4890B524656F98003B56F0 /* WXSDKInstance+DCExtend.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "WXSDKInstance+DCExtend.h"; sourceTree = "<group>"; };
|
|
380
|
+
4F4890B624656F98003B56F0 /* WXRecyclerComponent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXRecyclerComponent.h; sourceTree = "<group>"; };
|
|
381
|
+
4F4890B724656F98003B56F0 /* WXLog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXLog.h; sourceTree = "<group>"; };
|
|
382
|
+
4F4890B824656F98003B56F0 /* WXScrollerComponent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXScrollerComponent.h; sourceTree = "<group>"; };
|
|
383
|
+
4F4890B924656F98003B56F0 /* WXNetworkProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXNetworkProtocol.h; sourceTree = "<group>"; };
|
|
384
|
+
4F4890BA24656F98003B56F0 /* WXTracingManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXTracingManager.h; sourceTree = "<group>"; };
|
|
385
|
+
4F4890BB24656F98003B56F0 /* WXComponent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXComponent.h; sourceTree = "<group>"; };
|
|
386
|
+
4F4890BC24656F98003B56F0 /* WXPrerenderManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXPrerenderManager.h; sourceTree = "<group>"; };
|
|
387
|
+
4F4890BD24656F98003B56F0 /* WXComponent+Layout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "WXComponent+Layout.h"; sourceTree = "<group>"; };
|
|
388
|
+
4F4890BE24656F98003B56F0 /* layout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = layout.h; sourceTree = "<group>"; };
|
|
389
|
+
4F4890BF24656F98003B56F0 /* WXSDKInstance+Bridge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "WXSDKInstance+Bridge.h"; sourceTree = "<group>"; };
|
|
390
|
+
4F4890C024656F98003B56F0 /* UniPluginProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UniPluginProtocol.h; sourceTree = "<group>"; };
|
|
391
|
+
4F4890C124656F98003B56F0 /* WXModalUIModule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXModalUIModule.h; sourceTree = "<group>"; };
|
|
392
|
+
4F4890C224656F98003B56F0 /* WXAnalyzerCenter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXAnalyzerCenter.h; sourceTree = "<group>"; };
|
|
393
|
+
4F4890C324656F98003B56F0 /* WXVoiceOverModule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXVoiceOverModule.h; sourceTree = "<group>"; };
|
|
394
|
+
4F4890C424656F98003B56F0 /* WXRootView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXRootView.h; sourceTree = "<group>"; };
|
|
395
|
+
4F4890C524656F98003B56F0 /* WXAppConfiguration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXAppConfiguration.h; sourceTree = "<group>"; };
|
|
396
|
+
4F4890C624656F98003B56F0 /* WXListComponent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXListComponent.h; sourceTree = "<group>"; };
|
|
397
|
+
4F4890C724656F98003B56F0 /* WXSDKError.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXSDKError.h; sourceTree = "<group>"; };
|
|
398
|
+
4F4890C824656F98003B56F0 /* WXRootViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXRootViewController.h; sourceTree = "<group>"; };
|
|
399
|
+
4F4890C924656F98003B56F0 /* WXNavigationProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXNavigationProtocol.h; sourceTree = "<group>"; };
|
|
400
|
+
4F4890CA24656F98003B56F0 /* WXAnalyzerProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXAnalyzerProtocol.h; sourceTree = "<group>"; };
|
|
401
|
+
4F4890CB24656F98003B56F0 /* WeexSDK.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WeexSDK.h; sourceTree = "<group>"; };
|
|
402
|
+
4F4890CC24656F98003B56F0 /* WXBridgeManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXBridgeManager.h; sourceTree = "<group>"; };
|
|
403
|
+
4F4890CD24656F98003B56F0 /* WXResourceResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXResourceResponse.h; sourceTree = "<group>"; };
|
|
404
|
+
4F4890CE24656F98003B56F0 /* WXBaseViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXBaseViewController.h; sourceTree = "<group>"; };
|
|
405
|
+
4F4890CF24656F98003B56F0 /* WXAppMonitorProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXAppMonitorProtocol.h; sourceTree = "<group>"; };
|
|
406
|
+
4F4890D024656F98003B56F0 /* WeexProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WeexProtocol.h; sourceTree = "<group>"; };
|
|
407
|
+
4F4890D124656F98003B56F0 /* WXJSExceptionProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXJSExceptionProtocol.h; sourceTree = "<group>"; };
|
|
408
|
+
4F4890D224656F98003B56F0 /* WXJSExceptionInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXJSExceptionInfo.h; sourceTree = "<group>"; };
|
|
409
|
+
4F4890D324656F98003B56F0 /* WXTracingProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXTracingProtocol.h; sourceTree = "<group>"; };
|
|
410
|
+
4F4890D424656F98003B56F0 /* flex_enum.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = flex_enum.h; sourceTree = "<group>"; };
|
|
411
|
+
4F4890D524656F98003B56F0 /* WXConfigCenterProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXConfigCenterProtocol.h; sourceTree = "<group>"; };
|
|
412
|
+
4F4890D624656F98003B56F0 /* WXEventModuleProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXEventModuleProtocol.h; sourceTree = "<group>"; };
|
|
413
|
+
4F4890D724656F98003B56F0 /* WXURLRewriteProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXURLRewriteProtocol.h; sourceTree = "<group>"; };
|
|
414
|
+
4F4890D824656F98003B56F0 /* WXAComponent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXAComponent.h; sourceTree = "<group>"; };
|
|
415
|
+
4F4890D924656F98003B56F0 /* WXBridgeProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXBridgeProtocol.h; sourceTree = "<group>"; };
|
|
416
|
+
4F4890DC24656F98003B56F0 /* SDAnimatedImageRep.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDAnimatedImageRep.h; sourceTree = "<group>"; };
|
|
417
|
+
4F4890DD24656F98003B56F0 /* SDDiskCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDDiskCache.h; sourceTree = "<group>"; };
|
|
418
|
+
4F4890DE24656F98003B56F0 /* SDImageIOCoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDImageIOCoder.h; sourceTree = "<group>"; };
|
|
419
|
+
4F4890DF24656F98003B56F0 /* NSButton+WebCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSButton+WebCache.h"; sourceTree = "<group>"; };
|
|
420
|
+
4F4890E024656F98003B56F0 /* SDImageGraphics.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDImageGraphics.h; sourceTree = "<group>"; };
|
|
421
|
+
4F4890E124656F98003B56F0 /* UIImageView+WebCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImageView+WebCache.h"; sourceTree = "<group>"; };
|
|
422
|
+
4F4890E224656F98003B56F0 /* NSData+ImageContentType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSData+ImageContentType.h"; sourceTree = "<group>"; };
|
|
423
|
+
4F4890E324656F98003B56F0 /* SDImageTransformer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDImageTransformer.h; sourceTree = "<group>"; };
|
|
424
|
+
4F4890E424656F98003B56F0 /* SDImageCachesManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDImageCachesManager.h; sourceTree = "<group>"; };
|
|
425
|
+
4F4890E524656F98003B56F0 /* SDWebImageTransition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageTransition.h; sourceTree = "<group>"; };
|
|
426
|
+
4F4890E624656F98003B56F0 /* SDImageLoadersManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDImageLoadersManager.h; sourceTree = "<group>"; };
|
|
427
|
+
4F4890E724656F98003B56F0 /* SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageDownloaderOperation.h; sourceTree = "<group>"; };
|
|
428
|
+
4F4890E824656F98003B56F0 /* SDImageFrame.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDImageFrame.h; sourceTree = "<group>"; };
|
|
429
|
+
4F4890E924656F98003B56F0 /* SDImageGIFCoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDImageGIFCoder.h; sourceTree = "<group>"; };
|
|
430
|
+
4F4890EA24656F98003B56F0 /* SDImageCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDImageCache.h; sourceTree = "<group>"; };
|
|
431
|
+
4F4890EB24656F98003B56F0 /* SDWebImageDownloaderConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageDownloaderConfig.h; sourceTree = "<group>"; };
|
|
432
|
+
4F4890EC24656F98003B56F0 /* SDImageCacheConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDImageCacheConfig.h; sourceTree = "<group>"; };
|
|
433
|
+
4F4890ED24656F98003B56F0 /* SDWebImageCacheKeyFilter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageCacheKeyFilter.h; sourceTree = "<group>"; };
|
|
434
|
+
4F4890EE24656F98003B56F0 /* UIImage+MemoryCacheCost.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+MemoryCacheCost.h"; sourceTree = "<group>"; };
|
|
435
|
+
4F4890EF24656F98003B56F0 /* SDImageCacheDefine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDImageCacheDefine.h; sourceTree = "<group>"; };
|
|
436
|
+
4F4890F024656F98003B56F0 /* UIButton+WebCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+WebCache.h"; sourceTree = "<group>"; };
|
|
437
|
+
4F4890F124656F98003B56F0 /* SDWebImageDownloaderRequestModifier.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageDownloaderRequestModifier.h; sourceTree = "<group>"; };
|
|
438
|
+
4F4890F224656F98003B56F0 /* UIImage+Metadata.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Metadata.h"; sourceTree = "<group>"; };
|
|
439
|
+
4F4890F324656F98003B56F0 /* SDWebImageOptionsProcessor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageOptionsProcessor.h; sourceTree = "<group>"; };
|
|
440
|
+
4F4890F424656F98003B56F0 /* UIView+WebCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+WebCache.h"; sourceTree = "<group>"; };
|
|
441
|
+
4F4890F524656F98003B56F0 /* UIView+WebCacheOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+WebCacheOperation.h"; sourceTree = "<group>"; };
|
|
442
|
+
4F4890F624656F98003B56F0 /* SDWebImageDefine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageDefine.h; sourceTree = "<group>"; };
|
|
443
|
+
4F4890F724656F98003B56F0 /* SDImageCoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDImageCoder.h; sourceTree = "<group>"; };
|
|
444
|
+
4F4890F824656F98003B56F0 /* SDAnimatedImageView+WebCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "SDAnimatedImageView+WebCache.h"; sourceTree = "<group>"; };
|
|
445
|
+
4F4890F924656F98003B56F0 /* NSImage+Compatibility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSImage+Compatibility.h"; sourceTree = "<group>"; };
|
|
446
|
+
4F4890FA24656F98003B56F0 /* SDAnimatedImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDAnimatedImageView.h; sourceTree = "<group>"; };
|
|
447
|
+
4F4890FB24656F98003B56F0 /* SDAnimatedImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDAnimatedImage.h; sourceTree = "<group>"; };
|
|
448
|
+
4F4890FC24656F98003B56F0 /* UIImageView+HighlightedWebCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImageView+HighlightedWebCache.h"; sourceTree = "<group>"; };
|
|
449
|
+
4F4890FD24656F98003B56F0 /* SDWebImageManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageManager.h; sourceTree = "<group>"; };
|
|
450
|
+
4F4890FE24656F98003B56F0 /* SDWebImageOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageOperation.h; sourceTree = "<group>"; };
|
|
451
|
+
4F4890FF24656F98003B56F0 /* SDWebImageIndicator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageIndicator.h; sourceTree = "<group>"; };
|
|
452
|
+
4F48910024656F98003B56F0 /* SDWebImageCacheSerializer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageCacheSerializer.h; sourceTree = "<group>"; };
|
|
453
|
+
4F48910124656F98003B56F0 /* SDImageLoader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDImageLoader.h; sourceTree = "<group>"; };
|
|
454
|
+
4F48910224656F98003B56F0 /* SDWebImageDownloader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageDownloader.h; sourceTree = "<group>"; };
|
|
455
|
+
4F48910324656F98003B56F0 /* UIImage+Transform.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Transform.h"; sourceTree = "<group>"; };
|
|
456
|
+
4F48910424656F98003B56F0 /* UIImage+ForceDecode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+ForceDecode.h"; sourceTree = "<group>"; };
|
|
457
|
+
4F48910524656F98003B56F0 /* SDImageCoderHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDImageCoderHelper.h; sourceTree = "<group>"; };
|
|
458
|
+
4F48910624656F98003B56F0 /* SDWebImagePrefetcher.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImagePrefetcher.h; sourceTree = "<group>"; };
|
|
459
|
+
4F48910724656F98003B56F0 /* SDImageAPNGCoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDImageAPNGCoder.h; sourceTree = "<group>"; };
|
|
460
|
+
4F48910824656F98003B56F0 /* SDWebImageError.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageError.h; sourceTree = "<group>"; };
|
|
461
|
+
4F48910924656F98003B56F0 /* SDWebImageCompat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageCompat.h; sourceTree = "<group>"; };
|
|
462
|
+
4F48910A24656F98003B56F0 /* SDMemoryCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDMemoryCache.h; sourceTree = "<group>"; };
|
|
463
|
+
4F48910B24656F98003B56F0 /* UIImage+MultiFormat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+MultiFormat.h"; sourceTree = "<group>"; };
|
|
464
|
+
4F48910C24656F98003B56F0 /* SDImageCodersManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDImageCodersManager.h; sourceTree = "<group>"; };
|
|
465
|
+
4F48910D24656F98003B56F0 /* UIImage+GIF.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+GIF.h"; sourceTree = "<group>"; };
|
|
466
|
+
4F48910F24656F98003B56F0 /* SDImageWebPCoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDImageWebPCoder.h; sourceTree = "<group>"; };
|
|
467
|
+
4F48911024656F98003B56F0 /* UIImage+WebP.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+WebP.h"; sourceTree = "<group>"; };
|
|
468
|
+
4F48911224656F98003B56F0 /* SDWeakProxy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWeakProxy.h; sourceTree = "<group>"; };
|
|
469
|
+
4F48911324656F98003B56F0 /* SDInternalMacros.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDInternalMacros.h; sourceTree = "<group>"; };
|
|
470
|
+
4F48911424656F98003B56F0 /* NSBezierPath+RoundedCorners.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSBezierPath+RoundedCorners.h"; sourceTree = "<group>"; };
|
|
471
|
+
4F48911524656F98003B56F0 /* SDImageAPNGCoderInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDImageAPNGCoderInternal.h; sourceTree = "<group>"; };
|
|
472
|
+
4F48911624656F98003B56F0 /* SDAsyncBlockOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDAsyncBlockOperation.h; sourceTree = "<group>"; };
|
|
473
|
+
4F48911724656F98003B56F0 /* SDImageGIFCoderInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDImageGIFCoderInternal.h; sourceTree = "<group>"; };
|
|
474
|
+
4F48911824656F98003B56F0 /* UIColor+HexString.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+HexString.h"; sourceTree = "<group>"; };
|
|
475
|
+
4F48911924656F98003B56F0 /* SDmetamacros.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDmetamacros.h; sourceTree = "<group>"; };
|
|
476
|
+
4F48911A24656F98003B56F0 /* SDImageCachesManagerOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDImageCachesManagerOperation.h; sourceTree = "<group>"; };
|
|
477
|
+
4F48911B24656F98003B56F0 /* SDImageAssetManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDImageAssetManager.h; sourceTree = "<group>"; };
|
|
478
|
+
4F48911C24656F98003B56F0 /* PDRCoreDefs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PDRCoreDefs.h; sourceTree = "<group>"; };
|
|
479
|
+
4F48911D24656F98003B56F0 /* PDRCoreApp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PDRCoreApp.h; sourceTree = "<group>"; };
|
|
480
|
+
4F4DAE6A25DE60DB0094E580 /* libUniPush.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libUniPush.a; path = ../SDK/Libs/libUniPush.a; sourceTree = "<group>"; };
|
|
481
|
+
4F4DDB5825AC4F010008AE37 /* DCTZPhotoPickerController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DCTZPhotoPickerController.h; sourceTree = "<group>"; };
|
|
482
|
+
4F4DDB5925AC4F010008AE37 /* DCTZImageManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DCTZImageManager.h; sourceTree = "<group>"; };
|
|
483
|
+
4F4DDB5A25AC4F010008AE37 /* DCTZAssetCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DCTZAssetCell.h; sourceTree = "<group>"; };
|
|
484
|
+
4F4DDB5B25AC4F010008AE37 /* DCTZAssetModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DCTZAssetModel.h; sourceTree = "<group>"; };
|
|
485
|
+
4F4DDB5C25AC4F010008AE37 /* DCTZGifPhotoPreviewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DCTZGifPhotoPreviewController.h; sourceTree = "<group>"; };
|
|
486
|
+
4F4DDB5D25AC4F010008AE37 /* DCTZLocationManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DCTZLocationManager.h; sourceTree = "<group>"; };
|
|
487
|
+
4F4DDB5E25AC4F010008AE37 /* UIView+DCLayout.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "UIView+DCLayout.h"; sourceTree = "<group>"; };
|
|
488
|
+
4F4DDB5F25AC4F010008AE37 /* DCTZImageCropManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DCTZImageCropManager.h; sourceTree = "<group>"; };
|
|
489
|
+
4F4DDB6025AC4F010008AE37 /* DCTZImagePickerController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DCTZImagePickerController.h; sourceTree = "<group>"; };
|
|
490
|
+
4F4DDB6125AC4F010008AE37 /* NSBundle+DCTZImagePicker.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "NSBundle+DCTZImagePicker.h"; sourceTree = "<group>"; };
|
|
491
|
+
4F4DDB6225AC4F010008AE37 /* DCTZVideoPlayerController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DCTZVideoPlayerController.h; sourceTree = "<group>"; };
|
|
492
|
+
4F4DDB6325AC4F010008AE37 /* DCUIViewControllerHUD.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DCUIViewControllerHUD.h; sourceTree = "<group>"; };
|
|
493
|
+
4F4DDB6425AC4F010008AE37 /* DCTZPhotoPreviewCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DCTZPhotoPreviewCell.h; sourceTree = "<group>"; };
|
|
494
|
+
4F4DDB6525AC4F010008AE37 /* DCTZPhotoPreviewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DCTZPhotoPreviewController.h; sourceTree = "<group>"; };
|
|
495
|
+
4F4DDB6625AC4F010008AE37 /* DCTZProgressView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DCTZProgressView.h; sourceTree = "<group>"; };
|
|
496
|
+
4F4DDB6825AC4F010008AE37 /* DCSVIndefiniteAnimatedView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DCSVIndefiniteAnimatedView.h; sourceTree = "<group>"; };
|
|
497
|
+
4F4DDB6925AC4F010008AE37 /* DCSVProgressAnimatedView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DCSVProgressAnimatedView.h; sourceTree = "<group>"; };
|
|
498
|
+
4F4DDB6A25AC4F010008AE37 /* DCSVProgressHUD.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DCSVProgressHUD.h; sourceTree = "<group>"; };
|
|
499
|
+
4F4DDB6B25AC4F010008AE37 /* DCSVRadialGradientLayer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DCSVRadialGradientLayer.h; sourceTree = "<group>"; };
|
|
500
|
+
4F5762F4261461A000A5C0BA /* MetalKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MetalKit.framework; path = System/Library/Frameworks/MetalKit.framework; sourceTree = SDKROOT; };
|
|
501
|
+
4F5762F6261461AB00A5C0BA /* GLKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GLKit.framework; path = System/Library/Frameworks/GLKit.framework; sourceTree = SDKROOT; };
|
|
502
|
+
4F8C6936265E502C00C2A73C /* Masonry.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Masonry.framework; path = ../SDK/Libs/Masonry.framework; sourceTree = "<group>"; };
|
|
503
|
+
4FA53F7826E5D09500BAD6A0 /* uni-jsframework-vue3.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = "uni-jsframework-vue3.js"; sourceTree = "<group>"; };
|
|
504
|
+
4FE3666B254FE70E00DCD173 /* libuchardet.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libuchardet.a; path = ../SDK/Libs/libuchardet.a; sourceTree = "<group>"; };
|
|
505
|
+
67229AC9230171AE0093F29A /* libDCUniAmap.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libDCUniAmap.a; path = ../SDK/Libs/libDCUniAmap.a; sourceTree = "<group>"; };
|
|
506
|
+
67229ACA230171AE0093F29A /* libDCUniVideo.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libDCUniVideo.a; path = ../SDK/Libs/libDCUniVideo.a; sourceTree = "<group>"; };
|
|
507
|
+
67229ACB230171AE0093F29A /* libDCUniBarcode.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libDCUniBarcode.a; path = ../SDK/Libs/libDCUniBarcode.a; sourceTree = "<group>"; };
|
|
508
|
+
67229ACD230171AE0093F29A /* libDCUniBMap.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libDCUniBMap.a; path = ../SDK/Libs/libDCUniBMap.a; sourceTree = "<group>"; };
|
|
509
|
+
67229ACE230171AE0093F29A /* libDCUniGPUImage.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libDCUniGPUImage.a; path = ../SDK/Libs/libDCUniGPUImage.a; sourceTree = "<group>"; };
|
|
510
|
+
67229ACF230171AE0093F29A /* libDCUniLivePush.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libDCUniLivePush.a; path = ../SDK/Libs/libDCUniLivePush.a; sourceTree = "<group>"; };
|
|
511
|
+
67229AD0230171AE0093F29A /* libDCUniMap.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libDCUniMap.a; path = ../SDK/Libs/libDCUniMap.a; sourceTree = "<group>"; };
|
|
512
|
+
67254219242474E20086649B /* libH5WEUIWebview.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libH5WEUIWebview.a; path = ../SDK/Libs/libH5WEUIWebview.a; sourceTree = "<group>"; };
|
|
513
|
+
672CE2B222DC9118005A0D88 /* DCUniVideoPublic.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = DCUniVideoPublic.framework; path = ../SDK/Libs/DCUniVideoPublic.framework; sourceTree = "<group>"; };
|
|
514
|
+
672CE2B422DC916C005A0D88 /* libDCUniZXing.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libDCUniZXing.a; path = ../SDK/Libs/libDCUniZXing.a; sourceTree = "<group>"; };
|
|
515
|
+
6731F393232F4CE2007838BC /* libresolv.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libresolv.tbd; path = usr/lib/libresolv.tbd; sourceTree = SDKROOT; };
|
|
516
|
+
6731F395232F4D05007838BC /* UserNotifications.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UserNotifications.framework; path = System/Library/Frameworks/UserNotifications.framework; sourceTree = SDKROOT; };
|
|
517
|
+
6731F397232F4D8E007838BC /* Photos.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Photos.framework; path = System/Library/Frameworks/Photos.framework; sourceTree = SDKROOT; };
|
|
518
|
+
6731F399232F4F03007838BC /* HBuilder.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; name = HBuilder.entitlements; path = HBuilder/HBuilder.entitlements; sourceTree = "<group>"; };
|
|
519
|
+
673E6E7221E44ABF00C021FE /* liblibFingerprint.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = liblibFingerprint.a; path = ../SDK/Libs/liblibFingerprint.a; sourceTree = "<group>"; };
|
|
520
|
+
67566B1E2251DC3A00BDF218 /* liblibSqlite.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = liblibSqlite.a; path = ../SDK/Libs/liblibSqlite.a; sourceTree = "<group>"; };
|
|
521
|
+
6756AB6721F58ACC00765F52 /* liblibBeacon.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = liblibBeacon.a; path = ../SDK/Libs/liblibBeacon.a; sourceTree = "<group>"; };
|
|
522
|
+
6756AB6921F58CA300765F52 /* liblibBlueTooth.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = liblibBlueTooth.a; path = ../SDK/Libs/liblibBlueTooth.a; sourceTree = "<group>"; };
|
|
523
|
+
67AB0B3C21EEEA6B0029B229 /* libAMapImp.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libAMapImp.a; path = ../SDK/Libs/libAMapImp.a; sourceTree = "<group>"; };
|
|
524
|
+
67AB0B3E21EEEAA60029B229 /* AMapSearchKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AMapSearchKit.framework; path = ../SDK/Libs/AMapSearchKit.framework; sourceTree = "<group>"; };
|
|
525
|
+
67AB0B4021EEEACA0029B229 /* MAMapKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MAMapKit.framework; path = ../SDK/Libs/MAMapKit.framework; sourceTree = "<group>"; };
|
|
526
|
+
67AB0B4221EEEAE50029B229 /* AMapFoundationKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AMapFoundationKit.framework; path = ../SDK/Libs/AMapFoundationKit.framework; sourceTree = "<group>"; };
|
|
527
|
+
67AB0B9621EF10E60029B229 /* liblibGeolocation.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = liblibGeolocation.a; path = ../SDK/Libs/liblibGeolocation.a; sourceTree = "<group>"; };
|
|
528
|
+
67AB0B9821EF10FE0029B229 /* libBaiduKeyVerify.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libBaiduKeyVerify.a; path = ../SDK/Libs/libBaiduKeyVerify.a; sourceTree = "<group>"; };
|
|
529
|
+
67AB0B9A21EF111C0029B229 /* BaiduMapAPI_Cloud.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = BaiduMapAPI_Cloud.framework; path = ../SDK/Libs/BaiduMapAPI_Cloud.framework; sourceTree = "<group>"; };
|
|
530
|
+
67AB0B9B21EF111D0029B229 /* BaiduMapAPI_Search.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = BaiduMapAPI_Search.framework; path = ../SDK/Libs/BaiduMapAPI_Search.framework; sourceTree = "<group>"; };
|
|
531
|
+
67AB0B9C21EF111D0029B229 /* BaiduMapAPI_Utils.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = BaiduMapAPI_Utils.framework; path = ../SDK/Libs/BaiduMapAPI_Utils.framework; sourceTree = "<group>"; };
|
|
532
|
+
67AB0B9D21EF111D0029B229 /* BaiduMapAPI_Map.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = BaiduMapAPI_Map.framework; path = ../SDK/Libs/BaiduMapAPI_Map.framework; sourceTree = "<group>"; };
|
|
533
|
+
67AB0B9E21EF111D0029B229 /* BaiduMapAPI_Base.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = BaiduMapAPI_Base.framework; path = ../SDK/Libs/BaiduMapAPI_Base.framework; sourceTree = "<group>"; };
|
|
534
|
+
67AB0B9F21EF111D0029B229 /* BaiduMapAPI_Location.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = BaiduMapAPI_Location.framework; path = ../SDK/Libs/BaiduMapAPI_Location.framework; sourceTree = "<group>"; };
|
|
535
|
+
67B7CAA121DCE8180083E96A /* control.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = control.xml; sourceTree = "<group>"; };
|
|
536
|
+
67D6390721C12944005D1E8F /* libBaiduSpeechSDK.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libBaiduSpeechSDK.a; path = ../SDK/Libs/libBaiduSpeechSDK.a; sourceTree = "<group>"; };
|
|
537
|
+
67D6390821C12944005D1E8F /* libbaiduSpeech.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libbaiduSpeech.a; path = ../SDK/Libs/libbaiduSpeech.a; sourceTree = "<group>"; };
|
|
538
|
+
67E9CDCE22968D2E0076E0FB /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = "<group>"; };
|
|
539
|
+
67E9CDD022968D350076E0FB /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
|
|
540
|
+
7A1967C0212536C300B330A9 /* GTSDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GTSDK.framework; path = ../SDK/Libs/GTSDK.framework; sourceTree = "<group>"; };
|
|
541
|
+
7A1967C2212536EC00B330A9 /* libmp3lame.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libmp3lame.a; path = ../SDK/Libs/libmp3lame.a; sourceTree = "<group>"; };
|
|
542
|
+
7A1967C42125371000B330A9 /* storage.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = storage.framework; path = ../SDK/Libs/storage.framework; sourceTree = "<group>"; };
|
|
543
|
+
7A1967C621253B5F00B330A9 /* libWeChatSDK_pay.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libWeChatSDK_pay.a; path = ../SDK/Libs/libWeChatSDK_pay.a; sourceTree = "<group>"; };
|
|
544
|
+
7A49810A2126B01200D20880 /* libiconv.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libiconv.tbd; path = usr/lib/libiconv.tbd; sourceTree = SDKROOT; };
|
|
545
|
+
7A49810C2126B01900D20880 /* Accelerate.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Accelerate.framework; path = System/Library/Frameworks/Accelerate.framework; sourceTree = SDKROOT; };
|
|
546
|
+
7ACF69AA19FF899A007C64F1 /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = System/Library/Frameworks/CFNetwork.framework; sourceTree = SDKROOT; };
|
|
547
|
+
7ACF69AC19FF89B1007C64F1 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
|
|
548
|
+
8E163D011A8D208500308A8B /* AssetsLibrary.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AssetsLibrary.framework; path = System/Library/Frameworks/AssetsLibrary.framework; sourceTree = SDKROOT; };
|
|
549
|
+
8E6E37AB1B0E1B580036EB48 /* ImageIO.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ImageIO.framework; path = System/Library/Frameworks/ImageIO.framework; sourceTree = SDKROOT; };
|
|
550
|
+
8EED6298198A1D13000A4449 /* HBuilder.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = HBuilder.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
551
|
+
8EED629B198A1D13000A4449 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
|
|
552
|
+
8EED629D198A1D13000A4449 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
|
|
553
|
+
8EED629F198A1D13000A4449 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
|
|
554
|
+
8EED62A3198A1D13000A4449 /* HBuilder-Hello-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "HBuilder-Hello-Info.plist"; sourceTree = "<group>"; };
|
|
555
|
+
8EED62A5198A1D13000A4449 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
|
|
556
|
+
8EED62A7198A1D13000A4449 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
|
|
557
|
+
8EED62A9198A1D13000A4449 /* HBuilder-Hello-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "HBuilder-Hello-Prefix.pch"; sourceTree = "<group>"; };
|
|
558
|
+
8EED62AA198A1D13000A4449 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
|
|
559
|
+
8EED62AB198A1D13000A4449 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
|
|
560
|
+
8EED62B3198A1D14000A4449 /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = "<group>"; };
|
|
561
|
+
8EED62B4198A1D14000A4449 /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = "<group>"; };
|
|
562
|
+
8EED6411198A2622000A4449 /* MobileCoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = System/Library/Frameworks/MobileCoreServices.framework; sourceTree = SDKROOT; };
|
|
563
|
+
8EED6413198A262C000A4449 /* CoreMedia.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMedia.framework; path = System/Library/Frameworks/CoreMedia.framework; sourceTree = SDKROOT; };
|
|
564
|
+
8EED6415198A2635000A4449 /* CoreVideo.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreVideo.framework; path = System/Library/Frameworks/CoreVideo.framework; sourceTree = SDKROOT; };
|
|
565
|
+
8EED641B198A2654000A4449 /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
|
|
566
|
+
8EED641D198A265F000A4449 /* CoreTelephony.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreTelephony.framework; path = System/Library/Frameworks/CoreTelephony.framework; sourceTree = SDKROOT; };
|
|
567
|
+
8EED641F198A2668000A4449 /* MediaPlayer.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MediaPlayer.framework; path = System/Library/Frameworks/MediaPlayer.framework; sourceTree = SDKROOT; };
|
|
568
|
+
8EED6421198A2678000A4449 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
|
|
569
|
+
8EED658F198A3DF7000A4449 /* Pandora */ = {isa = PBXFileReference; lastKnownFileType = folder; path = Pandora; sourceTree = "<group>"; };
|
|
570
|
+
8EED6591198A5737000A4449 /* AddressBook.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AddressBook.framework; path = System/Library/Frameworks/AddressBook.framework; sourceTree = SDKROOT; };
|
|
571
|
+
8EED6593198A5743000A4449 /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; };
|
|
572
|
+
8EED6595198A574C000A4449 /* CoreLocation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreLocation.framework; path = System/Library/Frameworks/CoreLocation.framework; sourceTree = SDKROOT; };
|
|
573
|
+
8EED6597198A5754000A4449 /* MessageUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MessageUI.framework; path = System/Library/Frameworks/MessageUI.framework; sourceTree = SDKROOT; };
|
|
574
|
+
8EED659B198A5773000A4449 /* AddressBookUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AddressBookUI.framework; path = System/Library/Frameworks/AddressBookUI.framework; sourceTree = SDKROOT; };
|
|
575
|
+
8EED659D198A5782000A4449 /* Social.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Social.framework; path = System/Library/Frameworks/Social.framework; sourceTree = SDKROOT; };
|
|
576
|
+
8EED659F198A5789000A4449 /* Accounts.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Accounts.framework; path = System/Library/Frameworks/Accounts.framework; sourceTree = SDKROOT; };
|
|
577
|
+
8EED65A5198A626B000A4449 /* MapKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MapKit.framework; path = System/Library/Frameworks/MapKit.framework; sourceTree = SDKROOT; };
|
|
578
|
+
8EED65A7198A6273000A4449 /* OpenGLES.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = System/Library/Frameworks/OpenGLES.framework; sourceTree = SDKROOT; };
|
|
579
|
+
9564C422278FE64500C804D3 /* liblibWebNavi.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = liblibWebNavi.a; path = ../SDK/Libs/liblibWebNavi.a; sourceTree = "<group>"; };
|
|
580
|
+
95BC64E92754A50000CB55B9 /* UMDevice.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UMDevice.framework; path = ../SDK/Libs/UMDevice.framework; sourceTree = "<group>"; };
|
|
581
|
+
95BC64EA2754A50000CB55B9 /* UMCommon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UMCommon.framework; path = ../SDK/Libs/UMCommon.framework; sourceTree = "<group>"; };
|
|
582
|
+
95BC64EB2754A50000CB55B9 /* UMAPM.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UMAPM.framework; path = ../SDK/Libs/UMAPM.framework; sourceTree = "<group>"; };
|
|
583
|
+
/* End PBXFileReference section */
|
|
584
|
+
|
|
585
|
+
/* Begin PBXFrameworksBuildPhase section */
|
|
586
|
+
8EED6295198A1D13000A4449 /* Frameworks */ = {
|
|
587
|
+
isa = PBXFrameworksBuildPhase;
|
|
588
|
+
buildActionMask = 2147483647;
|
|
589
|
+
files = (
|
|
590
|
+
408652282806C445007B18A5 /* libz.1.2.5.tbd in Frameworks */,
|
|
591
|
+
40F2490027BB7F3D0042E27E /* XYSDK.a in Frameworks */,
|
|
592
|
+
95BC64EC2754A50000CB55B9 /* UMDevice.framework in Frameworks */,
|
|
593
|
+
4F8C6937265E502C00C2A73C /* Masonry.framework in Frameworks */,
|
|
594
|
+
9564C423278FE64500C804D3 /* liblibWebNavi.a in Frameworks */,
|
|
595
|
+
4F5762F7261461AB00A5C0BA /* GLKit.framework in Frameworks */,
|
|
596
|
+
4F5762F5261461A000A5C0BA /* MetalKit.framework in Frameworks */,
|
|
597
|
+
4F4DAE6B25DE60DB0094E580 /* libUniPush.a in Frameworks */,
|
|
598
|
+
4FE3666C254FE70E00DCD173 /* libuchardet.a in Frameworks */,
|
|
599
|
+
67A9340023A8B922004A4DF4 /* libSDWebImage.a in Frameworks */,
|
|
600
|
+
6731F398232F4D8E007838BC /* Photos.framework in Frameworks */,
|
|
601
|
+
6731F396232F4D05007838BC /* UserNotifications.framework in Frameworks */,
|
|
602
|
+
6731F394232F4CE2007838BC /* libresolv.tbd in Frameworks */,
|
|
603
|
+
672DEB2C23056152003F27CC /* libDCUniBarcode.a in Frameworks */,
|
|
604
|
+
67229AD1230171AE0093F29A /* libDCUniAmap.a in Frameworks */,
|
|
605
|
+
67229AD2230171AE0093F29A /* libDCUniVideo.a in Frameworks */,
|
|
606
|
+
67229AD6230171AE0093F29A /* libDCUniGPUImage.a in Frameworks */,
|
|
607
|
+
67229AD8230171AE0093F29A /* libDCUniMap.a in Frameworks */,
|
|
608
|
+
672CE2B322DC9118005A0D88 /* DCUniVideoPublic.framework in Frameworks */,
|
|
609
|
+
672CE2B522DC916C005A0D88 /* libDCUniZXing.a in Frameworks */,
|
|
610
|
+
24AFD8531CB50C4000C0F062 /* liblibLog.a in Frameworks */,
|
|
611
|
+
2FDE156A215F468000588710 /* liblibWeex.a in Frameworks */,
|
|
612
|
+
67AB0B4321EEEAE50029B229 /* AMapFoundationKit.framework in Frameworks */,
|
|
613
|
+
2F0BA418215B8B5C00F67004 /* libbz2.1.0.tbd in Frameworks */,
|
|
614
|
+
2FD11BBB215C79C5000A23AD /* liblibAdSupport.a in Frameworks */,
|
|
615
|
+
2F0BA416215B8B1400F67004 /* VideoToolbox.framework in Frameworks */,
|
|
616
|
+
24BD5AF61C994BB200B05AA2 /* libc++.tbd in Frameworks */,
|
|
617
|
+
2F0BA410215B784100F67004 /* Contacts.framework in Frameworks */,
|
|
618
|
+
8EED6594198A5743000A4449 /* AVFoundation.framework in Frameworks */,
|
|
619
|
+
67AB0B3F21EEEAA60029B229 /* AMapSearchKit.framework in Frameworks */,
|
|
620
|
+
67AB0B9721EF10E70029B229 /* liblibGeolocation.a in Frameworks */,
|
|
621
|
+
7A49810D2126B01900D20880 /* Accelerate.framework in Frameworks */,
|
|
622
|
+
67AB0B9921EF10FE0029B229 /* libBaiduKeyVerify.a in Frameworks */,
|
|
623
|
+
7A49810B2126B01200D20880 /* libiconv.tbd in Frameworks */,
|
|
624
|
+
24F990131DFBDA3300848C2B /* CoreData.framework in Frameworks */,
|
|
625
|
+
67AB0BA021EF111D0029B229 /* BaiduMapAPI_Cloud.framework in Frameworks */,
|
|
626
|
+
8EED629E198A1D13000A4449 /* CoreGraphics.framework in Frameworks */,
|
|
627
|
+
8EED629C198A1D13000A4449 /* Foundation.framework in Frameworks */,
|
|
628
|
+
8EED62A0198A1D13000A4449 /* UIKit.framework in Frameworks */,
|
|
629
|
+
24A7515F1D9CCCC600C8B0F9 /* QuickLook.framework in Frameworks */,
|
|
630
|
+
242725CD1D26686700EBD79E /* CoreMotion.framework in Frameworks */,
|
|
631
|
+
7ACF69AB19FF899A007C64F1 /* CFNetwork.framework in Frameworks */,
|
|
632
|
+
7ACF69AD19FF89B1007C64F1 /* Security.framework in Frameworks */,
|
|
633
|
+
7A1967C1212536C300B330A9 /* GTSDK.framework in Frameworks */,
|
|
634
|
+
67AB0BA221EF111D0029B229 /* BaiduMapAPI_Utils.framework in Frameworks */,
|
|
635
|
+
8EED641C198A2654000A4449 /* SystemConfiguration.framework in Frameworks */,
|
|
636
|
+
242725CB1D2666ED00EBD79E /* JavaScriptCore.framework in Frameworks */,
|
|
637
|
+
67AB0BA121EF111D0029B229 /* BaiduMapAPI_Search.framework in Frameworks */,
|
|
638
|
+
2447371B1D0830BB00D0F08F /* WebKit.framework in Frameworks */,
|
|
639
|
+
24AFD8401CB50C4000C0F062 /* libalixpayment.a in Frameworks */,
|
|
640
|
+
24AFD8431CB50C4000C0F062 /* libBaiduMobStatForSDK.a in Frameworks */,
|
|
641
|
+
7A1967C3212536EC00B330A9 /* libmp3lame.a in Frameworks */,
|
|
642
|
+
24AFD8461CB50C4000C0F062 /* libcoreSupport.a in Frameworks */,
|
|
643
|
+
24AFD8491CB50C4000C0F062 /* libIAPPay.a in Frameworks */,
|
|
644
|
+
67AB0BA421EF111D0029B229 /* BaiduMapAPI_Base.framework in Frameworks */,
|
|
645
|
+
24AFD84C1CB50C4000C0F062 /* liblibAccelerometer.a in Frameworks */,
|
|
646
|
+
67AB0B4121EEEACA0029B229 /* MAMapKit.framework in Frameworks */,
|
|
647
|
+
24AFD84D1CB50C4000C0F062 /* liblibBarcode.a in Frameworks */,
|
|
648
|
+
67566B1F2251DC3A00BDF218 /* liblibSqlite.a in Frameworks */,
|
|
649
|
+
24AFD84E1CB50C4000C0F062 /* liblibCache.a in Frameworks */,
|
|
650
|
+
24AFD84F1CB50C4000C0F062 /* liblibCamera.a in Frameworks */,
|
|
651
|
+
24AFD8501CB50C4000C0F062 /* liblibContacts.a in Frameworks */,
|
|
652
|
+
6756AB6821F58ACD00765F52 /* liblibBeacon.a in Frameworks */,
|
|
653
|
+
24AFD8521CB50C4000C0F062 /* liblibIO.a in Frameworks */,
|
|
654
|
+
24AFD8541CB50C4000C0F062 /* liblibMap.a in Frameworks */,
|
|
655
|
+
24AFD8551CB50C4000C0F062 /* liblibMedia.a in Frameworks */,
|
|
656
|
+
95BC64ED2754A50000CB55B9 /* UMCommon.framework in Frameworks */,
|
|
657
|
+
24AFD8561CB50C4000C0F062 /* liblibMessage.a in Frameworks */,
|
|
658
|
+
24AFD8571CB50C4000C0F062 /* liblibNativeObj.a in Frameworks */,
|
|
659
|
+
6756AB6A21F58CA300765F52 /* liblibBlueTooth.a in Frameworks */,
|
|
660
|
+
24AFD8581CB50C4000C0F062 /* liblibNativeUI.a in Frameworks */,
|
|
661
|
+
24AFD8591CB50C4000C0F062 /* liblibNavigator.a in Frameworks */,
|
|
662
|
+
24AFD85A1CB50C4000C0F062 /* liblibOauth.a in Frameworks */,
|
|
663
|
+
2430A7011E11603E00D3D42D /* libcrypto.a in Frameworks */,
|
|
664
|
+
24AFD85B1CB50C4000C0F062 /* liblibOrientation.a in Frameworks */,
|
|
665
|
+
7A1967C721253B5F00B330A9 /* libWeChatSDK_pay.a in Frameworks */,
|
|
666
|
+
24AFD85C1CB50C4000C0F062 /* liblibPayment.a in Frameworks */,
|
|
667
|
+
24AFD85E1CB50C4000C0F062 /* liblibPGInvocation.a in Frameworks */,
|
|
668
|
+
24AFD85F1CB50C4000C0F062 /* liblibPGProximity.a in Frameworks */,
|
|
669
|
+
24AFD8601CB50C4000C0F062 /* liblibPush.a in Frameworks */,
|
|
670
|
+
24AFD8611CB50C4000C0F062 /* liblibShare.a in Frameworks */,
|
|
671
|
+
67D6390921C12945005D1E8F /* libBaiduSpeechSDK.a in Frameworks */,
|
|
672
|
+
24AFD8621CB50C4000C0F062 /* liblibSpeech.a in Frameworks */,
|
|
673
|
+
24AFD8631CB50C4000C0F062 /* liblibStatistic.a in Frameworks */,
|
|
674
|
+
24AFD8641CB50C4000C0F062 /* liblibStorage.a in Frameworks */,
|
|
675
|
+
24AFD8651CB50C4000C0F062 /* liblibUI.a in Frameworks */,
|
|
676
|
+
24AFD8681CB50C4000C0F062 /* liblibXHR.a in Frameworks */,
|
|
677
|
+
24AFD8691CB50C4000C0F062 /* liblibZip.a in Frameworks */,
|
|
678
|
+
24AFD86B1CB50C4000C0F062 /* libopencore-amrnb.a in Frameworks */,
|
|
679
|
+
67AB0BA521EF111D0029B229 /* BaiduMapAPI_Location.framework in Frameworks */,
|
|
680
|
+
67AB0BA321EF111D0029B229 /* BaiduMapAPI_Map.framework in Frameworks */,
|
|
681
|
+
673E6E7321E44ABF00C021FE /* liblibFingerprint.a in Frameworks */,
|
|
682
|
+
24AFD86F1CB50C4000C0F062 /* libQQOauth.a in Frameworks */,
|
|
683
|
+
24AFD8701CB50C4000C0F062 /* libQQShare.a in Frameworks */,
|
|
684
|
+
24AFD8721CB50C4000C0F062 /* libSinaShare.a in Frameworks */,
|
|
685
|
+
7A1967C52125371000B330A9 /* storage.framework in Frameworks */,
|
|
686
|
+
24AFD8731CB50C4000C0F062 /* libSinaWBOauth.a in Frameworks */,
|
|
687
|
+
24AFD8761CB50C4000C0F062 /* libTouchJSON.a in Frameworks */,
|
|
688
|
+
24AFD8791CB50C4000C0F062 /* libWeiboSDK.a in Frameworks */,
|
|
689
|
+
24AFD87A1CB50C4000C0F062 /* libweixinShare.a in Frameworks */,
|
|
690
|
+
24AFD87B1CB50C4000C0F062 /* libWXOauth.a in Frameworks */,
|
|
691
|
+
24AFD87C1CB50C4000C0F062 /* libwxpay.a in Frameworks */,
|
|
692
|
+
24AFD7FF1CB50C3200C0F062 /* AlipaySDK.framework in Frameworks */,
|
|
693
|
+
247F85DB1FA32B2C006ECAC6 /* liblibPDRCore.a in Frameworks */,
|
|
694
|
+
24AFD8021CB50C3200C0F062 /* TencentOpenAPI.framework in Frameworks */,
|
|
695
|
+
24BD5AF21C994A1700B05AA2 /* libicucore.tbd in Frameworks */,
|
|
696
|
+
24BD5AF01C99494A00B05AA2 /* libz.tbd in Frameworks */,
|
|
697
|
+
24BD5AEE1C99494200B05AA2 /* libxml2.tbd in Frameworks */,
|
|
698
|
+
67D6390A21C12945005D1E8F /* libbaiduSpeech.a in Frameworks */,
|
|
699
|
+
2F0BA412215B814100F67004 /* liblibVideo.a in Frameworks */,
|
|
700
|
+
24BD5AEA1C99492A00B05AA2 /* libiconv.2.tbd in Frameworks */,
|
|
701
|
+
24BD5AE81C99491D00B05AA2 /* libsqlite3.0.tbd in Frameworks */,
|
|
702
|
+
2430A7021E11603E00D3D42D /* libssl.a in Frameworks */,
|
|
703
|
+
240905031C200AEF0070786F /* CoreBluetooth.framework in Frameworks */,
|
|
704
|
+
8E6E37AC1B0E1B580036EB48 /* ImageIO.framework in Frameworks */,
|
|
705
|
+
8E163D021A8D208500308A8B /* AssetsLibrary.framework in Frameworks */,
|
|
706
|
+
8EED6596198A574C000A4449 /* CoreLocation.framework in Frameworks */,
|
|
707
|
+
8EED65A8198A6273000A4449 /* OpenGLES.framework in Frameworks */,
|
|
708
|
+
8EED65A6198A626B000A4449 /* MapKit.framework in Frameworks */,
|
|
709
|
+
8EED65A0198A5789000A4449 /* Accounts.framework in Frameworks */,
|
|
710
|
+
8EED659E198A5782000A4449 /* Social.framework in Frameworks */,
|
|
711
|
+
8EED659C198A5773000A4449 /* AddressBookUI.framework in Frameworks */,
|
|
712
|
+
8EED6598198A5754000A4449 /* MessageUI.framework in Frameworks */,
|
|
713
|
+
67AB0B3D21EEEA6B0029B229 /* libAMapImp.a in Frameworks */,
|
|
714
|
+
8EED6592198A5737000A4449 /* AddressBook.framework in Frameworks */,
|
|
715
|
+
95BC64EE2754A50000CB55B9 /* UMAPM.framework in Frameworks */,
|
|
716
|
+
8EED6422198A2678000A4449 /* AudioToolbox.framework in Frameworks */,
|
|
717
|
+
8EED6420198A2668000A4449 /* MediaPlayer.framework in Frameworks */,
|
|
718
|
+
8EED641E198A265F000A4449 /* CoreTelephony.framework in Frameworks */,
|
|
719
|
+
8EED6416198A2635000A4449 /* CoreVideo.framework in Frameworks */,
|
|
720
|
+
8EED6414198A262C000A4449 /* CoreMedia.framework in Frameworks */,
|
|
721
|
+
8EED6412198A2622000A4449 /* MobileCoreServices.framework in Frameworks */,
|
|
722
|
+
);
|
|
723
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
724
|
+
};
|
|
725
|
+
/* End PBXFrameworksBuildPhase section */
|
|
726
|
+
|
|
727
|
+
/* Begin PBXGroup section */
|
|
728
|
+
40F248F227BB7F3D0042E27E /* XYSDK */ = {
|
|
729
|
+
isa = PBXGroup;
|
|
730
|
+
children = (
|
|
731
|
+
40F248F327BB7F3D0042E27E /* include */,
|
|
732
|
+
40F248FF27BB7F3D0042E27E /* XYSDK.a */,
|
|
733
|
+
);
|
|
734
|
+
name = XYSDK;
|
|
735
|
+
path = ../../XYSDK;
|
|
736
|
+
sourceTree = "<group>";
|
|
737
|
+
};
|
|
738
|
+
40F248F327BB7F3D0042E27E /* include */ = {
|
|
739
|
+
isa = PBXGroup;
|
|
740
|
+
children = (
|
|
741
|
+
40F248F427BB7F3D0042E27E /* XYSDK */,
|
|
742
|
+
);
|
|
743
|
+
path = include;
|
|
744
|
+
sourceTree = "<group>";
|
|
745
|
+
};
|
|
746
|
+
40F248F427BB7F3D0042E27E /* XYSDK */ = {
|
|
747
|
+
isa = PBXGroup;
|
|
748
|
+
children = (
|
|
749
|
+
40F248F527BB7F3D0042E27E /* XYBLEManager.h */,
|
|
750
|
+
40F248F627BB7F3D0042E27E /* PosCommand.h */,
|
|
751
|
+
40F248F727BB7F3D0042E27E /* ImageTranster.h */,
|
|
752
|
+
40F248F827BB7F3D0042E27E /* AsyncSocket.h */,
|
|
753
|
+
40F248F927BB7F3D0042E27E /* BLEManager.h */,
|
|
754
|
+
40F248FA27BB7F3D0042E27E /* libXYPrinter.h */,
|
|
755
|
+
40F248FB27BB7F3D0042E27E /* TscCommand.h */,
|
|
756
|
+
40F248FC27BB7F3D0042E27E /* XYSDK.h */,
|
|
757
|
+
40F248FD27BB7F3D0042E27E /* AsyncUdpSocket.h */,
|
|
758
|
+
40F248FE27BB7F3D0042E27E /* XYWIFIManager.h */,
|
|
759
|
+
);
|
|
760
|
+
path = XYSDK;
|
|
761
|
+
sourceTree = "<group>";
|
|
762
|
+
};
|
|
763
|
+
4F48901F24656F72003B56F0 /* Bundles */ = {
|
|
764
|
+
isa = PBXGroup;
|
|
765
|
+
children = (
|
|
766
|
+
4FA53F7826E5D09500BAD6A0 /* uni-jsframework-vue3.js */,
|
|
767
|
+
4F48903524656F73003B56F0 /* uni-jsframework-dev.js */,
|
|
768
|
+
4F48902424656F73003B56F0 /* uni-jsframework.js */,
|
|
769
|
+
4F48903C24656F73003B56F0 /* weex-polyfill.js */,
|
|
770
|
+
4F48903D24656F73003B56F0 /* weexUniJs.js */,
|
|
771
|
+
4F48902124656F73003B56F0 /* __uniappes6.js */,
|
|
772
|
+
4F48903624656F73003B56F0 /* userPosition@2x.png */,
|
|
773
|
+
4F48903224656F73003B56F0 /* unincomponents.ttf */,
|
|
774
|
+
4F48902024656F73003B56F0 /* mapapi.bundle */,
|
|
775
|
+
4F48902224656F73003B56F0 /* MiPassport.bundle */,
|
|
776
|
+
4F48902324656F73003B56F0 /* AlipaySDK.bundle */,
|
|
777
|
+
4F48902524656F73003B56F0 /* WeiboSDK.bundle */,
|
|
778
|
+
4F48902724656F73003B56F0 /* BDSClientEASRResources */,
|
|
779
|
+
4F48903024656F73003B56F0 /* DCTZImagePickerController.bundle */,
|
|
780
|
+
4F48903124656F73003B56F0 /* PandoraApi.bundle */,
|
|
781
|
+
4F48903324656F73003B56F0 /* QHADVideoPlayer.bundle */,
|
|
782
|
+
4F48903424656F73003B56F0 /* AMap.bundle */,
|
|
783
|
+
4F48903724656F73003B56F0 /* qucsdkResources.bundle */,
|
|
784
|
+
4F48903824656F73003B56F0 /* BUAdSDK.bundle */,
|
|
785
|
+
4F48903924656F73003B56F0 /* DCPGVideo.bundle */,
|
|
786
|
+
4F48903A24656F73003B56F0 /* DCMediaVideo.bundle */,
|
|
787
|
+
4F48903B24656F73003B56F0 /* DCSVProgressHUD.bundle */,
|
|
788
|
+
);
|
|
789
|
+
name = Bundles;
|
|
790
|
+
path = ../../SDK/Bundles;
|
|
791
|
+
sourceTree = "<group>";
|
|
792
|
+
};
|
|
793
|
+
4F48902724656F73003B56F0 /* BDSClientEASRResources */ = {
|
|
794
|
+
isa = PBXGroup;
|
|
795
|
+
children = (
|
|
796
|
+
4F48902824656F73003B56F0 /* bds_license.dat */,
|
|
797
|
+
4F48902924656F73003B56F0 /* bds_easr_basic_model.dat */,
|
|
798
|
+
4F48902A24656F73003B56F0 /* bds_easr_mfe_cmvn.dat */,
|
|
799
|
+
4F48902B24656F73003B56F0 /* temp_license_2018-02-24.dat */,
|
|
800
|
+
4F48902C24656F73003B56F0 /* bds_easr_mfe_dnn.dat */,
|
|
801
|
+
4F48902D24656F73003B56F0 /* bds_easr_gramm.dat */,
|
|
802
|
+
4F48902E24656F73003B56F0 /* bds_easr_wakeup_words.dat */,
|
|
803
|
+
4F48902F24656F73003B56F0 /* bds_easr_dnn_wakeup_model.dat */,
|
|
804
|
+
);
|
|
805
|
+
path = BDSClientEASRResources;
|
|
806
|
+
sourceTree = "<group>";
|
|
807
|
+
};
|
|
808
|
+
4F48905B24656F98003B56F0 /* inc */ = {
|
|
809
|
+
isa = PBXGroup;
|
|
810
|
+
children = (
|
|
811
|
+
4F48905C24656F98003B56F0 /* PDRCoreAppWindow.h */,
|
|
812
|
+
4F48905D24656F98003B56F0 /* PDRNView.h */,
|
|
813
|
+
4F48905E24656F98003B56F0 /* PDRCommonString.h */,
|
|
814
|
+
4F48905F24656F98003B56F0 /* PDRCoreWindowManager.h */,
|
|
815
|
+
4F48906024656F98003B56F0 /* PGPlugin.h */,
|
|
816
|
+
4F48906124656F98003B56F0 /* H5WEEngineExport.h */,
|
|
817
|
+
4F48906224656F98003B56F0 /* PDRCoreAppInfo.h */,
|
|
818
|
+
4F48906324656F98003B56F0 /* PDRToolSystem.h */,
|
|
819
|
+
4F4DDB6725AC4F010008AE37 /* DCSVProgressHUD */,
|
|
820
|
+
4F4DDB5725AC4F010008AE37 /* DCTZImagePickerController */,
|
|
821
|
+
4F48907424656F98003B56F0 /* PDRCoreAppFrame.h */,
|
|
822
|
+
4F48907524656F98003B56F0 /* Masonry */,
|
|
823
|
+
4F48908A24656F98003B56F0 /* PGMethod.h */,
|
|
824
|
+
4F48908B24656F98003B56F0 /* PDRCore.h */,
|
|
825
|
+
4F48908C24656F98003B56F0 /* PGObject.h */,
|
|
826
|
+
4F48908D24656F98003B56F0 /* PDRToolSystemEx.h */,
|
|
827
|
+
4F48908E24656F98003B56F0 /* PDRCoreAppManager.h */,
|
|
828
|
+
4F48908F24656F98003B56F0 /* PDRCoreSettings.h */,
|
|
829
|
+
4F48909024656F98003B56F0 /* H5CoreScreenEdgePan.h */,
|
|
830
|
+
4F48909124656F98003B56F0 /* H5UniversalApp.h */,
|
|
831
|
+
4F48909224656F98003B56F0 /* DCADManager.h */,
|
|
832
|
+
4F48909324656F98003B56F0 /* H5CoreOverrideResourceOptions.h */,
|
|
833
|
+
4F48909424656F98003B56F0 /* weexHeader */,
|
|
834
|
+
4F4890DA24656F98003B56F0 /* SDWebImage */,
|
|
835
|
+
4F48911C24656F98003B56F0 /* PDRCoreDefs.h */,
|
|
836
|
+
4F48911D24656F98003B56F0 /* PDRCoreApp.h */,
|
|
837
|
+
);
|
|
838
|
+
name = inc;
|
|
839
|
+
path = ../../SDK/inc;
|
|
840
|
+
sourceTree = "<group>";
|
|
841
|
+
};
|
|
842
|
+
4F48907524656F98003B56F0 /* Masonry */ = {
|
|
843
|
+
isa = PBXGroup;
|
|
844
|
+
children = (
|
|
845
|
+
4F48907624656F98003B56F0 /* MASCompositeConstraint.h */,
|
|
846
|
+
4F48907724656F98003B56F0 /* MASConstraint+Private.h */,
|
|
847
|
+
4F48907824656F98003B56F0 /* MASLayoutConstraint.h */,
|
|
848
|
+
4F48907924656F98003B56F0 /* NSArray+MASShorthandAdditions.h */,
|
|
849
|
+
4F48907A24656F98003B56F0 /* MASConstraintMaker.h */,
|
|
850
|
+
4F48907B24656F98003B56F0 /* View+MASAdditions.h */,
|
|
851
|
+
4F48907C24656F98003B56F0 /* NSArray+MASAdditions.h */,
|
|
852
|
+
4F48907D24656F98003B56F0 /* MASUtilities.h */,
|
|
853
|
+
4F48907E24656F98003B56F0 /* MASViewAttribute.h */,
|
|
854
|
+
4F48907F24656F98003B56F0 /* MASViewConstraint.h */,
|
|
855
|
+
4F48908024656F98003B56F0 /* MASConstraint.h */,
|
|
856
|
+
4F48908124656F98003B56F0 /* NSLayoutConstraint+MASDebugAdditions.h */,
|
|
857
|
+
4F48908224656F98003B56F0 /* View+MASShorthandAdditions.h */,
|
|
858
|
+
4F48908324656F98003B56F0 /* Masonry.h */,
|
|
859
|
+
4F48908424656F98003B56F0 /* ViewController+MASAdditions.h */,
|
|
860
|
+
);
|
|
861
|
+
path = Masonry;
|
|
862
|
+
sourceTree = "<group>";
|
|
863
|
+
};
|
|
864
|
+
4F48909424656F98003B56F0 /* weexHeader */ = {
|
|
865
|
+
isa = PBXGroup;
|
|
866
|
+
children = (
|
|
867
|
+
4F48909524656F98003B56F0 /* WXModuleProtocol.h */,
|
|
868
|
+
4F48909624656F98003B56F0 /* WXResourceLoader.h */,
|
|
869
|
+
4F48909724656F98003B56F0 /* WXApmForInstance.h */,
|
|
870
|
+
4F48909824656F98003B56F0 /* WXWebSocketHandler.h */,
|
|
871
|
+
4F48909924656F98003B56F0 /* WXImgLoaderProtocol.h */,
|
|
872
|
+
4F48909A24656F98003B56F0 /* WXComponentManager.h */,
|
|
873
|
+
4F48909B24656F98003B56F0 /* WXScrollerProtocol.h */,
|
|
874
|
+
4F48909C24656F98003B56F0 /* WXRichText.h */,
|
|
875
|
+
4F48909D24656F98003B56F0 /* WXView.h */,
|
|
876
|
+
4F48909E24656F98003B56F0 /* WXValidateProtocol.h */,
|
|
877
|
+
4F48909F24656F98003B56F0 /* WXDefine.h */,
|
|
878
|
+
4F4890A024656F98003B56F0 /* JSContext+Weex.h */,
|
|
879
|
+
4F4890A124656F98003B56F0 /* WXExtendCallNativeProtocol.h */,
|
|
880
|
+
4F4890A224656F98003B56F0 /* WXSDKEngine.h */,
|
|
881
|
+
4F4890A324656F98003B56F0 /* style.h */,
|
|
882
|
+
4F4890A424656F98003B56F0 /* WXResourceRequestHandler.h */,
|
|
883
|
+
4F4890A524656F98003B56F0 /* WXDisplayLinkManager.h */,
|
|
884
|
+
4F4890A624656F98003B56F0 /* WXUtility.h */,
|
|
885
|
+
4F4890A724656F98003B56F0 /* WXResourceRequest.h */,
|
|
886
|
+
4F4890A824656F98003B56F0 /* WXConvert.h */,
|
|
887
|
+
4F4890A924656F98003B56F0 /* WXPageEventNotifyEvent.h */,
|
|
888
|
+
4F4890AA24656F98003B56F0 /* WXSDKInstance.h */,
|
|
889
|
+
4F4890AB24656F98003B56F0 /* WXSDKManager.h */,
|
|
890
|
+
4F4890AC24656F98003B56F0 /* WXDebugTool.h */,
|
|
891
|
+
4F4890AD24656F98003B56F0 /* WXType.h */,
|
|
892
|
+
4F4890AE24656F98003B56F0 /* WXApmProtocol.h */,
|
|
893
|
+
4F4890AF24656F98003B56F0 /* WXJSFrameworkLoadProtocol.h */,
|
|
894
|
+
4F4890B024656F98003B56F0 /* WXExceptionUtils.h */,
|
|
895
|
+
4F4890B124656F98003B56F0 /* WXIndicatorComponent.h */,
|
|
896
|
+
4F4890B224656F98003B56F0 /* WXErrorView.h */,
|
|
897
|
+
4F4890B324656F98003B56F0 /* NSObject+WXSwizzle.h */,
|
|
898
|
+
4F4890B424656F98003B56F0 /* WXMonitor.h */,
|
|
899
|
+
4F4890B524656F98003B56F0 /* WXSDKInstance+DCExtend.h */,
|
|
900
|
+
4F4890B624656F98003B56F0 /* WXRecyclerComponent.h */,
|
|
901
|
+
4F4890B724656F98003B56F0 /* WXLog.h */,
|
|
902
|
+
4F4890B824656F98003B56F0 /* WXScrollerComponent.h */,
|
|
903
|
+
4F4890B924656F98003B56F0 /* WXNetworkProtocol.h */,
|
|
904
|
+
4F4890BA24656F98003B56F0 /* WXTracingManager.h */,
|
|
905
|
+
4F4890BB24656F98003B56F0 /* WXComponent.h */,
|
|
906
|
+
4F4890BC24656F98003B56F0 /* WXPrerenderManager.h */,
|
|
907
|
+
4F4890BD24656F98003B56F0 /* WXComponent+Layout.h */,
|
|
908
|
+
4F4890BE24656F98003B56F0 /* layout.h */,
|
|
909
|
+
4F4890BF24656F98003B56F0 /* WXSDKInstance+Bridge.h */,
|
|
910
|
+
4F4890C024656F98003B56F0 /* UniPluginProtocol.h */,
|
|
911
|
+
4F4890C124656F98003B56F0 /* WXModalUIModule.h */,
|
|
912
|
+
4F4890C224656F98003B56F0 /* WXAnalyzerCenter.h */,
|
|
913
|
+
4F4890C324656F98003B56F0 /* WXVoiceOverModule.h */,
|
|
914
|
+
4F4890C424656F98003B56F0 /* WXRootView.h */,
|
|
915
|
+
4F4890C524656F98003B56F0 /* WXAppConfiguration.h */,
|
|
916
|
+
4F4890C624656F98003B56F0 /* WXListComponent.h */,
|
|
917
|
+
4F4890C724656F98003B56F0 /* WXSDKError.h */,
|
|
918
|
+
4F4890C824656F98003B56F0 /* WXRootViewController.h */,
|
|
919
|
+
4F4890C924656F98003B56F0 /* WXNavigationProtocol.h */,
|
|
920
|
+
4F4890CA24656F98003B56F0 /* WXAnalyzerProtocol.h */,
|
|
921
|
+
4F4890CB24656F98003B56F0 /* WeexSDK.h */,
|
|
922
|
+
4F4890CC24656F98003B56F0 /* WXBridgeManager.h */,
|
|
923
|
+
4F4890CD24656F98003B56F0 /* WXResourceResponse.h */,
|
|
924
|
+
4F4890CE24656F98003B56F0 /* WXBaseViewController.h */,
|
|
925
|
+
4F4890CF24656F98003B56F0 /* WXAppMonitorProtocol.h */,
|
|
926
|
+
4F4890D024656F98003B56F0 /* WeexProtocol.h */,
|
|
927
|
+
4F4890D124656F98003B56F0 /* WXJSExceptionProtocol.h */,
|
|
928
|
+
4F4890D224656F98003B56F0 /* WXJSExceptionInfo.h */,
|
|
929
|
+
4F4890D324656F98003B56F0 /* WXTracingProtocol.h */,
|
|
930
|
+
4F4890D424656F98003B56F0 /* flex_enum.h */,
|
|
931
|
+
4F4890D524656F98003B56F0 /* WXConfigCenterProtocol.h */,
|
|
932
|
+
4F4890D624656F98003B56F0 /* WXEventModuleProtocol.h */,
|
|
933
|
+
4F4890D724656F98003B56F0 /* WXURLRewriteProtocol.h */,
|
|
934
|
+
4F4890D824656F98003B56F0 /* WXAComponent.h */,
|
|
935
|
+
4F4890D924656F98003B56F0 /* WXBridgeProtocol.h */,
|
|
936
|
+
);
|
|
937
|
+
path = weexHeader;
|
|
938
|
+
sourceTree = "<group>";
|
|
939
|
+
};
|
|
940
|
+
4F4890DA24656F98003B56F0 /* SDWebImage */ = {
|
|
941
|
+
isa = PBXGroup;
|
|
942
|
+
children = (
|
|
943
|
+
4F4890DB24656F98003B56F0 /* Core */,
|
|
944
|
+
4F48910E24656F98003B56F0 /* webp */,
|
|
945
|
+
4F48911124656F98003B56F0 /* Private */,
|
|
946
|
+
);
|
|
947
|
+
path = SDWebImage;
|
|
948
|
+
sourceTree = "<group>";
|
|
949
|
+
};
|
|
950
|
+
4F4890DB24656F98003B56F0 /* Core */ = {
|
|
951
|
+
isa = PBXGroup;
|
|
952
|
+
children = (
|
|
953
|
+
4F4890DC24656F98003B56F0 /* SDAnimatedImageRep.h */,
|
|
954
|
+
4F4890DD24656F98003B56F0 /* SDDiskCache.h */,
|
|
955
|
+
4F4890DE24656F98003B56F0 /* SDImageIOCoder.h */,
|
|
956
|
+
4F4890DF24656F98003B56F0 /* NSButton+WebCache.h */,
|
|
957
|
+
4F4890E024656F98003B56F0 /* SDImageGraphics.h */,
|
|
958
|
+
4F4890E124656F98003B56F0 /* UIImageView+WebCache.h */,
|
|
959
|
+
4F4890E224656F98003B56F0 /* NSData+ImageContentType.h */,
|
|
960
|
+
4F4890E324656F98003B56F0 /* SDImageTransformer.h */,
|
|
961
|
+
4F4890E424656F98003B56F0 /* SDImageCachesManager.h */,
|
|
962
|
+
4F4890E524656F98003B56F0 /* SDWebImageTransition.h */,
|
|
963
|
+
4F4890E624656F98003B56F0 /* SDImageLoadersManager.h */,
|
|
964
|
+
4F4890E724656F98003B56F0 /* SDWebImageDownloaderOperation.h */,
|
|
965
|
+
4F4890E824656F98003B56F0 /* SDImageFrame.h */,
|
|
966
|
+
4F4890E924656F98003B56F0 /* SDImageGIFCoder.h */,
|
|
967
|
+
4F4890EA24656F98003B56F0 /* SDImageCache.h */,
|
|
968
|
+
4F4890EB24656F98003B56F0 /* SDWebImageDownloaderConfig.h */,
|
|
969
|
+
4F4890EC24656F98003B56F0 /* SDImageCacheConfig.h */,
|
|
970
|
+
4F4890ED24656F98003B56F0 /* SDWebImageCacheKeyFilter.h */,
|
|
971
|
+
4F4890EE24656F98003B56F0 /* UIImage+MemoryCacheCost.h */,
|
|
972
|
+
4F4890EF24656F98003B56F0 /* SDImageCacheDefine.h */,
|
|
973
|
+
4F4890F024656F98003B56F0 /* UIButton+WebCache.h */,
|
|
974
|
+
4F4890F124656F98003B56F0 /* SDWebImageDownloaderRequestModifier.h */,
|
|
975
|
+
4F4890F224656F98003B56F0 /* UIImage+Metadata.h */,
|
|
976
|
+
4F4890F324656F98003B56F0 /* SDWebImageOptionsProcessor.h */,
|
|
977
|
+
4F4890F424656F98003B56F0 /* UIView+WebCache.h */,
|
|
978
|
+
4F4890F524656F98003B56F0 /* UIView+WebCacheOperation.h */,
|
|
979
|
+
4F4890F624656F98003B56F0 /* SDWebImageDefine.h */,
|
|
980
|
+
4F4890F724656F98003B56F0 /* SDImageCoder.h */,
|
|
981
|
+
4F4890F824656F98003B56F0 /* SDAnimatedImageView+WebCache.h */,
|
|
982
|
+
4F4890F924656F98003B56F0 /* NSImage+Compatibility.h */,
|
|
983
|
+
4F4890FA24656F98003B56F0 /* SDAnimatedImageView.h */,
|
|
984
|
+
4F4890FB24656F98003B56F0 /* SDAnimatedImage.h */,
|
|
985
|
+
4F4890FC24656F98003B56F0 /* UIImageView+HighlightedWebCache.h */,
|
|
986
|
+
4F4890FD24656F98003B56F0 /* SDWebImageManager.h */,
|
|
987
|
+
4F4890FE24656F98003B56F0 /* SDWebImageOperation.h */,
|
|
988
|
+
4F4890FF24656F98003B56F0 /* SDWebImageIndicator.h */,
|
|
989
|
+
4F48910024656F98003B56F0 /* SDWebImageCacheSerializer.h */,
|
|
990
|
+
4F48910124656F98003B56F0 /* SDImageLoader.h */,
|
|
991
|
+
4F48910224656F98003B56F0 /* SDWebImageDownloader.h */,
|
|
992
|
+
4F48910324656F98003B56F0 /* UIImage+Transform.h */,
|
|
993
|
+
4F48910424656F98003B56F0 /* UIImage+ForceDecode.h */,
|
|
994
|
+
4F48910524656F98003B56F0 /* SDImageCoderHelper.h */,
|
|
995
|
+
4F48910624656F98003B56F0 /* SDWebImagePrefetcher.h */,
|
|
996
|
+
4F48910724656F98003B56F0 /* SDImageAPNGCoder.h */,
|
|
997
|
+
4F48910824656F98003B56F0 /* SDWebImageError.h */,
|
|
998
|
+
4F48910924656F98003B56F0 /* SDWebImageCompat.h */,
|
|
999
|
+
4F48910A24656F98003B56F0 /* SDMemoryCache.h */,
|
|
1000
|
+
4F48910B24656F98003B56F0 /* UIImage+MultiFormat.h */,
|
|
1001
|
+
4F48910C24656F98003B56F0 /* SDImageCodersManager.h */,
|
|
1002
|
+
4F48910D24656F98003B56F0 /* UIImage+GIF.h */,
|
|
1003
|
+
);
|
|
1004
|
+
path = Core;
|
|
1005
|
+
sourceTree = "<group>";
|
|
1006
|
+
};
|
|
1007
|
+
4F48910E24656F98003B56F0 /* webp */ = {
|
|
1008
|
+
isa = PBXGroup;
|
|
1009
|
+
children = (
|
|
1010
|
+
4F48910F24656F98003B56F0 /* SDImageWebPCoder.h */,
|
|
1011
|
+
4F48911024656F98003B56F0 /* UIImage+WebP.h */,
|
|
1012
|
+
);
|
|
1013
|
+
path = webp;
|
|
1014
|
+
sourceTree = "<group>";
|
|
1015
|
+
};
|
|
1016
|
+
4F48911124656F98003B56F0 /* Private */ = {
|
|
1017
|
+
isa = PBXGroup;
|
|
1018
|
+
children = (
|
|
1019
|
+
4F48911224656F98003B56F0 /* SDWeakProxy.h */,
|
|
1020
|
+
4F48911324656F98003B56F0 /* SDInternalMacros.h */,
|
|
1021
|
+
4F48911424656F98003B56F0 /* NSBezierPath+RoundedCorners.h */,
|
|
1022
|
+
4F48911524656F98003B56F0 /* SDImageAPNGCoderInternal.h */,
|
|
1023
|
+
4F48911624656F98003B56F0 /* SDAsyncBlockOperation.h */,
|
|
1024
|
+
4F48911724656F98003B56F0 /* SDImageGIFCoderInternal.h */,
|
|
1025
|
+
4F48911824656F98003B56F0 /* UIColor+HexString.h */,
|
|
1026
|
+
4F48911924656F98003B56F0 /* SDmetamacros.h */,
|
|
1027
|
+
4F48911A24656F98003B56F0 /* SDImageCachesManagerOperation.h */,
|
|
1028
|
+
4F48911B24656F98003B56F0 /* SDImageAssetManager.h */,
|
|
1029
|
+
);
|
|
1030
|
+
path = Private;
|
|
1031
|
+
sourceTree = "<group>";
|
|
1032
|
+
};
|
|
1033
|
+
4F4DDB5725AC4F010008AE37 /* DCTZImagePickerController */ = {
|
|
1034
|
+
isa = PBXGroup;
|
|
1035
|
+
children = (
|
|
1036
|
+
4F4DDB5825AC4F010008AE37 /* DCTZPhotoPickerController.h */,
|
|
1037
|
+
4F4DDB5925AC4F010008AE37 /* DCTZImageManager.h */,
|
|
1038
|
+
4F4DDB5A25AC4F010008AE37 /* DCTZAssetCell.h */,
|
|
1039
|
+
4F4DDB5B25AC4F010008AE37 /* DCTZAssetModel.h */,
|
|
1040
|
+
4F4DDB5C25AC4F010008AE37 /* DCTZGifPhotoPreviewController.h */,
|
|
1041
|
+
4F4DDB5D25AC4F010008AE37 /* DCTZLocationManager.h */,
|
|
1042
|
+
4F4DDB5E25AC4F010008AE37 /* UIView+DCLayout.h */,
|
|
1043
|
+
4F4DDB5F25AC4F010008AE37 /* DCTZImageCropManager.h */,
|
|
1044
|
+
4F4DDB6025AC4F010008AE37 /* DCTZImagePickerController.h */,
|
|
1045
|
+
4F4DDB6125AC4F010008AE37 /* NSBundle+DCTZImagePicker.h */,
|
|
1046
|
+
4F4DDB6225AC4F010008AE37 /* DCTZVideoPlayerController.h */,
|
|
1047
|
+
4F4DDB6325AC4F010008AE37 /* DCUIViewControllerHUD.h */,
|
|
1048
|
+
4F4DDB6425AC4F010008AE37 /* DCTZPhotoPreviewCell.h */,
|
|
1049
|
+
4F4DDB6525AC4F010008AE37 /* DCTZPhotoPreviewController.h */,
|
|
1050
|
+
4F4DDB6625AC4F010008AE37 /* DCTZProgressView.h */,
|
|
1051
|
+
);
|
|
1052
|
+
path = DCTZImagePickerController;
|
|
1053
|
+
sourceTree = "<group>";
|
|
1054
|
+
};
|
|
1055
|
+
4F4DDB6725AC4F010008AE37 /* DCSVProgressHUD */ = {
|
|
1056
|
+
isa = PBXGroup;
|
|
1057
|
+
children = (
|
|
1058
|
+
4F4DDB6825AC4F010008AE37 /* DCSVIndefiniteAnimatedView.h */,
|
|
1059
|
+
4F4DDB6925AC4F010008AE37 /* DCSVProgressAnimatedView.h */,
|
|
1060
|
+
4F4DDB6A25AC4F010008AE37 /* DCSVProgressHUD.h */,
|
|
1061
|
+
4F4DDB6B25AC4F010008AE37 /* DCSVRadialGradientLayer.h */,
|
|
1062
|
+
);
|
|
1063
|
+
path = DCSVProgressHUD;
|
|
1064
|
+
sourceTree = "<group>";
|
|
1065
|
+
};
|
|
1066
|
+
8EED628F198A1D13000A4449 = {
|
|
1067
|
+
isa = PBXGroup;
|
|
1068
|
+
children = (
|
|
1069
|
+
6731F399232F4F03007838BC /* HBuilder.entitlements */,
|
|
1070
|
+
8EED62A1198A1D13000A4449 /* HBuilder-Hello */,
|
|
1071
|
+
8EED629A198A1D13000A4449 /* Frameworks */,
|
|
1072
|
+
8EED6299198A1D13000A4449 /* Products */,
|
|
1073
|
+
);
|
|
1074
|
+
sourceTree = "<group>";
|
|
1075
|
+
};
|
|
1076
|
+
8EED6299198A1D13000A4449 /* Products */ = {
|
|
1077
|
+
isa = PBXGroup;
|
|
1078
|
+
children = (
|
|
1079
|
+
8EED6298198A1D13000A4449 /* HBuilder.app */,
|
|
1080
|
+
);
|
|
1081
|
+
name = Products;
|
|
1082
|
+
sourceTree = "<group>";
|
|
1083
|
+
};
|
|
1084
|
+
8EED629A198A1D13000A4449 /* Frameworks */ = {
|
|
1085
|
+
isa = PBXGroup;
|
|
1086
|
+
children = (
|
|
1087
|
+
408652272806C445007B18A5 /* libz.1.2.5.tbd */,
|
|
1088
|
+
408652222806A9EF007B18A5 /* TencentLBS.framework */,
|
|
1089
|
+
40F248F027BB7F250042E27E /* XYSDK.a */,
|
|
1090
|
+
9564C422278FE64500C804D3 /* liblibWebNavi.a */,
|
|
1091
|
+
95BC64EB2754A50000CB55B9 /* UMAPM.framework */,
|
|
1092
|
+
95BC64EA2754A50000CB55B9 /* UMCommon.framework */,
|
|
1093
|
+
95BC64E92754A50000CB55B9 /* UMDevice.framework */,
|
|
1094
|
+
4F8C6936265E502C00C2A73C /* Masonry.framework */,
|
|
1095
|
+
4F5762F6261461AB00A5C0BA /* GLKit.framework */,
|
|
1096
|
+
4F5762F4261461A000A5C0BA /* MetalKit.framework */,
|
|
1097
|
+
4F4DAE6A25DE60DB0094E580 /* libUniPush.a */,
|
|
1098
|
+
4FE3666B254FE70E00DCD173 /* libuchardet.a */,
|
|
1099
|
+
67254219242474E20086649B /* libH5WEUIWebview.a */,
|
|
1100
|
+
6731F397232F4D8E007838BC /* Photos.framework */,
|
|
1101
|
+
6731F395232F4D05007838BC /* UserNotifications.framework */,
|
|
1102
|
+
6731F393232F4CE2007838BC /* libresolv.tbd */,
|
|
1103
|
+
67229AC9230171AE0093F29A /* libDCUniAmap.a */,
|
|
1104
|
+
67229ACB230171AE0093F29A /* libDCUniBarcode.a */,
|
|
1105
|
+
67229ACD230171AE0093F29A /* libDCUniBMap.a */,
|
|
1106
|
+
67229ACE230171AE0093F29A /* libDCUniGPUImage.a */,
|
|
1107
|
+
67229ACF230171AE0093F29A /* libDCUniLivePush.a */,
|
|
1108
|
+
67229AD0230171AE0093F29A /* libDCUniMap.a */,
|
|
1109
|
+
67229ACA230171AE0093F29A /* libDCUniVideo.a */,
|
|
1110
|
+
672CE2B422DC916C005A0D88 /* libDCUniZXing.a */,
|
|
1111
|
+
672CE2B222DC9118005A0D88 /* DCUniVideoPublic.framework */,
|
|
1112
|
+
6756AB6721F58ACC00765F52 /* liblibBeacon.a */,
|
|
1113
|
+
6756AB6921F58CA300765F52 /* liblibBlueTooth.a */,
|
|
1114
|
+
67D6390821C12944005D1E8F /* libbaiduSpeech.a */,
|
|
1115
|
+
67D6390721C12944005D1E8F /* libBaiduSpeechSDK.a */,
|
|
1116
|
+
2FDE1569215F468000588710 /* liblibWeex.a */,
|
|
1117
|
+
2FD11BBA215C79C5000A23AD /* liblibAdSupport.a */,
|
|
1118
|
+
2F0BA417215B8B5C00F67004 /* libbz2.1.0.tbd */,
|
|
1119
|
+
2F0BA415215B8B1300F67004 /* VideoToolbox.framework */,
|
|
1120
|
+
2F0BA411215B814000F67004 /* liblibVideo.a */,
|
|
1121
|
+
2F0BA40F215B784000F67004 /* Contacts.framework */,
|
|
1122
|
+
7A49810C2126B01900D20880 /* Accelerate.framework */,
|
|
1123
|
+
7A49810A2126B01200D20880 /* libiconv.tbd */,
|
|
1124
|
+
7A1967C0212536C300B330A9 /* GTSDK.framework */,
|
|
1125
|
+
247F85DA1FA32B2C006ECAC6 /* liblibPDRCore.a */,
|
|
1126
|
+
673E6E7221E44ABF00C021FE /* liblibFingerprint.a */,
|
|
1127
|
+
67566B1E2251DC3A00BDF218 /* liblibSqlite.a */,
|
|
1128
|
+
67AB0B9821EF10FE0029B229 /* libBaiduKeyVerify.a */,
|
|
1129
|
+
67AB0B9E21EF111D0029B229 /* BaiduMapAPI_Base.framework */,
|
|
1130
|
+
67AB0B9A21EF111C0029B229 /* BaiduMapAPI_Cloud.framework */,
|
|
1131
|
+
67AB0B9F21EF111D0029B229 /* BaiduMapAPI_Location.framework */,
|
|
1132
|
+
67AB0B9D21EF111D0029B229 /* BaiduMapAPI_Map.framework */,
|
|
1133
|
+
67AB0B9B21EF111D0029B229 /* BaiduMapAPI_Search.framework */,
|
|
1134
|
+
67AB0B9C21EF111D0029B229 /* BaiduMapAPI_Utils.framework */,
|
|
1135
|
+
67AB0B9621EF10E60029B229 /* liblibGeolocation.a */,
|
|
1136
|
+
67AB0B3C21EEEA6B0029B229 /* libAMapImp.a */,
|
|
1137
|
+
67AB0B4221EEEAE50029B229 /* AMapFoundationKit.framework */,
|
|
1138
|
+
67AB0B4021EEEACA0029B229 /* MAMapKit.framework */,
|
|
1139
|
+
67AB0B3E21EEEAA60029B229 /* AMapSearchKit.framework */,
|
|
1140
|
+
2430A6FF1E11603E00D3D42D /* libcrypto.a */,
|
|
1141
|
+
2430A7001E11603E00D3D42D /* libssl.a */,
|
|
1142
|
+
24F990121DFBDA3300848C2B /* CoreData.framework */,
|
|
1143
|
+
24A7515E1D9CCCC600C8B0F9 /* QuickLook.framework */,
|
|
1144
|
+
242725CC1D26686700EBD79E /* CoreMotion.framework */,
|
|
1145
|
+
242725CA1D2666ED00EBD79E /* JavaScriptCore.framework */,
|
|
1146
|
+
2447371A1D0830BB00D0F08F /* WebKit.framework */,
|
|
1147
|
+
24AFD8031CB50C3F00C0F062 /* libalixpayment.a */,
|
|
1148
|
+
7A1967C42125371000B330A9 /* storage.framework */,
|
|
1149
|
+
7A1967C2212536EC00B330A9 /* libmp3lame.a */,
|
|
1150
|
+
24AFD8061CB50C3F00C0F062 /* libBaiduMobStatForSDK.a */,
|
|
1151
|
+
24AFD8091CB50C3F00C0F062 /* libcoreSupport.a */,
|
|
1152
|
+
24AFD80A1CB50C3F00C0F062 /* libGeTuiPush.a */,
|
|
1153
|
+
24AFD80C1CB50C3F00C0F062 /* libIAPPay.a */,
|
|
1154
|
+
24AFD80F1CB50C3F00C0F062 /* liblibAccelerometer.a */,
|
|
1155
|
+
24AFD8101CB50C3F00C0F062 /* liblibBarcode.a */,
|
|
1156
|
+
24AFD8111CB50C3F00C0F062 /* liblibCache.a */,
|
|
1157
|
+
24AFD8121CB50C3F00C0F062 /* liblibCamera.a */,
|
|
1158
|
+
24AFD8131CB50C3F00C0F062 /* liblibContacts.a */,
|
|
1159
|
+
24AFD8151CB50C4000C0F062 /* liblibIO.a */,
|
|
1160
|
+
24AFD8161CB50C4000C0F062 /* liblibLog.a */,
|
|
1161
|
+
24AFD8171CB50C4000C0F062 /* liblibMap.a */,
|
|
1162
|
+
24AFD8181CB50C4000C0F062 /* liblibMedia.a */,
|
|
1163
|
+
24AFD8191CB50C4000C0F062 /* liblibMessage.a */,
|
|
1164
|
+
24AFD81A1CB50C4000C0F062 /* liblibNativeObj.a */,
|
|
1165
|
+
24AFD81B1CB50C4000C0F062 /* liblibNativeUI.a */,
|
|
1166
|
+
24AFD81C1CB50C4000C0F062 /* liblibNavigator.a */,
|
|
1167
|
+
24AFD81D1CB50C4000C0F062 /* liblibOauth.a */,
|
|
1168
|
+
24AFD81E1CB50C4000C0F062 /* liblibOrientation.a */,
|
|
1169
|
+
24AFD81F1CB50C4000C0F062 /* liblibPayment.a */,
|
|
1170
|
+
24AFD8211CB50C4000C0F062 /* liblibPGInvocation.a */,
|
|
1171
|
+
24AFD8221CB50C4000C0F062 /* liblibPGProximity.a */,
|
|
1172
|
+
24AFD8231CB50C4000C0F062 /* liblibPush.a */,
|
|
1173
|
+
24AFD8241CB50C4000C0F062 /* liblibShare.a */,
|
|
1174
|
+
24AFD8251CB50C4000C0F062 /* liblibSpeech.a */,
|
|
1175
|
+
24AFD8261CB50C4000C0F062 /* liblibStatistic.a */,
|
|
1176
|
+
24AFD8271CB50C4000C0F062 /* liblibStorage.a */,
|
|
1177
|
+
24AFD8281CB50C4000C0F062 /* liblibUI.a */,
|
|
1178
|
+
24AFD82B1CB50C4000C0F062 /* liblibXHR.a */,
|
|
1179
|
+
24AFD82C1CB50C4000C0F062 /* liblibZip.a */,
|
|
1180
|
+
24AFD82E1CB50C4000C0F062 /* libopencore-amrnb.a */,
|
|
1181
|
+
24AFD8321CB50C4000C0F062 /* libQQOauth.a */,
|
|
1182
|
+
24AFD8331CB50C4000C0F062 /* libQQShare.a */,
|
|
1183
|
+
24AFD8341CB50C4000C0F062 /* libSDWebImage.a */,
|
|
1184
|
+
24AFD8351CB50C4000C0F062 /* libSinaShare.a */,
|
|
1185
|
+
24AFD8361CB50C4000C0F062 /* libSinaWBOauth.a */,
|
|
1186
|
+
24AFD8391CB50C4000C0F062 /* libTouchJSON.a */,
|
|
1187
|
+
24AFD83C1CB50C4000C0F062 /* libWeiboSDK.a */,
|
|
1188
|
+
7A1967C621253B5F00B330A9 /* libWeChatSDK_pay.a */,
|
|
1189
|
+
24AFD83D1CB50C4000C0F062 /* libweixinShare.a */,
|
|
1190
|
+
24AFD83E1CB50C4000C0F062 /* libWXOauth.a */,
|
|
1191
|
+
24AFD83F1CB50C4000C0F062 /* libwxpay.a */,
|
|
1192
|
+
24AFD7FB1CB50C3200C0F062 /* AlipaySDK.framework */,
|
|
1193
|
+
24AFD7FE1CB50C3200C0F062 /* TencentOpenAPI.framework */,
|
|
1194
|
+
24BD5AF51C994BB200B05AA2 /* libc++.tbd */,
|
|
1195
|
+
24BD5AF11C994A1700B05AA2 /* libicucore.tbd */,
|
|
1196
|
+
24BD5AEF1C99494A00B05AA2 /* libz.tbd */,
|
|
1197
|
+
24BD5AED1C99494200B05AA2 /* libxml2.tbd */,
|
|
1198
|
+
24BD5AE91C99492A00B05AA2 /* libiconv.2.tbd */,
|
|
1199
|
+
24BD5AE71C99491D00B05AA2 /* libsqlite3.0.tbd */,
|
|
1200
|
+
240905021C200AEF0070786F /* CoreBluetooth.framework */,
|
|
1201
|
+
8E6E37AB1B0E1B580036EB48 /* ImageIO.framework */,
|
|
1202
|
+
8E163D011A8D208500308A8B /* AssetsLibrary.framework */,
|
|
1203
|
+
7ACF69AC19FF89B1007C64F1 /* Security.framework */,
|
|
1204
|
+
7ACF69AA19FF899A007C64F1 /* CFNetwork.framework */,
|
|
1205
|
+
8EED65A7198A6273000A4449 /* OpenGLES.framework */,
|
|
1206
|
+
8EED65A5198A626B000A4449 /* MapKit.framework */,
|
|
1207
|
+
8EED659F198A5789000A4449 /* Accounts.framework */,
|
|
1208
|
+
8EED659D198A5782000A4449 /* Social.framework */,
|
|
1209
|
+
8EED659B198A5773000A4449 /* AddressBookUI.framework */,
|
|
1210
|
+
8EED6597198A5754000A4449 /* MessageUI.framework */,
|
|
1211
|
+
8EED6595198A574C000A4449 /* CoreLocation.framework */,
|
|
1212
|
+
8EED6593198A5743000A4449 /* AVFoundation.framework */,
|
|
1213
|
+
8EED6591198A5737000A4449 /* AddressBook.framework */,
|
|
1214
|
+
8EED6421198A2678000A4449 /* AudioToolbox.framework */,
|
|
1215
|
+
8EED629D198A1D13000A4449 /* CoreGraphics.framework */,
|
|
1216
|
+
8EED6413198A262C000A4449 /* CoreMedia.framework */,
|
|
1217
|
+
8EED641D198A265F000A4449 /* CoreTelephony.framework */,
|
|
1218
|
+
8EED6415198A2635000A4449 /* CoreVideo.framework */,
|
|
1219
|
+
8EED629B198A1D13000A4449 /* Foundation.framework */,
|
|
1220
|
+
8EED641F198A2668000A4449 /* MediaPlayer.framework */,
|
|
1221
|
+
8EED6411198A2622000A4449 /* MobileCoreServices.framework */,
|
|
1222
|
+
8EED641B198A2654000A4449 /* SystemConfiguration.framework */,
|
|
1223
|
+
8EED629F198A1D13000A4449 /* UIKit.framework */,
|
|
1224
|
+
);
|
|
1225
|
+
name = Frameworks;
|
|
1226
|
+
sourceTree = "<group>";
|
|
1227
|
+
};
|
|
1228
|
+
8EED62A1198A1D13000A4449 /* HBuilder-Hello */ = {
|
|
1229
|
+
isa = PBXGroup;
|
|
1230
|
+
children = (
|
|
1231
|
+
40F248F227BB7F3D0042E27E /* XYSDK */,
|
|
1232
|
+
8EED62AA198A1D13000A4449 /* AppDelegate.h */,
|
|
1233
|
+
8EED62AB198A1D13000A4449 /* AppDelegate.m */,
|
|
1234
|
+
4F48905B24656F98003B56F0 /* inc */,
|
|
1235
|
+
8EED658F198A3DF7000A4449 /* Pandora */,
|
|
1236
|
+
8EED62A2198A1D13000A4449 /* Supporting Files */,
|
|
1237
|
+
8EED62B3198A1D14000A4449 /* ViewController.h */,
|
|
1238
|
+
8EED62B4198A1D14000A4449 /* ViewController.m */,
|
|
1239
|
+
40F248BE27BA2FAD0042E27E /* Xprinter.h */,
|
|
1240
|
+
40F248BF27BA2FAD0042E27E /* Xprinter.m */,
|
|
1241
|
+
);
|
|
1242
|
+
path = "HBuilder-Hello";
|
|
1243
|
+
sourceTree = "<group>";
|
|
1244
|
+
};
|
|
1245
|
+
8EED62A2198A1D13000A4449 /* Supporting Files */ = {
|
|
1246
|
+
isa = PBXGroup;
|
|
1247
|
+
children = (
|
|
1248
|
+
40D85F6D27B9EE3B00FCDE13 /* 120x120.png */,
|
|
1249
|
+
40D85F6E27B9EE3B00FCDE13 /* 180x180.png */,
|
|
1250
|
+
2F0BA4DB215BA12300F67004 /* LaunchScreen.storyboard */,
|
|
1251
|
+
4F48901F24656F72003B56F0 /* Bundles */,
|
|
1252
|
+
2F0BA3F8215B48A700F67004 /* Images.xcassets */,
|
|
1253
|
+
8EED62A3198A1D13000A4449 /* HBuilder-Hello-Info.plist */,
|
|
1254
|
+
67B7CAA121DCE8180083E96A /* control.xml */,
|
|
1255
|
+
8EED62A4198A1D13000A4449 /* InfoPlist.strings */,
|
|
1256
|
+
8EED62A7198A1D13000A4449 /* main.m */,
|
|
1257
|
+
8EED62A9198A1D13000A4449 /* HBuilder-Hello-Prefix.pch */,
|
|
1258
|
+
67E9CDCD22968D2E0076E0FB /* Localizable.strings */,
|
|
1259
|
+
);
|
|
1260
|
+
name = "Supporting Files";
|
|
1261
|
+
sourceTree = "<group>";
|
|
1262
|
+
};
|
|
1263
|
+
/* End PBXGroup section */
|
|
1264
|
+
|
|
1265
|
+
/* Begin PBXNativeTarget section */
|
|
1266
|
+
8EED6297198A1D13000A4449 /* HBuilder */ = {
|
|
1267
|
+
isa = PBXNativeTarget;
|
|
1268
|
+
buildConfigurationList = 8EED62CD198A1D14000A4449 /* Build configuration list for PBXNativeTarget "HBuilder" */;
|
|
1269
|
+
buildPhases = (
|
|
1270
|
+
8EED6294198A1D13000A4449 /* Sources */,
|
|
1271
|
+
8EED6295198A1D13000A4449 /* Frameworks */,
|
|
1272
|
+
8EED6296198A1D13000A4449 /* Resources */,
|
|
1273
|
+
7A4980F42126ADAD00D20880 /* Embed Frameworks */,
|
|
1274
|
+
);
|
|
1275
|
+
buildRules = (
|
|
1276
|
+
);
|
|
1277
|
+
dependencies = (
|
|
1278
|
+
);
|
|
1279
|
+
name = HBuilder;
|
|
1280
|
+
productName = "HBuilder-Hello";
|
|
1281
|
+
productReference = 8EED6298198A1D13000A4449 /* HBuilder.app */;
|
|
1282
|
+
productType = "com.apple.product-type.application";
|
|
1283
|
+
};
|
|
1284
|
+
/* End PBXNativeTarget section */
|
|
1285
|
+
|
|
1286
|
+
/* Begin PBXProject section */
|
|
1287
|
+
8EED6290198A1D13000A4449 /* Project object */ = {
|
|
1288
|
+
isa = PBXProject;
|
|
1289
|
+
attributes = {
|
|
1290
|
+
LastUpgradeCheck = 0510;
|
|
1291
|
+
ORGANIZATIONNAME = DCloud;
|
|
1292
|
+
TargetAttributes = {
|
|
1293
|
+
8EED6297198A1D13000A4449 = {
|
|
1294
|
+
DevelopmentTeam = HPB7D26V6U;
|
|
1295
|
+
ProvisioningStyle = Automatic;
|
|
1296
|
+
SystemCapabilities = {
|
|
1297
|
+
com.apple.Push = {
|
|
1298
|
+
enabled = 1;
|
|
1299
|
+
};
|
|
1300
|
+
};
|
|
1301
|
+
};
|
|
1302
|
+
};
|
|
1303
|
+
};
|
|
1304
|
+
buildConfigurationList = 8EED6293198A1D13000A4449 /* Build configuration list for PBXProject "HBuilder-Hello" */;
|
|
1305
|
+
compatibilityVersion = "Xcode 3.2";
|
|
1306
|
+
developmentRegion = English;
|
|
1307
|
+
hasScannedForEncodings = 0;
|
|
1308
|
+
knownRegions = (
|
|
1309
|
+
English,
|
|
1310
|
+
en,
|
|
1311
|
+
Base,
|
|
1312
|
+
"zh-Hans",
|
|
1313
|
+
);
|
|
1314
|
+
mainGroup = 8EED628F198A1D13000A4449;
|
|
1315
|
+
productRefGroup = 8EED6299198A1D13000A4449 /* Products */;
|
|
1316
|
+
projectDirPath = "";
|
|
1317
|
+
projectRoot = "";
|
|
1318
|
+
targets = (
|
|
1319
|
+
8EED6297198A1D13000A4449 /* HBuilder */,
|
|
1320
|
+
);
|
|
1321
|
+
};
|
|
1322
|
+
/* End PBXProject section */
|
|
1323
|
+
|
|
1324
|
+
/* Begin PBXResourcesBuildPhase section */
|
|
1325
|
+
8EED6296198A1D13000A4449 /* Resources */ = {
|
|
1326
|
+
isa = PBXResourcesBuildPhase;
|
|
1327
|
+
buildActionMask = 2147483647;
|
|
1328
|
+
files = (
|
|
1329
|
+
2F0BA3F9215B48A700F67004 /* Images.xcassets in Resources */,
|
|
1330
|
+
4F48904124656F73003B56F0 /* AlipaySDK.bundle in Resources */,
|
|
1331
|
+
4F48905924656F73003B56F0 /* weex-polyfill.js in Resources */,
|
|
1332
|
+
8EED62A6198A1D13000A4449 /* InfoPlist.strings in Resources */,
|
|
1333
|
+
4F48904724656F73003B56F0 /* bds_easr_mfe_cmvn.dat in Resources */,
|
|
1334
|
+
4F48904024656F73003B56F0 /* MiPassport.bundle in Resources */,
|
|
1335
|
+
4F48905324656F73003B56F0 /* userPosition@2x.png in Resources */,
|
|
1336
|
+
40D85F7027B9EE3B00FCDE13 /* 180x180.png in Resources */,
|
|
1337
|
+
4F48904C24656F73003B56F0 /* bds_easr_dnn_wakeup_model.dat in Resources */,
|
|
1338
|
+
4F48905124656F73003B56F0 /* AMap.bundle in Resources */,
|
|
1339
|
+
4F48904A24656F73003B56F0 /* bds_easr_gramm.dat in Resources */,
|
|
1340
|
+
4F48905524656F73003B56F0 /* BUAdSDK.bundle in Resources */,
|
|
1341
|
+
2F0BA4DC215BA12300F67004 /* LaunchScreen.storyboard in Resources */,
|
|
1342
|
+
4F48904E24656F73003B56F0 /* PandoraApi.bundle in Resources */,
|
|
1343
|
+
4F48904324656F73003B56F0 /* WeiboSDK.bundle in Resources */,
|
|
1344
|
+
4F48904224656F73003B56F0 /* uni-jsframework.js in Resources */,
|
|
1345
|
+
4F48904524656F73003B56F0 /* bds_license.dat in Resources */,
|
|
1346
|
+
4F48903F24656F73003B56F0 /* __uniappes6.js in Resources */,
|
|
1347
|
+
4F48904824656F73003B56F0 /* temp_license_2018-02-24.dat in Resources */,
|
|
1348
|
+
4F48905224656F73003B56F0 /* uni-jsframework-dev.js in Resources */,
|
|
1349
|
+
4F48903E24656F73003B56F0 /* mapapi.bundle in Resources */,
|
|
1350
|
+
4F48904D24656F73003B56F0 /* DCTZImagePickerController.bundle in Resources */,
|
|
1351
|
+
4F48905724656F73003B56F0 /* DCMediaVideo.bundle in Resources */,
|
|
1352
|
+
4F48904624656F73003B56F0 /* bds_easr_basic_model.dat in Resources */,
|
|
1353
|
+
4F48905024656F73003B56F0 /* QHADVideoPlayer.bundle in Resources */,
|
|
1354
|
+
4F48904B24656F73003B56F0 /* bds_easr_wakeup_words.dat in Resources */,
|
|
1355
|
+
4F48905424656F73003B56F0 /* qucsdkResources.bundle in Resources */,
|
|
1356
|
+
4F48905824656F73003B56F0 /* DCSVProgressHUD.bundle in Resources */,
|
|
1357
|
+
4F48905624656F73003B56F0 /* DCPGVideo.bundle in Resources */,
|
|
1358
|
+
40D85F6F27B9EE3B00FCDE13 /* 120x120.png in Resources */,
|
|
1359
|
+
4F48904924656F73003B56F0 /* bds_easr_mfe_dnn.dat in Resources */,
|
|
1360
|
+
67E9CDCF22968D2E0076E0FB /* Localizable.strings in Resources */,
|
|
1361
|
+
67B7CAA221DCE8180083E96A /* control.xml in Resources */,
|
|
1362
|
+
4FA53F7926E5D09500BAD6A0 /* uni-jsframework-vue3.js in Resources */,
|
|
1363
|
+
4F48905A24656F73003B56F0 /* weexUniJs.js in Resources */,
|
|
1364
|
+
4F48904F24656F73003B56F0 /* unincomponents.ttf in Resources */,
|
|
1365
|
+
8EED6590198A3DF7000A4449 /* Pandora in Resources */,
|
|
1366
|
+
);
|
|
1367
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
1368
|
+
};
|
|
1369
|
+
/* End PBXResourcesBuildPhase section */
|
|
1370
|
+
|
|
1371
|
+
/* Begin PBXSourcesBuildPhase section */
|
|
1372
|
+
8EED6294198A1D13000A4449 /* Sources */ = {
|
|
1373
|
+
isa = PBXSourcesBuildPhase;
|
|
1374
|
+
buildActionMask = 2147483647;
|
|
1375
|
+
files = (
|
|
1376
|
+
40F248C027BA2FAD0042E27E /* Xprinter.m in Sources */,
|
|
1377
|
+
8EED62B5198A1D14000A4449 /* ViewController.m in Sources */,
|
|
1378
|
+
8EED62AC198A1D13000A4449 /* AppDelegate.m in Sources */,
|
|
1379
|
+
8EED62A8198A1D13000A4449 /* main.m in Sources */,
|
|
1380
|
+
);
|
|
1381
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
1382
|
+
};
|
|
1383
|
+
/* End PBXSourcesBuildPhase section */
|
|
1384
|
+
|
|
1385
|
+
/* Begin PBXVariantGroup section */
|
|
1386
|
+
67E9CDCD22968D2E0076E0FB /* Localizable.strings */ = {
|
|
1387
|
+
isa = PBXVariantGroup;
|
|
1388
|
+
children = (
|
|
1389
|
+
67E9CDCE22968D2E0076E0FB /* zh-Hans */,
|
|
1390
|
+
67E9CDD022968D350076E0FB /* en */,
|
|
1391
|
+
);
|
|
1392
|
+
name = Localizable.strings;
|
|
1393
|
+
sourceTree = "<group>";
|
|
1394
|
+
};
|
|
1395
|
+
8EED62A4198A1D13000A4449 /* InfoPlist.strings */ = {
|
|
1396
|
+
isa = PBXVariantGroup;
|
|
1397
|
+
children = (
|
|
1398
|
+
8EED62A5198A1D13000A4449 /* en */,
|
|
1399
|
+
2F0BA40D215B6E6800F67004 /* zh-Hans */,
|
|
1400
|
+
);
|
|
1401
|
+
name = InfoPlist.strings;
|
|
1402
|
+
sourceTree = "<group>";
|
|
1403
|
+
};
|
|
1404
|
+
/* End PBXVariantGroup section */
|
|
1405
|
+
|
|
1406
|
+
/* Begin XCBuildConfiguration section */
|
|
1407
|
+
8EED62CB198A1D14000A4449 /* Debug */ = {
|
|
1408
|
+
isa = XCBuildConfiguration;
|
|
1409
|
+
buildSettings = {
|
|
1410
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
1411
|
+
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
|
1412
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
|
1413
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
1414
|
+
CLANG_ENABLE_MODULES = YES;
|
|
1415
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
1416
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
1417
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
1418
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
1419
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
1420
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
1421
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
1422
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
1423
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
1424
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
1425
|
+
COPY_PHASE_STRIP = NO;
|
|
1426
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
1427
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
|
1428
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
|
1429
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
1430
|
+
"DEBUG=1",
|
|
1431
|
+
"$(inherited)",
|
|
1432
|
+
);
|
|
1433
|
+
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
|
1434
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
1435
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
1436
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
1437
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
1438
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
1439
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
1440
|
+
IPHONEOS_DEPLOYMENT_TARGET = 6.0;
|
|
1441
|
+
ONLY_ACTIVE_ARCH = YES;
|
|
1442
|
+
SDKROOT = iphoneos;
|
|
1443
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
1444
|
+
};
|
|
1445
|
+
name = Debug;
|
|
1446
|
+
};
|
|
1447
|
+
8EED62CC198A1D14000A4449 /* Release */ = {
|
|
1448
|
+
isa = XCBuildConfiguration;
|
|
1449
|
+
buildSettings = {
|
|
1450
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
1451
|
+
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
|
1452
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
|
1453
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
1454
|
+
CLANG_ENABLE_MODULES = YES;
|
|
1455
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
1456
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
1457
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
1458
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
1459
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
1460
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
1461
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
1462
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
1463
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
1464
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
1465
|
+
COPY_PHASE_STRIP = YES;
|
|
1466
|
+
ENABLE_NS_ASSERTIONS = NO;
|
|
1467
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
1468
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
1469
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
1470
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
1471
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
1472
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
1473
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
1474
|
+
IPHONEOS_DEPLOYMENT_TARGET = 6.0;
|
|
1475
|
+
SDKROOT = iphoneos;
|
|
1476
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
1477
|
+
VALIDATE_PRODUCT = YES;
|
|
1478
|
+
};
|
|
1479
|
+
name = Release;
|
|
1480
|
+
};
|
|
1481
|
+
8EED62CE198A1D14000A4449 /* Debug */ = {
|
|
1482
|
+
isa = XCBuildConfiguration;
|
|
1483
|
+
buildSettings = {
|
|
1484
|
+
ARCHS = "$(ARCHS_STANDARD)";
|
|
1485
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
1486
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
1487
|
+
CODE_SIGN_ENTITLEMENTS = HBuilder/HBuilder.entitlements;
|
|
1488
|
+
CODE_SIGN_IDENTITY = "Apple Development";
|
|
1489
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "Apple Development";
|
|
1490
|
+
CODE_SIGN_STYLE = Automatic;
|
|
1491
|
+
CURRENT_PROJECT_VERSION = 100;
|
|
1492
|
+
DEVELOPMENT_TEAM = HPB7D26V6U;
|
|
1493
|
+
ENABLE_BITCODE = NO;
|
|
1494
|
+
FRAMEWORK_SEARCH_PATHS = (
|
|
1495
|
+
"$(inherited)",
|
|
1496
|
+
"$(DEVELOPER_FRAMEWORKS_DIR)",
|
|
1497
|
+
"$(PROJECT_DIR)/../SDK/libs/Compatibles",
|
|
1498
|
+
"$(PROJECT_DIR)/../SDK/libs",
|
|
1499
|
+
"$(PROJECT_DIR)",
|
|
1500
|
+
);
|
|
1501
|
+
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
|
1502
|
+
GCC_PREFIX_HEADER = "HBuilder-Hello/HBuilder-Hello-Prefix.pch";
|
|
1503
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
1504
|
+
PDR_PLUS_MAP,
|
|
1505
|
+
PDR_PLUS_GETUI,
|
|
1506
|
+
PDR_PLUS_UMENG,
|
|
1507
|
+
);
|
|
1508
|
+
HEADER_SEARCH_PATHS = (
|
|
1509
|
+
"$(inherited)",
|
|
1510
|
+
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
|
|
1511
|
+
"$(SRCROOT)/../SDK/inc/**",
|
|
1512
|
+
);
|
|
1513
|
+
INFOPLIST_FILE = "HBuilder-Hello/HBuilder-Hello-Info.plist";
|
|
1514
|
+
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
|
|
1515
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
|
|
1516
|
+
LIBRARY_SEARCH_PATHS = (
|
|
1517
|
+
"$(SRCROOT)/../SDK/libs",
|
|
1518
|
+
"$(PROJECT_DIR)",
|
|
1519
|
+
);
|
|
1520
|
+
MARKETING_VERSION = 1.0.0;
|
|
1521
|
+
OTHER_LDFLAGS = "-ObjC";
|
|
1522
|
+
PRODUCT_BUNDLE_IDENTIFIER = plus.H5ECA1DEE;
|
|
1523
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
1524
|
+
PROVISIONING_PROFILE = "";
|
|
1525
|
+
PROVISIONING_PROFILE_SPECIFIER = "";
|
|
1526
|
+
TARGETED_DEVICE_FAMILY = 1;
|
|
1527
|
+
VALID_ARCHS = "armv7 arm64 i386 x86_64";
|
|
1528
|
+
WRAPPER_EXTENSION = app;
|
|
1529
|
+
};
|
|
1530
|
+
name = Debug;
|
|
1531
|
+
};
|
|
1532
|
+
8EED62CF198A1D14000A4449 /* Release */ = {
|
|
1533
|
+
isa = XCBuildConfiguration;
|
|
1534
|
+
buildSettings = {
|
|
1535
|
+
ARCHS = "$(ARCHS_STANDARD)";
|
|
1536
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
1537
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
1538
|
+
CODE_SIGN_ENTITLEMENTS = HBuilder/HBuilder.entitlements;
|
|
1539
|
+
CODE_SIGN_IDENTITY = "Apple Development";
|
|
1540
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "Apple Development";
|
|
1541
|
+
CODE_SIGN_STYLE = Automatic;
|
|
1542
|
+
CURRENT_PROJECT_VERSION = 100;
|
|
1543
|
+
DEVELOPMENT_TEAM = HPB7D26V6U;
|
|
1544
|
+
ENABLE_BITCODE = NO;
|
|
1545
|
+
FRAMEWORK_SEARCH_PATHS = (
|
|
1546
|
+
"$(inherited)",
|
|
1547
|
+
"$(DEVELOPER_FRAMEWORKS_DIR)",
|
|
1548
|
+
"$(PROJECT_DIR)/../SDK/libs/Compatibles",
|
|
1549
|
+
"$(PROJECT_DIR)/../SDK/libs",
|
|
1550
|
+
"$(PROJECT_DIR)",
|
|
1551
|
+
);
|
|
1552
|
+
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
|
1553
|
+
GCC_PREFIX_HEADER = "HBuilder-Hello/HBuilder-Hello-Prefix.pch";
|
|
1554
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
1555
|
+
PDR_PLUS_MAP,
|
|
1556
|
+
PDR_PLUS_GETUI,
|
|
1557
|
+
PDR_PLUS_UMENG,
|
|
1558
|
+
);
|
|
1559
|
+
HEADER_SEARCH_PATHS = (
|
|
1560
|
+
"$(inherited)",
|
|
1561
|
+
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
|
|
1562
|
+
"$(SRCROOT)/../SDK/inc/**",
|
|
1563
|
+
);
|
|
1564
|
+
INFOPLIST_FILE = "HBuilder-Hello/HBuilder-Hello-Info.plist";
|
|
1565
|
+
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
|
|
1566
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
|
|
1567
|
+
LIBRARY_SEARCH_PATHS = (
|
|
1568
|
+
"$(SRCROOT)/../SDK/libs",
|
|
1569
|
+
"$(PROJECT_DIR)",
|
|
1570
|
+
);
|
|
1571
|
+
MARKETING_VERSION = 1.0.0;
|
|
1572
|
+
OTHER_LDFLAGS = "-ObjC";
|
|
1573
|
+
PRODUCT_BUNDLE_IDENTIFIER = plus.H5ECA1DEE;
|
|
1574
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
1575
|
+
PROVISIONING_PROFILE = "";
|
|
1576
|
+
PROVISIONING_PROFILE_SPECIFIER = "";
|
|
1577
|
+
TARGETED_DEVICE_FAMILY = 1;
|
|
1578
|
+
VALID_ARCHS = "armv7 arm64 i386 x86_64";
|
|
1579
|
+
WRAPPER_EXTENSION = app;
|
|
1580
|
+
};
|
|
1581
|
+
name = Release;
|
|
1582
|
+
};
|
|
1583
|
+
/* End XCBuildConfiguration section */
|
|
1584
|
+
|
|
1585
|
+
/* Begin XCConfigurationList section */
|
|
1586
|
+
8EED6293198A1D13000A4449 /* Build configuration list for PBXProject "HBuilder-Hello" */ = {
|
|
1587
|
+
isa = XCConfigurationList;
|
|
1588
|
+
buildConfigurations = (
|
|
1589
|
+
8EED62CB198A1D14000A4449 /* Debug */,
|
|
1590
|
+
8EED62CC198A1D14000A4449 /* Release */,
|
|
1591
|
+
);
|
|
1592
|
+
defaultConfigurationIsVisible = 0;
|
|
1593
|
+
defaultConfigurationName = Release;
|
|
1594
|
+
};
|
|
1595
|
+
8EED62CD198A1D14000A4449 /* Build configuration list for PBXNativeTarget "HBuilder" */ = {
|
|
1596
|
+
isa = XCConfigurationList;
|
|
1597
|
+
buildConfigurations = (
|
|
1598
|
+
8EED62CE198A1D14000A4449 /* Debug */,
|
|
1599
|
+
8EED62CF198A1D14000A4449 /* Release */,
|
|
1600
|
+
);
|
|
1601
|
+
defaultConfigurationIsVisible = 0;
|
|
1602
|
+
defaultConfigurationName = Release;
|
|
1603
|
+
};
|
|
1604
|
+
/* End XCConfigurationList section */
|
|
1605
|
+
};
|
|
1606
|
+
rootObject = 8EED6290198A1D13000A4449 /* Project object */;
|
|
1607
|
+
}
|