Merge branch 'develop' into feat_devops
# Conflicts: # android/app/build.gradle # ios/Runner.xcodeproj/project.pbxproj
13
android/app/and_res_guard.gradle
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
apply plugin: 'AndResGuard'
|
||||||
|
|
||||||
|
andResGuard {
|
||||||
|
whiteList = [
|
||||||
|
"R.xml.jpush*",
|
||||||
|
"R.drawable.jpush*",
|
||||||
|
"R.layout.jpush*",
|
||||||
|
"R.layout.push*",
|
||||||
|
"R.string.jg*",
|
||||||
|
"R.style.MyDialogStyle",
|
||||||
|
"R.style.JPushTheme"
|
||||||
|
]
|
||||||
|
}
|
||||||
@ -26,26 +26,27 @@ apply plugin: 'com.android.application'
|
|||||||
apply plugin: 'kotlin-android'
|
apply plugin: 'kotlin-android'
|
||||||
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
|
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
|
||||||
apply plugin: 'com.android.application'
|
apply plugin: 'com.android.application'
|
||||||
apply plugin: 'android-junk-code'
|
//apply plugin: 'android-junk-code'
|
||||||
apply plugin: 'com.huawei.agconnect'
|
apply plugin: 'com.huawei.agconnect'
|
||||||
|
apply from: 'and_res_guard.gradle'
|
||||||
|
|
||||||
androidJunkCode {
|
//androidJunkCode {
|
||||||
variantConfig {
|
// variantConfig {
|
||||||
release {
|
// release {
|
||||||
//注意:这里的release是变体名称,如果没有设置productFlavors就是buildType名称,如果有设置productFlavors就是flavor+buildType,例如(freeRelease、proRelease)
|
// //注意:这里的release是变体名称,如果没有设置productFlavors就是buildType名称,如果有设置productFlavors就是flavor+buildType,例如(freeRelease、proRelease)
|
||||||
packageBase = "cn.hx.plugin.ui" //生成java类根包名
|
// packageBase = "cn.hx.plugin.ui" //生成java类根包名
|
||||||
packageCount = 30 //生成包数量
|
// packageCount = 30 //生成包数量
|
||||||
activityCountPerPackage = 3 //每个包下生成Activity类数量
|
// activityCountPerPackage = 3 //每个包下生成Activity类数量
|
||||||
excludeActivityJavaFile = false
|
// excludeActivityJavaFile = false
|
||||||
//是否排除生成Activity的Java文件,默认false(layout和写入AndroidManifest.xml还会执行),主要用于处理类似神策全埋点编译过慢问题
|
// //是否排除生成Activity的Java文件,默认false(layout和写入AndroidManifest.xml还会执行),主要用于处理类似神策全埋点编译过慢问题
|
||||||
otherCountPerPackage = 50 //每个包下生成其它类的数量
|
// otherCountPerPackage = 50 //每个包下生成其它类的数量
|
||||||
methodCountPerClass = 20 //每个类下生成方法数量
|
// methodCountPerClass = 20 //每个类下生成方法数量
|
||||||
resPrefix = "junk_" //生成的layout、drawable、string等资源名前缀
|
// resPrefix = "junk_" //生成的layout、drawable、string等资源名前缀
|
||||||
drawableCount = 300 //生成drawable资源数量
|
// drawableCount = 300 //生成drawable资源数量
|
||||||
stringCount = 300 //生成string数量
|
// stringCount = 300 //生成string数量
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
}
|
//}
|
||||||
|
|
||||||
android {
|
android {
|
||||||
signingConfigs {
|
signingConfigs {
|
||||||
@ -107,6 +108,7 @@ android {
|
|||||||
signingConfig signingConfigs.sky
|
signingConfig signingConfigs.sky
|
||||||
resValue "string", "app_name", "锁通通"
|
resValue "string", "app_name", "锁通通"
|
||||||
manifestPlaceholders.JPUSH_PKGNAME = "com.skychip.lock"
|
manifestPlaceholders.JPUSH_PKGNAME = "com.skychip.lock"
|
||||||
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules-sky.pro'
|
||||||
}
|
}
|
||||||
sky_pre {
|
sky_pre {
|
||||||
dimension "flavor-type"
|
dimension "flavor-type"
|
||||||
@ -126,6 +128,7 @@ android {
|
|||||||
signingConfig signingConfigs.xhj
|
signingConfig signingConfigs.xhj
|
||||||
resValue "string", "app_name", "星星锁"
|
resValue "string", "app_name", "星星锁"
|
||||||
manifestPlaceholders.JPUSH_PKGNAME = "com.xhjcn.lock"
|
manifestPlaceholders.JPUSH_PKGNAME = "com.xhjcn.lock"
|
||||||
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules-xhj.pro'
|
||||||
}
|
}
|
||||||
xhj_pre {
|
xhj_pre {
|
||||||
dimension "flavor-type"
|
dimension "flavor-type"
|
||||||
@ -170,9 +173,10 @@ android {
|
|||||||
// You can update the following values to match your application needs.
|
// You can update the following values to match your application needs.
|
||||||
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-build-configuration.
|
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-build-configuration.
|
||||||
minSdkVersion 25
|
minSdkVersion 25
|
||||||
targetSdkVersion 33
|
targetSdkVersion 34
|
||||||
versionCode flutterVersionCode.toInteger()
|
versionCode flutterVersionCode.toInteger()
|
||||||
versionName flutterVersionName
|
versionName flutterVersionName
|
||||||
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
||||||
|
|
||||||
// 为减少体积,使用不同架构分包发布编译选项 flutter build apk --split-per-abi
|
// 为减少体积,使用不同架构分包发布编译选项 flutter build apk --split-per-abi
|
||||||
// 所以需要禁用ndk在同一个个包中包含多个架构
|
// 所以需要禁用ndk在同一个个包中包含多个架构
|
||||||
@ -204,9 +208,9 @@ android {
|
|||||||
OPPO_APPKEY : "OP-47f668c9943248118502aa58d066393b",
|
OPPO_APPKEY : "OP-47f668c9943248118502aa58d066393b",
|
||||||
OPPO_APPID : "OP-31726001",
|
OPPO_APPID : "OP-31726001",
|
||||||
OPPO_APPSECRET: "OP-05723986bba64183a71530b496922450",
|
OPPO_APPSECRET: "OP-05723986bba64183a71530b496922450",
|
||||||
// VIVO_APPKEY : "vivo的APPKEY",
|
VIVO_APPKEY : "75fe8e570425b714e08d0390b14797cb",
|
||||||
// VIVO_APPID : "vivo的APPID",
|
VIVO_APPID : "105752244",
|
||||||
HONOR_APPID : "110798531",
|
HONOR_APPID : "104458196",
|
||||||
]
|
]
|
||||||
splits {
|
splits {
|
||||||
abi {
|
abi {
|
||||||
@ -238,8 +242,8 @@ android {
|
|||||||
// 高德地图导致release编译模式下应用闪退,根据:[高德地图在Debug模式下运行正常但是打Release包时则闪退解决办法](https://blog.csdn.net/weixin_39370093/article/details/109631210)
|
// 高德地图导致release编译模式下应用闪退,根据:[高德地图在Debug模式下运行正常但是打Release包时则闪退解决办法](https://blog.csdn.net/weixin_39370093/article/details/109631210)
|
||||||
// 为release模式设置混淆可以解决地图闪退问题
|
// 为release模式设置混淆可以解决地图闪退问题
|
||||||
// 真实的解决办法
|
// 真实的解决办法
|
||||||
minifyEnabled false
|
minifyEnabled true
|
||||||
shrinkResources false
|
shrinkResources true
|
||||||
productFlavors.local.signingConfig signingConfigs.debug
|
productFlavors.local.signingConfig signingConfigs.debug
|
||||||
productFlavors.dev.signingConfig signingConfigs.debug
|
productFlavors.dev.signingConfig signingConfigs.debug
|
||||||
productFlavors.pre.signingConfig signingConfigs.debug
|
productFlavors.pre.signingConfig signingConfigs.debug
|
||||||
@ -261,8 +265,9 @@ flutter {
|
|||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
||||||
implementation('com.amap.api:location:5.6.0')
|
// implementation('com.amap.api:location:5.6.0')
|
||||||
implementation('com.amap.api:3dmap:8.1.0')
|
// implementation('com.amap.api:3dmap:8.1.0')
|
||||||
|
implementation('com.amap.api:3dmap-location-search:latest.integration')
|
||||||
|
|
||||||
implementation 'cn.jiguang.sdk:jpush:5.2.3'
|
implementation 'cn.jiguang.sdk:jpush:5.2.3'
|
||||||
// 接入华为厂商
|
// 接入华为厂商
|
||||||
@ -279,5 +284,10 @@ dependencies {
|
|||||||
implementation 'com.google.code.gson:gson:2.6.2'
|
implementation 'com.google.code.gson:gson:2.6.2'
|
||||||
implementation 'commons-codec:commons-codec:1.6'
|
implementation 'commons-codec:commons-codec:1.6'
|
||||||
implementation 'androidx.annotation:annotation:1.1.0'
|
implementation 'androidx.annotation:annotation:1.1.0'
|
||||||
|
// 接入荣耀厂商
|
||||||
|
implementation 'cn.jiguang.sdk.plugin:honor:5.2.3'
|
||||||
|
//需要单独引入荣耀厂商 aar ,请下载官网 SDK 包并把 jpush-android-xxx-release/third-push/honor/libs 下的 aar 文件单独拷贝一份到应用 module/libs 下
|
||||||
|
// implementation(name: 'HiPushSDK-7.0.61.303', ext: 'aar')
|
||||||
|
//接入 VIVO 厂商
|
||||||
|
implementation 'cn.jiguang.sdk.plugin:vivo:5.2.3'
|
||||||
}
|
}
|
||||||
|
|||||||
BIN
android/app/libs/HiPushSDK-7.0.61.303.aar
Normal file
8000
android/app/proguard-dictionary-1il
Normal file
8000
android/app/proguard-dictionary-chinese
Normal file
650
android/app/proguard-dictionary-symbol
Normal file
@ -0,0 +1,650 @@
|
|||||||
|
ʻ
|
||||||
|
ʼ
|
||||||
|
ʽ
|
||||||
|
ʾ
|
||||||
|
ʿ
|
||||||
|
ˆ
|
||||||
|
ˈ
|
||||||
|
ˉ
|
||||||
|
ˊ
|
||||||
|
ˋ
|
||||||
|
ˎ
|
||||||
|
ˏ
|
||||||
|
ˑ
|
||||||
|
י
|
||||||
|
ـ
|
||||||
|
ٴ
|
||||||
|
ᐧ
|
||||||
|
ᴵ
|
||||||
|
ᵎ
|
||||||
|
ᵔ
|
||||||
|
ᵢ
|
||||||
|
ⁱ
|
||||||
|
ﹳ
|
||||||
|
ﹶ
|
||||||
|
゙
|
||||||
|
゙゙
|
||||||
|
ᐧᐧ
|
||||||
|
ᴵᴵ
|
||||||
|
ʻʻ
|
||||||
|
ʽʽ
|
||||||
|
ʼʼ
|
||||||
|
ʿʿ
|
||||||
|
ʾʾ
|
||||||
|
ــ
|
||||||
|
ˆˆ
|
||||||
|
ˉˉ
|
||||||
|
ˈˈ
|
||||||
|
ˋˋ
|
||||||
|
ˊˊ
|
||||||
|
ˏˏ
|
||||||
|
ˎˎ
|
||||||
|
ˑˑ
|
||||||
|
ᵔᵔ
|
||||||
|
יי
|
||||||
|
ᵎᵎ
|
||||||
|
ᵢᵢ
|
||||||
|
ⁱⁱ
|
||||||
|
ﹳﹳ
|
||||||
|
ٴٴ
|
||||||
|
ﹶﹶ
|
||||||
|
ʻʼ
|
||||||
|
ʻʽ
|
||||||
|
ʻʾ
|
||||||
|
ʻʿ
|
||||||
|
ʻˆ
|
||||||
|
ʻˈ
|
||||||
|
ʻˉ
|
||||||
|
ʻˊ
|
||||||
|
ʻˋ
|
||||||
|
ʻˎ
|
||||||
|
ʻˏ
|
||||||
|
ʻˑ
|
||||||
|
ʻי
|
||||||
|
ʻـ
|
||||||
|
ʻٴ
|
||||||
|
ʻᐧ
|
||||||
|
ʻᴵ
|
||||||
|
ʻᵎ
|
||||||
|
ʻᵔ
|
||||||
|
ʻᵢ
|
||||||
|
ʻⁱ
|
||||||
|
ʻﹳ
|
||||||
|
ʻﹶ
|
||||||
|
ʻ゙
|
||||||
|
ʼʻ
|
||||||
|
ʼʽ
|
||||||
|
ʼʾ
|
||||||
|
ʼʿ
|
||||||
|
ʼˆ
|
||||||
|
ʼˈ
|
||||||
|
ʼˉ
|
||||||
|
ʼˊ
|
||||||
|
ʼˋ
|
||||||
|
ʼˎ
|
||||||
|
ʼˏ
|
||||||
|
ʼˑ
|
||||||
|
ʼי
|
||||||
|
ʼـ
|
||||||
|
ʼٴ
|
||||||
|
ʼᐧ
|
||||||
|
ʼᴵ
|
||||||
|
ʼᵎ
|
||||||
|
ʼᵔ
|
||||||
|
ʼᵢ
|
||||||
|
ʼⁱ
|
||||||
|
ʼﹳ
|
||||||
|
ʼﹶ
|
||||||
|
ʼ゙
|
||||||
|
ʽʻ
|
||||||
|
ʽʼ
|
||||||
|
ʽʾ
|
||||||
|
ʽʿ
|
||||||
|
ʽˆ
|
||||||
|
ʽˈ
|
||||||
|
ʽˉ
|
||||||
|
ʽˊ
|
||||||
|
ʽˋ
|
||||||
|
ʽˎ
|
||||||
|
ʽˏ
|
||||||
|
ʽˑ
|
||||||
|
ʽי
|
||||||
|
ʽـ
|
||||||
|
ʽٴ
|
||||||
|
ʽᐧ
|
||||||
|
ʽᴵ
|
||||||
|
ʽᵎ
|
||||||
|
ʽᵔ
|
||||||
|
ʽᵢ
|
||||||
|
ʽⁱ
|
||||||
|
ʽﹳ
|
||||||
|
ʽﹶ
|
||||||
|
ʽ゙
|
||||||
|
ʾʻ
|
||||||
|
ʾʼ
|
||||||
|
ʾʽ
|
||||||
|
ʾʿ
|
||||||
|
ʾˆ
|
||||||
|
ʾˈ
|
||||||
|
ʾˉ
|
||||||
|
ʾˊ
|
||||||
|
ʾˋ
|
||||||
|
ʾˎ
|
||||||
|
ʾˏ
|
||||||
|
ʾˑ
|
||||||
|
ʾי
|
||||||
|
ʾـ
|
||||||
|
ʾٴ
|
||||||
|
ʾᐧ
|
||||||
|
ʾᴵ
|
||||||
|
ʾᵎ
|
||||||
|
ʾᵔ
|
||||||
|
ʾᵢ
|
||||||
|
ʾⁱ
|
||||||
|
ʾﹳ
|
||||||
|
ʾﹶ
|
||||||
|
ʾ゙
|
||||||
|
ʿʻ
|
||||||
|
ʿʼ
|
||||||
|
ʿʽ
|
||||||
|
ʿʾ
|
||||||
|
ʿˆ
|
||||||
|
ʿˈ
|
||||||
|
ʿˉ
|
||||||
|
ʿˊ
|
||||||
|
ʿˋ
|
||||||
|
ʿˎ
|
||||||
|
ʿˏ
|
||||||
|
ʿˑ
|
||||||
|
ʿי
|
||||||
|
ʿـ
|
||||||
|
ʿٴ
|
||||||
|
ʿᐧ
|
||||||
|
ʿᴵ
|
||||||
|
ʿᵎ
|
||||||
|
ʿᵔ
|
||||||
|
ʿᵢ
|
||||||
|
ʿⁱ
|
||||||
|
ʿﹳ
|
||||||
|
ʿﹶ
|
||||||
|
ʿ゙
|
||||||
|
ˆʻ
|
||||||
|
ˆʼ
|
||||||
|
ˆʽ
|
||||||
|
ˆʾ
|
||||||
|
ˆʿ
|
||||||
|
ˆˈ
|
||||||
|
ˆˉ
|
||||||
|
ˆˊ
|
||||||
|
ˆˋ
|
||||||
|
ˆˎ
|
||||||
|
ˆˏ
|
||||||
|
ˆˑ
|
||||||
|
ˆי
|
||||||
|
ˆـ
|
||||||
|
ˆٴ
|
||||||
|
ˆᐧ
|
||||||
|
ˆᴵ
|
||||||
|
ˆᵎ
|
||||||
|
ˆᵔ
|
||||||
|
ˆᵢ
|
||||||
|
ˆⁱ
|
||||||
|
ˆﹳ
|
||||||
|
ˆﹶ
|
||||||
|
ˆ゙
|
||||||
|
ˈʻ
|
||||||
|
ˈʼ
|
||||||
|
ˈʽ
|
||||||
|
ˈʾ
|
||||||
|
ˈʿ
|
||||||
|
ˈˆ
|
||||||
|
ˈˉ
|
||||||
|
ˈˊ
|
||||||
|
ˈˋ
|
||||||
|
ˈˎ
|
||||||
|
ˈˏ
|
||||||
|
ˈˑ
|
||||||
|
ˈי
|
||||||
|
ˈـ
|
||||||
|
ˈٴ
|
||||||
|
ˈᐧ
|
||||||
|
ˈᴵ
|
||||||
|
ˈᵎ
|
||||||
|
ˈᵔ
|
||||||
|
ˈᵢ
|
||||||
|
ˈⁱ
|
||||||
|
ˈﹳ
|
||||||
|
ˈﹶ
|
||||||
|
ˈ゙
|
||||||
|
ˉʻ
|
||||||
|
ˉʼ
|
||||||
|
ˉʽ
|
||||||
|
ˉʾ
|
||||||
|
ˉʿ
|
||||||
|
ˉˆ
|
||||||
|
ˉˈ
|
||||||
|
ˉˊ
|
||||||
|
ˉˋ
|
||||||
|
ˉˎ
|
||||||
|
ˉˏ
|
||||||
|
ˉˑ
|
||||||
|
ˉי
|
||||||
|
ˉـ
|
||||||
|
ˉٴ
|
||||||
|
ˉᐧ
|
||||||
|
ˉᴵ
|
||||||
|
ˉᵎ
|
||||||
|
ˉᵔ
|
||||||
|
ˉᵢ
|
||||||
|
ˉⁱ
|
||||||
|
ˉﹳ
|
||||||
|
ˉﹶ
|
||||||
|
ˉ゙
|
||||||
|
ˊʻ
|
||||||
|
ˊʼ
|
||||||
|
ˊʽ
|
||||||
|
ˊʾ
|
||||||
|
ˊʿ
|
||||||
|
ˊˆ
|
||||||
|
ˊˈ
|
||||||
|
ˊˉ
|
||||||
|
ˊˋ
|
||||||
|
ˊˎ
|
||||||
|
ˊˏ
|
||||||
|
ˊˑ
|
||||||
|
ˊי
|
||||||
|
ˊـ
|
||||||
|
ˊٴ
|
||||||
|
ˊᐧ
|
||||||
|
ˊᴵ
|
||||||
|
ˊᵎ
|
||||||
|
ˊᵔ
|
||||||
|
ˊᵢ
|
||||||
|
ˊⁱ
|
||||||
|
ˊﹳ
|
||||||
|
ˊﹶ
|
||||||
|
ˊ゙
|
||||||
|
ˋʻ
|
||||||
|
ˋʼ
|
||||||
|
ˋʽ
|
||||||
|
ˋʾ
|
||||||
|
ˋʿ
|
||||||
|
ˋˆ
|
||||||
|
ˋˈ
|
||||||
|
ˋˉ
|
||||||
|
ˋˊ
|
||||||
|
ˋˎ
|
||||||
|
ˋˏ
|
||||||
|
ˋˑ
|
||||||
|
ˋי
|
||||||
|
ˋـ
|
||||||
|
ˋٴ
|
||||||
|
ˋᐧ
|
||||||
|
ˋᴵ
|
||||||
|
ˋᵎ
|
||||||
|
ˋᵔ
|
||||||
|
ˋᵢ
|
||||||
|
ˋⁱ
|
||||||
|
ˋﹳ
|
||||||
|
ˋﹶ
|
||||||
|
ˋ゙
|
||||||
|
ˎʻ
|
||||||
|
ˎʼ
|
||||||
|
ˎʽ
|
||||||
|
ˎʾ
|
||||||
|
ˎʿ
|
||||||
|
ˎˆ
|
||||||
|
ˎˈ
|
||||||
|
ˎˉ
|
||||||
|
ˎˊ
|
||||||
|
ˎˋ
|
||||||
|
ˎˏ
|
||||||
|
ˎˑ
|
||||||
|
ˎי
|
||||||
|
ˎـ
|
||||||
|
ˎٴ
|
||||||
|
ˎᐧ
|
||||||
|
ˎᴵ
|
||||||
|
ˎᵎ
|
||||||
|
ˎᵔ
|
||||||
|
ˎᵢ
|
||||||
|
ˎⁱ
|
||||||
|
ˎﹳ
|
||||||
|
ˎﹶ
|
||||||
|
ˎ゙
|
||||||
|
ˏʻ
|
||||||
|
ˏʼ
|
||||||
|
ˏʽ
|
||||||
|
ˏʾ
|
||||||
|
ˏʿ
|
||||||
|
ˏˆ
|
||||||
|
ˏˈ
|
||||||
|
ˏˉ
|
||||||
|
ˏˊ
|
||||||
|
ˏˋ
|
||||||
|
ˏˎ
|
||||||
|
ˏˑ
|
||||||
|
ˏי
|
||||||
|
ˏـ
|
||||||
|
ˏٴ
|
||||||
|
ˏᐧ
|
||||||
|
ˏᴵ
|
||||||
|
ˏᵎ
|
||||||
|
ˏᵔ
|
||||||
|
ˏᵢ
|
||||||
|
ˏⁱ
|
||||||
|
ˏﹳ
|
||||||
|
ˏﹶ
|
||||||
|
ˏ゙
|
||||||
|
ˑʻ
|
||||||
|
ˑʼ
|
||||||
|
ˑʽ
|
||||||
|
ˑʾ
|
||||||
|
ˑʿ
|
||||||
|
ˑˆ
|
||||||
|
ˑˈ
|
||||||
|
ˑˉ
|
||||||
|
ˑˊ
|
||||||
|
ˑˋ
|
||||||
|
ˑˎ
|
||||||
|
ˑˏ
|
||||||
|
ˑי
|
||||||
|
ˑـ
|
||||||
|
ˑٴ
|
||||||
|
ˑᐧ
|
||||||
|
ˑᴵ
|
||||||
|
ˑᵎ
|
||||||
|
ˑᵔ
|
||||||
|
ˑᵢ
|
||||||
|
ˑⁱ
|
||||||
|
ˑﹳ
|
||||||
|
ˑﹶ
|
||||||
|
ˑ゙
|
||||||
|
יʻ
|
||||||
|
יʼ
|
||||||
|
יʽ
|
||||||
|
יʾ
|
||||||
|
יʿ
|
||||||
|
יˆ
|
||||||
|
יˈ
|
||||||
|
יˉ
|
||||||
|
יˊ
|
||||||
|
יˋ
|
||||||
|
יˎ
|
||||||
|
יˏ
|
||||||
|
יˑ
|
||||||
|
יـ
|
||||||
|
יٴ
|
||||||
|
יᐧ
|
||||||
|
יᴵ
|
||||||
|
יᵎ
|
||||||
|
יᵔ
|
||||||
|
יᵢ
|
||||||
|
יⁱ
|
||||||
|
יﹳ
|
||||||
|
יﹶ
|
||||||
|
י゙
|
||||||
|
ـʻ
|
||||||
|
ـʼ
|
||||||
|
ـʽ
|
||||||
|
ـʾ
|
||||||
|
ـʿ
|
||||||
|
ـˆ
|
||||||
|
ـˈ
|
||||||
|
ـˉ
|
||||||
|
ـˊ
|
||||||
|
ـˋ
|
||||||
|
ـˎ
|
||||||
|
ـˏ
|
||||||
|
ـˑ
|
||||||
|
ـי
|
||||||
|
ـٴ
|
||||||
|
ـᐧ
|
||||||
|
ـᴵ
|
||||||
|
ـᵎ
|
||||||
|
ـᵔ
|
||||||
|
ـᵢ
|
||||||
|
ـⁱ
|
||||||
|
ـﹳ
|
||||||
|
ـﹶ
|
||||||
|
ـ゙
|
||||||
|
ٴʻ
|
||||||
|
ٴʼ
|
||||||
|
ٴʽ
|
||||||
|
ٴʾ
|
||||||
|
ٴʿ
|
||||||
|
ٴˆ
|
||||||
|
ٴˈ
|
||||||
|
ٴˉ
|
||||||
|
ٴˊ
|
||||||
|
ٴˋ
|
||||||
|
ٴˎ
|
||||||
|
ٴˏ
|
||||||
|
ٴˑ
|
||||||
|
ٴי
|
||||||
|
ٴـ
|
||||||
|
ٴᐧ
|
||||||
|
ٴᴵ
|
||||||
|
ٴᵎ
|
||||||
|
ٴᵔ
|
||||||
|
ٴᵢ
|
||||||
|
ٴⁱ
|
||||||
|
ٴﹳ
|
||||||
|
ٴﹶ
|
||||||
|
ٴ゙
|
||||||
|
ᐧʻ
|
||||||
|
ᐧʼ
|
||||||
|
ᐧʽ
|
||||||
|
ᐧʾ
|
||||||
|
ᐧʿ
|
||||||
|
ᐧˆ
|
||||||
|
ᐧˈ
|
||||||
|
ᐧˉ
|
||||||
|
ᐧˊ
|
||||||
|
ᐧˋ
|
||||||
|
ᐧˎ
|
||||||
|
ᐧˏ
|
||||||
|
ᐧˑ
|
||||||
|
ᐧי
|
||||||
|
ᐧـ
|
||||||
|
ᐧٴ
|
||||||
|
ᐧᴵ
|
||||||
|
ᐧᵎ
|
||||||
|
ᐧᵔ
|
||||||
|
ᐧᵢ
|
||||||
|
ᐧⁱ
|
||||||
|
ᐧﹳ
|
||||||
|
ᐧﹶ
|
||||||
|
ᐧ゙
|
||||||
|
ᴵʻ
|
||||||
|
ᴵʼ
|
||||||
|
ᴵʽ
|
||||||
|
ᴵʾ
|
||||||
|
ᴵʿ
|
||||||
|
ᴵˆ
|
||||||
|
ᴵˈ
|
||||||
|
ᴵˉ
|
||||||
|
ᴵˊ
|
||||||
|
ᴵˋ
|
||||||
|
ᴵˎ
|
||||||
|
ᴵˏ
|
||||||
|
ᴵˑ
|
||||||
|
ᴵי
|
||||||
|
ᴵـ
|
||||||
|
ᴵٴ
|
||||||
|
ᴵᐧ
|
||||||
|
ᴵᵎ
|
||||||
|
ᴵᵔ
|
||||||
|
ᴵᵢ
|
||||||
|
ᴵⁱ
|
||||||
|
ᴵﹳ
|
||||||
|
ᴵﹶ
|
||||||
|
ᴵ゙
|
||||||
|
ᵎʻ
|
||||||
|
ᵎʼ
|
||||||
|
ᵎʽ
|
||||||
|
ᵎʾ
|
||||||
|
ᵎʿ
|
||||||
|
ᵎˆ
|
||||||
|
ᵎˈ
|
||||||
|
ᵎˉ
|
||||||
|
ᵎˊ
|
||||||
|
ᵎˋ
|
||||||
|
ᵎˎ
|
||||||
|
ᵎˏ
|
||||||
|
ᵎˑ
|
||||||
|
ᵎי
|
||||||
|
ᵎـ
|
||||||
|
ᵎٴ
|
||||||
|
ᵎᐧ
|
||||||
|
ᵎᴵ
|
||||||
|
ᵎᵔ
|
||||||
|
ᵎᵢ
|
||||||
|
ᵎⁱ
|
||||||
|
ᵎﹳ
|
||||||
|
ᵎﹶ
|
||||||
|
ᵎ゙
|
||||||
|
ᵔʻ
|
||||||
|
ᵔʼ
|
||||||
|
ᵔʽ
|
||||||
|
ᵔʾ
|
||||||
|
ᵔʿ
|
||||||
|
ᵔˆ
|
||||||
|
ᵔˈ
|
||||||
|
ᵔˉ
|
||||||
|
ᵔˊ
|
||||||
|
ᵔˋ
|
||||||
|
ᵔˎ
|
||||||
|
ᵔˏ
|
||||||
|
ᵔˑ
|
||||||
|
ᵔי
|
||||||
|
ᵔـ
|
||||||
|
ᵔٴ
|
||||||
|
ᵔᐧ
|
||||||
|
ᵔᴵ
|
||||||
|
ᵔᵎ
|
||||||
|
ᵔᵢ
|
||||||
|
ᵔⁱ
|
||||||
|
ᵔﹳ
|
||||||
|
ᵔﹶ
|
||||||
|
ᵔ゙
|
||||||
|
ᵢʻ
|
||||||
|
ᵢʼ
|
||||||
|
ᵢʽ
|
||||||
|
ᵢʾ
|
||||||
|
ᵢʿ
|
||||||
|
ᵢˆ
|
||||||
|
ᵢˈ
|
||||||
|
ᵢˉ
|
||||||
|
ᵢˊ
|
||||||
|
ᵢˋ
|
||||||
|
ᵢˎ
|
||||||
|
ᵢˏ
|
||||||
|
ᵢˑ
|
||||||
|
ᵢי
|
||||||
|
ᵢـ
|
||||||
|
ᵢٴ
|
||||||
|
ᵢᐧ
|
||||||
|
ᵢᴵ
|
||||||
|
ᵢᵎ
|
||||||
|
ᵢᵔ
|
||||||
|
ᵢⁱ
|
||||||
|
ᵢﹳ
|
||||||
|
ᵢﹶ
|
||||||
|
ᵢ゙
|
||||||
|
ⁱʻ
|
||||||
|
ⁱʼ
|
||||||
|
ⁱʽ
|
||||||
|
ⁱʾ
|
||||||
|
ⁱʿ
|
||||||
|
ⁱˆ
|
||||||
|
ⁱˈ
|
||||||
|
ⁱˉ
|
||||||
|
ⁱˊ
|
||||||
|
ⁱˋ
|
||||||
|
ⁱˎ
|
||||||
|
ⁱˏ
|
||||||
|
ⁱˑ
|
||||||
|
ⁱי
|
||||||
|
ⁱـ
|
||||||
|
ⁱٴ
|
||||||
|
ⁱᐧ
|
||||||
|
ⁱᴵ
|
||||||
|
ⁱᵎ
|
||||||
|
ⁱᵔ
|
||||||
|
ⁱᵢ
|
||||||
|
ⁱﹳ
|
||||||
|
ⁱﹶ
|
||||||
|
ⁱ゙
|
||||||
|
ﹳʻ
|
||||||
|
ﹳʼ
|
||||||
|
ﹳʽ
|
||||||
|
ﹳʾ
|
||||||
|
ﹳʿ
|
||||||
|
ﹳˆ
|
||||||
|
ﹳˈ
|
||||||
|
ﹳˉ
|
||||||
|
ﹳˊ
|
||||||
|
ﹳˋ
|
||||||
|
ﹳˎ
|
||||||
|
ﹳˏ
|
||||||
|
ﹳˑ
|
||||||
|
ﹳי
|
||||||
|
ﹳـ
|
||||||
|
ﹳٴ
|
||||||
|
ﹳᐧ
|
||||||
|
ﹳᴵ
|
||||||
|
ﹳᵎ
|
||||||
|
ﹳᵔ
|
||||||
|
ﹳᵢ
|
||||||
|
ﹳⁱ
|
||||||
|
ﹳﹶ
|
||||||
|
ﹳ゙
|
||||||
|
ﹶʻ
|
||||||
|
ﹶʼ
|
||||||
|
ﹶʽ
|
||||||
|
ﹶʾ
|
||||||
|
ﹶʿ
|
||||||
|
ﹶˆ
|
||||||
|
ﹶˈ
|
||||||
|
ﹶˉ
|
||||||
|
ﹶˊ
|
||||||
|
ﹶˋ
|
||||||
|
ﹶˎ
|
||||||
|
ﹶˏ
|
||||||
|
ﹶˑ
|
||||||
|
ﹶי
|
||||||
|
ﹶـ
|
||||||
|
ﹶٴ
|
||||||
|
ﹶᐧ
|
||||||
|
ﹶᴵ
|
||||||
|
ﹶᵎ
|
||||||
|
ﹶᵔ
|
||||||
|
ﹶᵢ
|
||||||
|
ﹶⁱ
|
||||||
|
ﹶﹳ
|
||||||
|
ﹶ゙
|
||||||
|
゙ʻ
|
||||||
|
゙ʼ
|
||||||
|
゙ʽ
|
||||||
|
゙ʾ
|
||||||
|
゙ʿ
|
||||||
|
゙ˆ
|
||||||
|
゙ˈ
|
||||||
|
゙ˉ
|
||||||
|
゙ˊ
|
||||||
|
゙ˋ
|
||||||
|
゙ˎ
|
||||||
|
゙ˏ
|
||||||
|
゙ˑ
|
||||||
|
゙י
|
||||||
|
゙ـ
|
||||||
|
゙ٴ
|
||||||
|
゙ᐧ
|
||||||
|
゙ᴵ
|
||||||
|
゙ᵎ
|
||||||
|
゙ᵔ
|
||||||
|
゙ᵢ
|
||||||
|
゙ⁱ
|
||||||
|
゙ﹳ
|
||||||
|
゙ﹶ
|
||||||
131
android/app/proguard-rules-sky.pro
Normal file
@ -0,0 +1,131 @@
|
|||||||
|
-obfuscationdictionary ./proguard-dictionary-1il
|
||||||
|
-classobfuscationdictionary ./proguard-dictionary-1il
|
||||||
|
-packageobfuscationdictionary ./proguard-dictionary-1il
|
||||||
|
|
||||||
|
#Flutter Wrapper
|
||||||
|
-keep class io.flutter.app.** { *; }
|
||||||
|
-keep class io.flutter.plugin.** { *; }
|
||||||
|
-keep class io.flutter.util.** { *; }
|
||||||
|
-keep class io.flutter.view.** { *; }
|
||||||
|
-keep class io.flutter.** { *; }
|
||||||
|
-keep class io.flutter.plugins.** { *; }
|
||||||
|
|
||||||
|
-keepattributes Signature
|
||||||
|
-keepattributes InnerClasses,EnclosingMethod
|
||||||
|
-keepattributes *Annotation*
|
||||||
|
-keepattributes SourceFile,LineNumberTable
|
||||||
|
|
||||||
|
-dontwarn com.hwangjr.rxbus.**
|
||||||
|
-keep class com.hwangjr.rxbus.** { *; }
|
||||||
|
-keepattributes *Annotation*
|
||||||
|
|
||||||
|
# Retain generic type information for use by reflection by converters and adapters.
|
||||||
|
-keepattributes Signature
|
||||||
|
# Retain declared checked exceptions for use by a Proxy instance.
|
||||||
|
-keepattributes Exceptions
|
||||||
|
|
||||||
|
-dontwarn com.jcraft.jzlib.**
|
||||||
|
-keep class com.jcraft.jzlib.** { *;}
|
||||||
|
|
||||||
|
-dontwarn sun.misc.**
|
||||||
|
-keep class sun.misc.** { *;}
|
||||||
|
|
||||||
|
-dontwarn retrofit2.**
|
||||||
|
-keep class retrofit2.** { *;}
|
||||||
|
|
||||||
|
-dontwarn io.reactivex.**
|
||||||
|
-keep class io.reactivex.** { *;}
|
||||||
|
|
||||||
|
-dontwarn sun.security.**
|
||||||
|
-keep class sun.security.** { *; }
|
||||||
|
|
||||||
|
-dontwarn com.google.**
|
||||||
|
-keep class com.google.** { *;}
|
||||||
|
|
||||||
|
-keep public class android.net.http.SslError
|
||||||
|
-keep public class android.webkit.WebViewClient
|
||||||
|
|
||||||
|
-dontwarn android.webkit.WebView
|
||||||
|
-dontwarn android.net.http.SslError
|
||||||
|
-dontwarn android.webkit.WebViewClient
|
||||||
|
|
||||||
|
-dontwarn android.support.**
|
||||||
|
|
||||||
|
-dontwarn org.apache.**
|
||||||
|
-keep class org.apache.** { *;}
|
||||||
|
|
||||||
|
-dontwarn okhttp3.**
|
||||||
|
-keep class okhttp3.** { *;}
|
||||||
|
-keep interface okhttp3.** { *; }
|
||||||
|
|
||||||
|
-dontwarn okio.**
|
||||||
|
-keep class okio.** { *;}
|
||||||
|
|
||||||
|
-keep class **JNI* {*;}
|
||||||
|
|
||||||
|
-keep class com.lib.flutter_blue_plus.* { *; }
|
||||||
|
|
||||||
|
-ignorewarnings
|
||||||
|
-keepattributes *Annotation*
|
||||||
|
-keepattributes Exceptions
|
||||||
|
-keepattributes InnerClasses
|
||||||
|
-keepattributes Signature
|
||||||
|
-keepattributes SourceFile,LineNumberTable
|
||||||
|
-keep class com.huawei.hianalytics.**{*;}
|
||||||
|
-keep class com.huawei.updatesdk.**{*;}
|
||||||
|
-keep class com.huawei.hms.**{*;}
|
||||||
|
|
||||||
|
|
||||||
|
-keep public class * extends android.app.Service
|
||||||
|
-keep class com.heytap.msp.** { *;}
|
||||||
|
|
||||||
|
-dontwarn com.vivo.push.**
|
||||||
|
-keep class com.vivo.push.**{*; }
|
||||||
|
-keep class com.vivo.vms.**{*; }
|
||||||
|
|
||||||
|
|
||||||
|
-dontoptimize
|
||||||
|
-dontpreverify
|
||||||
|
-dontwarn cn.jpush.**
|
||||||
|
-keep class cn.jpush.** { *; }
|
||||||
|
-keep class * extends cn.jpush.android.service.JPushMessageService { *; }
|
||||||
|
-dontwarn cn.jiguang.**
|
||||||
|
-keep class cn.jiguang.** { *; }
|
||||||
|
|
||||||
|
-dontwarn com.google.**
|
||||||
|
-keep class com.google.gson.** {*;}
|
||||||
|
-keep class com.google.protobuf.** {*;}
|
||||||
|
|
||||||
|
-keep class com.amap.api.maps.** { *; }
|
||||||
|
-keep class com.autonavi.** { *; }
|
||||||
|
-keep class com.amap.api.trace.** {*; }
|
||||||
|
|
||||||
|
-keep class com.amap.api.location.** {*; }
|
||||||
|
-keep class com.amap.api.fence.** { *; }
|
||||||
|
-keep class com.loc.** { *; }
|
||||||
|
-keep class com.amap.flutter.location.** { *; }
|
||||||
|
-keep class com.autonavi.aps.amapapi.model.** { *; }
|
||||||
|
|
||||||
|
-keep class com.amap.api.services.** { *; }
|
||||||
|
|
||||||
|
-keep class com.amap.api.maps2d.** { *; }
|
||||||
|
-keep class com.amap.api.mapcore2d.** { *; }
|
||||||
|
|
||||||
|
-keep class com.amap.api.navi.** { *; }
|
||||||
|
|
||||||
|
|
||||||
|
-keep class com.alipay.deviceid.** { *; }
|
||||||
|
-keep class net.security.device.api.** {*;}
|
||||||
|
-keep class org.json.** { *;}
|
||||||
|
-keep class com.alibaba.fastjson.** {*;}
|
||||||
|
-keep class com.alibaba.sdk.android.oss.** { *; }
|
||||||
|
|
||||||
|
-dontwarn okio.**
|
||||||
|
-dontwarn org.apache.commons.codec.binary.**
|
||||||
|
|
||||||
|
-keepclassmembers,allowobfuscation class * {
|
||||||
|
@com.alibaba.fastjson.annotation.JSONField <fields>;
|
||||||
|
}
|
||||||
|
|
||||||
|
-keep class com.tencent.mm.sdk.** { *; }
|
||||||
|
-keep class com.tencent.mm.opensdk.** { *; }
|
||||||
131
android/app/proguard-rules-xhj.pro
Normal file
@ -0,0 +1,131 @@
|
|||||||
|
-obfuscationdictionary ./proguard-dictionary-symbol
|
||||||
|
-classobfuscationdictionary ./proguard-dictionary-symbol
|
||||||
|
-packageobfuscationdictionary ./proguard-dictionary-symbol
|
||||||
|
|
||||||
|
#Flutter Wrapper
|
||||||
|
-keep class io.flutter.app.** { *; }
|
||||||
|
-keep class io.flutter.plugin.** { *; }
|
||||||
|
-keep class io.flutter.util.** { *; }
|
||||||
|
-keep class io.flutter.view.** { *; }
|
||||||
|
-keep class io.flutter.** { *; }
|
||||||
|
-keep class io.flutter.plugins.** { *; }
|
||||||
|
|
||||||
|
-keepattributes Signature
|
||||||
|
-keepattributes InnerClasses,EnclosingMethod
|
||||||
|
-keepattributes *Annotation*
|
||||||
|
-keepattributes SourceFile,LineNumberTable
|
||||||
|
|
||||||
|
-dontwarn com.hwangjr.rxbus.**
|
||||||
|
-keep class com.hwangjr.rxbus.** { *; }
|
||||||
|
-keepattributes *Annotation*
|
||||||
|
|
||||||
|
# Retain generic type information for use by reflection by converters and adapters.
|
||||||
|
-keepattributes Signature
|
||||||
|
# Retain declared checked exceptions for use by a Proxy instance.
|
||||||
|
-keepattributes Exceptions
|
||||||
|
|
||||||
|
-dontwarn com.jcraft.jzlib.**
|
||||||
|
-keep class com.jcraft.jzlib.** { *;}
|
||||||
|
|
||||||
|
-dontwarn sun.misc.**
|
||||||
|
-keep class sun.misc.** { *;}
|
||||||
|
|
||||||
|
-dontwarn retrofit2.**
|
||||||
|
-keep class retrofit2.** { *;}
|
||||||
|
|
||||||
|
-dontwarn io.reactivex.**
|
||||||
|
-keep class io.reactivex.** { *;}
|
||||||
|
|
||||||
|
-dontwarn sun.security.**
|
||||||
|
-keep class sun.security.** { *; }
|
||||||
|
|
||||||
|
-dontwarn com.google.**
|
||||||
|
-keep class com.google.** { *;}
|
||||||
|
|
||||||
|
-keep public class android.net.http.SslError
|
||||||
|
-keep public class android.webkit.WebViewClient
|
||||||
|
|
||||||
|
-dontwarn android.webkit.WebView
|
||||||
|
-dontwarn android.net.http.SslError
|
||||||
|
-dontwarn android.webkit.WebViewClient
|
||||||
|
|
||||||
|
-dontwarn android.support.**
|
||||||
|
|
||||||
|
-dontwarn org.apache.**
|
||||||
|
-keep class org.apache.** { *;}
|
||||||
|
|
||||||
|
-dontwarn okhttp3.**
|
||||||
|
-keep class okhttp3.** { *;}
|
||||||
|
-keep interface okhttp3.** { *; }
|
||||||
|
|
||||||
|
-dontwarn okio.**
|
||||||
|
-keep class okio.** { *;}
|
||||||
|
|
||||||
|
-keep class **JNI* {*;}
|
||||||
|
|
||||||
|
-keep class com.lib.flutter_blue_plus.* { *; }
|
||||||
|
|
||||||
|
-ignorewarnings
|
||||||
|
-keepattributes *Annotation*
|
||||||
|
-keepattributes Exceptions
|
||||||
|
-keepattributes InnerClasses
|
||||||
|
-keepattributes Signature
|
||||||
|
-keepattributes SourceFile,LineNumberTable
|
||||||
|
-keep class com.huawei.hianalytics.**{*;}
|
||||||
|
-keep class com.huawei.updatesdk.**{*;}
|
||||||
|
-keep class com.huawei.hms.**{*;}
|
||||||
|
|
||||||
|
|
||||||
|
-keep public class * extends android.app.Service
|
||||||
|
-keep class com.heytap.msp.** { *;}
|
||||||
|
|
||||||
|
-dontwarn com.vivo.push.**
|
||||||
|
-keep class com.vivo.push.**{*; }
|
||||||
|
-keep class com.vivo.vms.**{*; }
|
||||||
|
|
||||||
|
|
||||||
|
-dontoptimize
|
||||||
|
-dontpreverify
|
||||||
|
-dontwarn cn.jpush.**
|
||||||
|
-keep class cn.jpush.** { *; }
|
||||||
|
-keep class * extends cn.jpush.android.service.JPushMessageService { *; }
|
||||||
|
-dontwarn cn.jiguang.**
|
||||||
|
-keep class cn.jiguang.** { *; }
|
||||||
|
|
||||||
|
-dontwarn com.google.**
|
||||||
|
-keep class com.google.gson.** {*;}
|
||||||
|
-keep class com.google.protobuf.** {*;}
|
||||||
|
|
||||||
|
-keep class com.amap.api.maps.** { *; }
|
||||||
|
-keep class com.autonavi.** { *; }
|
||||||
|
-keep class com.amap.api.trace.** {*; }
|
||||||
|
|
||||||
|
-keep class com.amap.api.location.** {*; }
|
||||||
|
-keep class com.amap.api.fence.** { *; }
|
||||||
|
-keep class com.loc.** { *; }
|
||||||
|
-keep class com.amap.flutter.location.** { *; }
|
||||||
|
-keep class com.autonavi.aps.amapapi.model.** { *; }
|
||||||
|
|
||||||
|
-keep class com.amap.api.services.** { *; }
|
||||||
|
|
||||||
|
-keep class com.amap.api.maps2d.** { *; }
|
||||||
|
-keep class com.amap.api.mapcore2d.** { *; }
|
||||||
|
|
||||||
|
-keep class com.amap.api.navi.** { *; }
|
||||||
|
|
||||||
|
|
||||||
|
-keep class com.alipay.deviceid.** { *; }
|
||||||
|
-keep class net.security.device.api.** {*;}
|
||||||
|
-keep class org.json.** { *;}
|
||||||
|
-keep class com.alibaba.fastjson.** {*;}
|
||||||
|
-keep class com.alibaba.sdk.android.oss.** { *; }
|
||||||
|
|
||||||
|
-dontwarn okio.**
|
||||||
|
-dontwarn org.apache.commons.codec.binary.**
|
||||||
|
|
||||||
|
-keepclassmembers,allowobfuscation class * {
|
||||||
|
@com.alibaba.fastjson.annotation.JSONField <fields>;
|
||||||
|
}
|
||||||
|
|
||||||
|
-keep class com.tencent.mm.sdk.** { *; }
|
||||||
|
-keep class com.tencent.mm.opensdk.** { *; }
|
||||||
131
android/app/proguard-rules.pro
vendored
Normal file
@ -0,0 +1,131 @@
|
|||||||
|
-obfuscationdictionary ./proguard-dictionary-chinese
|
||||||
|
-classobfuscationdictionary ./proguard-dictionary-chinese
|
||||||
|
-packageobfuscationdictionary ./proguard-dictionary-chinese
|
||||||
|
|
||||||
|
#Flutter Wrapper
|
||||||
|
-keep class io.flutter.app.** { *; }
|
||||||
|
-keep class io.flutter.plugin.** { *; }
|
||||||
|
-keep class io.flutter.util.** { *; }
|
||||||
|
-keep class io.flutter.view.** { *; }
|
||||||
|
-keep class io.flutter.** { *; }
|
||||||
|
-keep class io.flutter.plugins.** { *; }
|
||||||
|
|
||||||
|
-keepattributes Signature
|
||||||
|
-keepattributes InnerClasses,EnclosingMethod
|
||||||
|
-keepattributes *Annotation*
|
||||||
|
-keepattributes SourceFile,LineNumberTable
|
||||||
|
|
||||||
|
-dontwarn com.hwangjr.rxbus.**
|
||||||
|
-keep class com.hwangjr.rxbus.** { *; }
|
||||||
|
-keepattributes *Annotation*
|
||||||
|
|
||||||
|
# Retain generic type information for use by reflection by converters and adapters.
|
||||||
|
-keepattributes Signature
|
||||||
|
# Retain declared checked exceptions for use by a Proxy instance.
|
||||||
|
-keepattributes Exceptions
|
||||||
|
|
||||||
|
-dontwarn com.jcraft.jzlib.**
|
||||||
|
-keep class com.jcraft.jzlib.** { *;}
|
||||||
|
|
||||||
|
-dontwarn sun.misc.**
|
||||||
|
-keep class sun.misc.** { *;}
|
||||||
|
|
||||||
|
-dontwarn retrofit2.**
|
||||||
|
-keep class retrofit2.** { *;}
|
||||||
|
|
||||||
|
-dontwarn io.reactivex.**
|
||||||
|
-keep class io.reactivex.** { *;}
|
||||||
|
|
||||||
|
-dontwarn sun.security.**
|
||||||
|
-keep class sun.security.** { *; }
|
||||||
|
|
||||||
|
-dontwarn com.google.**
|
||||||
|
-keep class com.google.** { *;}
|
||||||
|
|
||||||
|
-keep public class android.net.http.SslError
|
||||||
|
-keep public class android.webkit.WebViewClient
|
||||||
|
|
||||||
|
-dontwarn android.webkit.WebView
|
||||||
|
-dontwarn android.net.http.SslError
|
||||||
|
-dontwarn android.webkit.WebViewClient
|
||||||
|
|
||||||
|
-dontwarn android.support.**
|
||||||
|
|
||||||
|
-dontwarn org.apache.**
|
||||||
|
-keep class org.apache.** { *;}
|
||||||
|
|
||||||
|
-dontwarn okhttp3.**
|
||||||
|
-keep class okhttp3.** { *;}
|
||||||
|
-keep interface okhttp3.** { *; }
|
||||||
|
|
||||||
|
-dontwarn okio.**
|
||||||
|
-keep class okio.** { *;}
|
||||||
|
|
||||||
|
-keep class **JNI* {*;}
|
||||||
|
|
||||||
|
-keep class com.lib.flutter_blue_plus.* { *; }
|
||||||
|
|
||||||
|
-ignorewarnings
|
||||||
|
-keepattributes *Annotation*
|
||||||
|
-keepattributes Exceptions
|
||||||
|
-keepattributes InnerClasses
|
||||||
|
-keepattributes Signature
|
||||||
|
-keepattributes SourceFile,LineNumberTable
|
||||||
|
-keep class com.huawei.hianalytics.**{*;}
|
||||||
|
-keep class com.huawei.updatesdk.**{*;}
|
||||||
|
-keep class com.huawei.hms.**{*;}
|
||||||
|
|
||||||
|
|
||||||
|
-keep public class * extends android.app.Service
|
||||||
|
-keep class com.heytap.msp.** { *;}
|
||||||
|
|
||||||
|
-dontwarn com.vivo.push.**
|
||||||
|
-keep class com.vivo.push.**{*; }
|
||||||
|
-keep class com.vivo.vms.**{*; }
|
||||||
|
|
||||||
|
|
||||||
|
-dontoptimize
|
||||||
|
-dontpreverify
|
||||||
|
-dontwarn cn.jpush.**
|
||||||
|
-keep class cn.jpush.** { *; }
|
||||||
|
-keep class * extends cn.jpush.android.service.JPushMessageService { *; }
|
||||||
|
-dontwarn cn.jiguang.**
|
||||||
|
-keep class cn.jiguang.** { *; }
|
||||||
|
|
||||||
|
-dontwarn com.google.**
|
||||||
|
-keep class com.google.gson.** {*;}
|
||||||
|
-keep class com.google.protobuf.** {*;}
|
||||||
|
|
||||||
|
-keep class com.amap.api.maps.** { *; }
|
||||||
|
-keep class com.autonavi.** { *; }
|
||||||
|
-keep class com.amap.api.trace.** {*; }
|
||||||
|
|
||||||
|
-keep class com.amap.api.location.** {*; }
|
||||||
|
-keep class com.amap.api.fence.** { *; }
|
||||||
|
-keep class com.loc.** { *; }
|
||||||
|
-keep class com.amap.flutter.location.** { *; }
|
||||||
|
-keep class com.autonavi.aps.amapapi.model.** { *; }
|
||||||
|
|
||||||
|
-keep class com.amap.api.services.** { *; }
|
||||||
|
|
||||||
|
-keep class com.amap.api.maps2d.** { *; }
|
||||||
|
-keep class com.amap.api.mapcore2d.** { *; }
|
||||||
|
|
||||||
|
-keep class com.amap.api.navi.** { *; }
|
||||||
|
|
||||||
|
|
||||||
|
-keep class com.alipay.deviceid.** { *; }
|
||||||
|
-keep class net.security.device.api.** {*;}
|
||||||
|
-keep class org.json.** { *;}
|
||||||
|
-keep class com.alibaba.fastjson.** {*;}
|
||||||
|
-keep class com.alibaba.sdk.android.oss.** { *; }
|
||||||
|
|
||||||
|
-dontwarn okio.**
|
||||||
|
-dontwarn org.apache.commons.codec.binary.**
|
||||||
|
|
||||||
|
-keepclassmembers,allowobfuscation class * {
|
||||||
|
@com.alibaba.fastjson.annotation.JSONField <fields>;
|
||||||
|
}
|
||||||
|
|
||||||
|
-keep class com.tencent.mm.sdk.** { *; }
|
||||||
|
-keep class com.tencent.mm.opensdk.** { *; }
|
||||||
@ -56,6 +56,8 @@
|
|||||||
android:name="android.permission.QUERY_ALL_PACKAGES"
|
android:name="android.permission.QUERY_ALL_PACKAGES"
|
||||||
tools:node="remove" />
|
tools:node="remove" />
|
||||||
|
|
||||||
|
<uses-permission android:name="com.hihonor.permission.sec.SDK_LAUNCHER" />
|
||||||
|
|
||||||
<application
|
<application
|
||||||
android:name="android.app.Application"
|
android:name="android.app.Application"
|
||||||
android:icon="@mipmap/ic_launcher"
|
android:icon="@mipmap/ic_launcher"
|
||||||
@ -96,6 +98,46 @@
|
|||||||
<meta-data
|
<meta-data
|
||||||
android:name="OPPO_APPSECRET"
|
android:name="OPPO_APPSECRET"
|
||||||
android:value="OP-05723986bba64183a71530b496922450" />
|
android:value="OP-05723986bba64183a71530b496922450" />
|
||||||
|
|
||||||
|
|
||||||
|
<meta-data
|
||||||
|
android:name="com.huawei.hms.client.appid"
|
||||||
|
android:value="110798531" />
|
||||||
|
<meta-data
|
||||||
|
android:name="com.huawei.hms.client.cpid"
|
||||||
|
android:value="1406555529261648640" />
|
||||||
|
<meta-data
|
||||||
|
android:name="OPPO_APPKEY"
|
||||||
|
android:value="OP-47f668c9943248118502aa58d066393b" />
|
||||||
|
|
||||||
|
<meta-data
|
||||||
|
android:name="OPPO_APPID"
|
||||||
|
android:value="OP-31726001" />
|
||||||
|
|
||||||
|
<meta-data
|
||||||
|
android:name="OPPO_APPSECRET"
|
||||||
|
android:value="OP-05723986bba64183a71530b496922450" />
|
||||||
|
|
||||||
|
|
||||||
|
<service
|
||||||
|
android:name="com.huawei.hms.push.HmsMessageService"
|
||||||
|
android:exported="true">
|
||||||
|
<intent-filter>
|
||||||
|
<action android:name="com.huawei.push.action.MESSAGING_EVENT" />
|
||||||
|
</intent-filter>
|
||||||
|
</service>
|
||||||
|
|
||||||
|
|
||||||
|
<receiver
|
||||||
|
android:name="com.huawei.hms.support.api.push.PushReceiver"
|
||||||
|
android:exported="true">
|
||||||
|
<intent-filter>
|
||||||
|
<action android:name="com.huawei.android.push.intent.REGISTRATION" />
|
||||||
|
<action android:name="com.huawei.android.push.intent.RECEIVE" />
|
||||||
|
<category android:name="${applicationId}" />
|
||||||
|
</intent-filter>
|
||||||
|
</receiver>
|
||||||
|
|
||||||
<!-- 配置定位Service -->
|
<!-- 配置定位Service -->
|
||||||
<service android:name="com.amap.api.location.APSService" />
|
<service android:name="com.amap.api.location.APSService" />
|
||||||
<!-- since JPushv3.6.8 ,oppov2.1.0 oppo 核心功能-->
|
<!-- since JPushv3.6.8 ,oppov2.1.0 oppo 核心功能-->
|
||||||
|
|||||||
BIN
android/app/src/sky/res/mipmap-hdpi/ic_launcher.png
Executable file → Normal file
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 3.8 KiB |
BIN
android/app/src/sky/res/mipmap-mdpi/ic_launcher.png
Executable file → Normal file
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 2.5 KiB |
BIN
android/app/src/sky/res/mipmap-xhdpi/ic_launcher.png
Executable file → Normal file
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 5.8 KiB |
BIN
android/app/src/sky/res/mipmap-xxhdpi/ic_launcher.png
Executable file → Normal file
|
Before Width: | Height: | Size: 4.7 KiB After Width: | Height: | Size: 12 KiB |
BIN
android/app/src/sky/res/mipmap-xxxhdpi/ic_launcher.png
Executable file → Normal file
|
Before Width: | Height: | Size: 6.5 KiB After Width: | Height: | Size: 27 KiB |
@ -21,7 +21,8 @@ buildscript {
|
|||||||
// hms,若不集成华为厂商通道,可直接跳过
|
// hms,若不集成华为厂商通道,可直接跳过
|
||||||
classpath 'com.huawei.agconnect:agcp:1.6.0.300'
|
classpath 'com.huawei.agconnect:agcp:1.6.0.300'
|
||||||
// 垃圾代码生成器
|
// 垃圾代码生成器
|
||||||
classpath "com.github.qq549631030:android-junk-code:1.3.3"
|
// classpath "com.github.qq549631030:android-junk-code:1.3.3"
|
||||||
|
classpath'com.tencent.mm:AndResGuard-gradle-plugin:1.2.21'
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,4 @@
|
|||||||
org.gradle.jvmargs=-Xmx1536M
|
org.gradle.jvmargs=-Xmx1536M
|
||||||
android.useAndroidX=true
|
android.useAndroidX=true
|
||||||
android.enableJetifier=true
|
android.enableJetifier=false
|
||||||
|
android.enableR8 = true
|
||||||
BIN
images/icon_main_sky_1024.png
Executable file → Normal file
|
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 214 KiB |
BIN
images/mine/icon_mine_amazon.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
@ -1,6 +1,6 @@
|
|||||||
#include "Generated.xcconfig"
|
#include "Generated.xcconfig"
|
||||||
|
|
||||||
FLUTTER_TARGET=lib/main_sky_full.dart
|
FLUTTER_TARGET=lib/main_sky_lite.dart
|
||||||
ASSET_PREFIX=sky
|
ASSET_PREFIX=sky
|
||||||
BUNDLE_NAME=锁通通
|
BUNDLE_NAME=锁通通
|
||||||
BUNDLE_DISPLAY_NAME=锁通通
|
BUNDLE_DISPLAY_NAME=锁通通
|
||||||
|
|||||||
@ -9,7 +9,6 @@
|
|||||||
/* Begin PBXBuildFile section */
|
/* Begin PBXBuildFile section */
|
||||||
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
|
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
|
||||||
25B2A1422F9A2CCCBBCBBB97 /* skyRelease.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 35F02D170492750B437D6AB6 /* skyRelease.xcconfig */; };
|
25B2A1422F9A2CCCBBCBBB97 /* skyRelease.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 35F02D170492750B437D6AB6 /* skyRelease.xcconfig */; };
|
||||||
3364C3F42B0C902100AA5ABC /* lcokStarMain.png in Resources */ = {isa = PBXBuildFile; fileRef = 3364C3F32B0C902100AA5ABC /* lcokStarMain.png */; };
|
|
||||||
370C09E26790814FD1F6465F /* xhjLaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 6A6F5C86239927252C06A16A /* xhjLaunchScreen.storyboard */; };
|
370C09E26790814FD1F6465F /* xhjLaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 6A6F5C86239927252C06A16A /* xhjLaunchScreen.storyboard */; };
|
||||||
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
|
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
|
||||||
44827AC367F1EAB110A97660 /* preRelease.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = D501929EA2295683612A3AD8 /* preRelease.xcconfig */; };
|
44827AC367F1EAB110A97660 /* preRelease.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = D501929EA2295683612A3AD8 /* preRelease.xcconfig */; };
|
||||||
@ -17,73 +16,12 @@
|
|||||||
805C745A7C79091E65665B96 /* devDebug.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 0D02C18E16914A687A4A1AC2 /* devDebug.xcconfig */; };
|
805C745A7C79091E65665B96 /* devDebug.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 0D02C18E16914A687A4A1AC2 /* devDebug.xcconfig */; };
|
||||||
8297E4102AE75AC500E886FA /* XSFlutterManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8297E40E2AE75AC500E886FA /* XSFlutterManager.m */; };
|
8297E4102AE75AC500E886FA /* XSFlutterManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8297E40E2AE75AC500E886FA /* XSFlutterManager.m */; };
|
||||||
8297E49B2AE7974700E886FA /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 8297E49A2AE7974700E886FA /* AppDelegate.m */; };
|
8297E49B2AE7974700E886FA /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 8297E49A2AE7974700E886FA /* AppDelegate.m */; };
|
||||||
|
82B657622C91665F0079121C /* Info_sky.plist in Resources */ = {isa = PBXBuildFile; fileRef = 82B657602C91665E0079121C /* Info_sky.plist */; };
|
||||||
|
82B657632C91665F0079121C /* Info_xhj.plist in Resources */ = {isa = PBXBuildFile; fileRef = 82B657612C91665E0079121C /* Info_xhj.plist */; };
|
||||||
|
82B657652C917F950079121C /* Info_pre.plist in Resources */ = {isa = PBXBuildFile; fileRef = 82B657642C917F950079121C /* Info_pre.plist */; };
|
||||||
|
82B657672C919BDF0079121C /* launchImage_xhj.png in Resources */ = {isa = PBXBuildFile; fileRef = 82B657662C919BDF0079121C /* launchImage_xhj.png */; };
|
||||||
|
82B657692C919DA70079121C /* launchImage_sky.png in Resources */ = {isa = PBXBuildFile; fileRef = 82B657682C919DA60079121C /* launchImage_sky.png */; };
|
||||||
82C026542AE8AC6D0011FE6A /* AliyunEmasServices-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 82C026532AE8AC6D0011FE6A /* AliyunEmasServices-Info.plist */; };
|
82C026542AE8AC6D0011FE6A /* AliyunEmasServices-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 82C026532AE8AC6D0011FE6A /* AliyunEmasServices-Info.plist */; };
|
||||||
82C026982AEB6C050011FE6A /* add.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C026562AEB6C050011FE6A /* add.png */; };
|
|
||||||
82C026992AEB6C050011FE6A /* ic_vd_mic_on.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C026572AEB6C050011FE6A /* ic_vd_mic_on.png */; };
|
|
||||||
82C0269A2AEB6C050011FE6A /* watch.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C026582AEB6C050011FE6A /* watch.png */; };
|
|
||||||
82C0269B2AEB6C050011FE6A /* call_menu.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C026592AEB6C050011FE6A /* call_menu.png */; };
|
|
||||||
82C0269C2AEB6C050011FE6A /* call_del_on.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C0265A2AEB6C050011FE6A /* call_del_on.png */; };
|
|
||||||
82C0269D2AEB6C050011FE6A /* hangup.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C0265B2AEB6C050011FE6A /* hangup.png */; };
|
|
||||||
82C0269E2AEB6C050011FE6A /* save_photo.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C0265C2AEB6C050011FE6A /* save_photo.png */; };
|
|
||||||
82C0269F2AEB6C050011FE6A /* show_head_toast_bg.9.PNG in Resources */ = {isa = PBXBuildFile; fileRef = 82C0265D2AEB6C050011FE6A /* show_head_toast_bg.9.PNG */; };
|
|
||||||
82C026A02AEB6C050011FE6A /* search_bar_edit_normal.9.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C0265E2AEB6C050011FE6A /* search_bar_edit_normal.9.png */; };
|
|
||||||
82C026A12AEB6C050011FE6A /* icon_close.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C0265F2AEB6C050011FE6A /* icon_close.png */; };
|
|
||||||
82C026A22AEB6C050011FE6A /* swicth_minus_off.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C026602AEB6C050011FE6A /* swicth_minus_off.png */; };
|
|
||||||
82C026A32AEB6C050011FE6A /* sidebar_background.xml in Resources */ = {isa = PBXBuildFile; fileRef = 82C026612AEB6C050011FE6A /* sidebar_background.xml */; };
|
|
||||||
82C026A42AEB6C050011FE6A /* hf_on.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C026622AEB6C050011FE6A /* hf_on.png */; };
|
|
||||||
82C026A52AEB6C050011FE6A /* unlock_on2.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C026632AEB6C050011FE6A /* unlock_on2.png */; };
|
|
||||||
82C026A62AEB6C050011FE6A /* vcontacts.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C026642AEB6C050011FE6A /* vcontacts.png */; };
|
|
||||||
82C026A72AEB6C050011FE6A /* zoom.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C026652AEB6C050011FE6A /* zoom.png */; };
|
|
||||||
82C026A82AEB6C050011FE6A /* key.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C026662AEB6C050011FE6A /* key.png */; };
|
|
||||||
82C026A92AEB6C050011FE6A /* lock2.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C026672AEB6C050011FE6A /* lock2.png */; };
|
|
||||||
82C026AA2AEB6C050011FE6A /* lock.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C026682AEB6C050011FE6A /* lock.png */; };
|
|
||||||
82C026AB2AEB6C050011FE6A /* vcall.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C026692AEB6C050011FE6A /* vcall.png */; };
|
|
||||||
82C026AC2AEB6C050011FE6A /* spk.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C0266A2AEB6C050011FE6A /* spk.png */; };
|
|
||||||
82C026AD2AEB6C050011FE6A /* blank.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C0266B2AEB6C050011FE6A /* blank.png */; };
|
|
||||||
82C026AE2AEB6C050011FE6A /* clear.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C0266C2AEB6C050011FE6A /* clear.png */; };
|
|
||||||
82C026AF2AEB6C050011FE6A /* rotate.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C0266D2AEB6C050011FE6A /* rotate.png */; };
|
|
||||||
82C026B02AEB6C050011FE6A /* call_call_on.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C0266E2AEB6C050011FE6A /* call_call_on.png */; };
|
|
||||||
82C026B12AEB6C050011FE6A /* call_del.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C0266F2AEB6C050011FE6A /* call_del.png */; };
|
|
||||||
82C026B22AEB6C050011FE6A /* swicth_minus_on.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C026702AEB6C050011FE6A /* swicth_minus_on.png */; };
|
|
||||||
82C026B32AEB6C050011FE6A /* lock_on.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C026712AEB6C050011FE6A /* lock_on.png */; };
|
|
||||||
82C026B42AEB6C050011FE6A /* vrecord_on.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C026722AEB6C050011FE6A /* vrecord_on.png */; };
|
|
||||||
82C026B52AEB6C050011FE6A /* search_bar_icon_normal.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C026732AEB6C050011FE6A /* search_bar_icon_normal.png */; };
|
|
||||||
82C026B62AEB6C050011FE6A /* vrecord.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C026742AEB6C050011FE6A /* vrecord.png */; };
|
|
||||||
82C026B72AEB6C050011FE6A /* swicth_off.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C026752AEB6C050011FE6A /* swicth_off.png */; };
|
|
||||||
82C026B82AEB6C050011FE6A /* test.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 82C026762AEB6C050011FE6A /* test.jpg */; };
|
|
||||||
82C026B92AEB6C050011FE6A /* back3.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C026772AEB6C050011FE6A /* back3.png */; };
|
|
||||||
82C026BA2AEB6C050011FE6A /* logo3.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C026782AEB6C050011FE6A /* logo3.png */; };
|
|
||||||
82C026BB2AEB6C050011FE6A /* menu.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C026792AEB6C050011FE6A /* menu.png */; };
|
|
||||||
82C026BC2AEB6C050011FE6A /* logo.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C0267A2AEB6C050011FE6A /* logo.png */; };
|
|
||||||
82C026BD2AEB6C050011FE6A /* logo2.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C0267B2AEB6C050011FE6A /* logo2.png */; };
|
|
||||||
82C026BE2AEB6C050011FE6A /* vcontacts2.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C0267C2AEB6C050011FE6A /* vcontacts2.png */; };
|
|
||||||
82C026BF2AEB6C050011FE6A /* swicth_add_on.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C0267D2AEB6C050011FE6A /* swicth_add_on.png */; };
|
|
||||||
82C026C02AEB6C050011FE6A /* add2.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C0267E2AEB6C050011FE6A /* add2.png */; };
|
|
||||||
82C026C12AEB6C050011FE6A /* swicth_on.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C0267F2AEB6C050011FE6A /* swicth_on.png */; };
|
|
||||||
82C026C22AEB6C050011FE6A /* shop_loading.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C026802AEB6C050011FE6A /* shop_loading.png */; };
|
|
||||||
82C026C32AEB6C050011FE6A /* call_menu_on.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C026812AEB6C050011FE6A /* call_menu_on.png */; };
|
|
||||||
82C026C42AEB6C050011FE6A /* vcall_on.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C026822AEB6C050011FE6A /* vcall_on.png */; };
|
|
||||||
82C026C52AEB6C050011FE6A /* wave1.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C026832AEB6C050011FE6A /* wave1.png */; };
|
|
||||||
82C026C62AEB6C050011FE6A /* ic_launcher.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C026842AEB6C050011FE6A /* ic_launcher.png */; };
|
|
||||||
82C026C72AEB6C050011FE6A /* key_on.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C026852AEB6C050011FE6A /* key_on.png */; };
|
|
||||||
82C026C82AEB6C050011FE6A /* hf.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C026862AEB6C050011FE6A /* hf.png */; };
|
|
||||||
82C026C92AEB6C050011FE6A /* wave3.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C026872AEB6C050011FE6A /* wave3.png */; };
|
|
||||||
82C026CA2AEB6C050011FE6A /* wave2.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C026882AEB6C050011FE6A /* wave2.png */; };
|
|
||||||
82C026CB2AEB6C050011FE6A /* ic_vd_mic_off.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C026892AEB6C050011FE6A /* ic_vd_mic_off.png */; };
|
|
||||||
82C026CC2AEB6C050011FE6A /* split3.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C0268A2AEB6C050011FE6A /* split3.png */; };
|
|
||||||
82C026CD2AEB6C050011FE6A /* emotionstore_progresscancelbtn.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C0268B2AEB6C050011FE6A /* emotionstore_progresscancelbtn.png */; };
|
|
||||||
82C026CE2AEB6C050011FE6A /* split.JPG in Resources */ = {isa = PBXBuildFile; fileRef = 82C0268C2AEB6C050011FE6A /* split.JPG */; };
|
|
||||||
82C026CF2AEB6C050011FE6A /* swicth_add_off.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C0268D2AEB6C050011FE6A /* swicth_add_off.png */; };
|
|
||||||
82C026D02AEB6C050011FE6A /* search_bar_edit_pressed.9.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C0268E2AEB6C050011FE6A /* search_bar_edit_pressed.9.png */; };
|
|
||||||
82C026D12AEB6C050011FE6A /* setting.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C0268F2AEB6C050011FE6A /* setting.png */; };
|
|
||||||
82C026D22AEB6C050011FE6A /* back.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C026902AEB6C050011FE6A /* back.png */; };
|
|
||||||
82C026D32AEB6C050011FE6A /* thumb_on.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C026912AEB6C050011FE6A /* thumb_on.png */; };
|
|
||||||
82C026D42AEB6C050011FE6A /* split4.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C026922AEB6C050011FE6A /* split4.png */; };
|
|
||||||
82C026D52AEB6C050011FE6A /* thumb.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C026932AEB6C050011FE6A /* thumb.png */; };
|
|
||||||
82C026D62AEB6C050011FE6A /* vcontacts_on.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C026942AEB6C050011FE6A /* vcontacts_on.png */; };
|
|
||||||
82C026D72AEB6C050011FE6A /* mic.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C026952AEB6C050011FE6A /* mic.png */; };
|
|
||||||
82C026D82AEB6C050011FE6A /* icon_key.png in Resources */ = {isa = PBXBuildFile; fileRef = 82C026962AEB6C050011FE6A /* icon_key.png */; };
|
|
||||||
82C026D92AEB6C050011FE6A /* bg.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 82C026972AEB6C050011FE6A /* bg.jpg */; };
|
|
||||||
82F1ECDB2BE8B7B500265D59 /* DTFIdentityManager.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 82F1ECD12BE8B7B400265D59 /* DTFIdentityManager.framework */; };
|
82F1ECDB2BE8B7B500265D59 /* DTFIdentityManager.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 82F1ECD12BE8B7B400265D59 /* DTFIdentityManager.framework */; };
|
||||||
82F1ECDC2BE8B7B500265D59 /* deviceiOS.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 82F1ECD22BE8B7B500265D59 /* deviceiOS.framework */; };
|
82F1ECDC2BE8B7B500265D59 /* deviceiOS.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 82F1ECD22BE8B7B500265D59 /* deviceiOS.framework */; };
|
||||||
82F1ECDD2BE8B7B500265D59 /* DTFUtility.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 82F1ECD32BE8B7B500265D59 /* DTFUtility.framework */; };
|
82F1ECDD2BE8B7B500265D59 /* DTFUtility.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 82F1ECD32BE8B7B500265D59 /* DTFUtility.framework */; };
|
||||||
@ -126,7 +64,6 @@
|
|||||||
97C146F31CF9000F007C117D /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 97C146F21CF9000F007C117D /* main.m */; };
|
97C146F31CF9000F007C117D /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 97C146F21CF9000F007C117D /* main.m */; };
|
||||||
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
|
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
|
||||||
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
|
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
|
||||||
97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; };
|
|
||||||
99FEBCD8A8244C3EE22C5A18 /* preLaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 7EA577AFEEE10224BA96C569 /* preLaunchScreen.storyboard */; };
|
99FEBCD8A8244C3EE22C5A18 /* preLaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 7EA577AFEEE10224BA96C569 /* preLaunchScreen.storyboard */; };
|
||||||
9C453CBFAB0703DFA762337C /* preProfile.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = B7AA7A6DD927B38E32E2C889 /* preProfile.xcconfig */; };
|
9C453CBFAB0703DFA762337C /* preProfile.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = B7AA7A6DD927B38E32E2C889 /* preProfile.xcconfig */; };
|
||||||
ADF948FD9EE8BD1AE71F0984 /* xhjDebug.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 853610C00A55CC450C2FF839 /* xhjDebug.xcconfig */; };
|
ADF948FD9EE8BD1AE71F0984 /* xhjDebug.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 853610C00A55CC450C2FF839 /* xhjDebug.xcconfig */; };
|
||||||
@ -159,7 +96,6 @@
|
|||||||
|
|
||||||
/* Begin PBXFileReference section */
|
/* Begin PBXFileReference section */
|
||||||
0420903B2C0EEAA50073E654 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Main.strings"; sourceTree = "<group>"; };
|
0420903B2C0EEAA50073E654 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Main.strings"; sourceTree = "<group>"; };
|
||||||
0420903C2C0EEAA60073E654 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/LaunchScreen.strings"; sourceTree = "<group>"; };
|
|
||||||
04BFC4482BCFE05100688FCA /* RunnerRelease-xhj.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = "RunnerRelease-xhj.entitlements"; sourceTree = "<group>"; };
|
04BFC4482BCFE05100688FCA /* RunnerRelease-xhj.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = "RunnerRelease-xhj.entitlements"; sourceTree = "<group>"; };
|
||||||
0BEB3ADCCEC961E2916B9004 /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = "<group>"; };
|
0BEB3ADCCEC961E2916B9004 /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = "<group>"; };
|
||||||
0D02C18E16914A687A4A1AC2 /* devDebug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = devDebug.xcconfig; path = Flutter/devDebug.xcconfig; sourceTree = "<group>"; };
|
0D02C18E16914A687A4A1AC2 /* devDebug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = devDebug.xcconfig; path = Flutter/devDebug.xcconfig; sourceTree = "<group>"; };
|
||||||
@ -171,7 +107,6 @@
|
|||||||
22D858E988707FF26E068457 /* Pods-Runner.debug-xhj.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug-xhj.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug-xhj.xcconfig"; sourceTree = "<group>"; };
|
22D858E988707FF26E068457 /* Pods-Runner.debug-xhj.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug-xhj.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug-xhj.xcconfig"; sourceTree = "<group>"; };
|
||||||
265F8968B3CDB02494B21491 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = "<group>"; };
|
265F8968B3CDB02494B21491 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = "<group>"; };
|
||||||
295A8AFEEC4806105FAA13B5 /* Pods-Runner.release-dev.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release-dev.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release-dev.xcconfig"; sourceTree = "<group>"; };
|
295A8AFEEC4806105FAA13B5 /* Pods-Runner.release-dev.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release-dev.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release-dev.xcconfig"; sourceTree = "<group>"; };
|
||||||
3364C3F32B0C902100AA5ABC /* lcokStarMain.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = lcokStarMain.png; sourceTree = "<group>"; };
|
|
||||||
33BF41252A96174D009D92E2 /* Runner.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = Runner.entitlements; sourceTree = "<group>"; };
|
33BF41252A96174D009D92E2 /* Runner.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = Runner.entitlements; sourceTree = "<group>"; };
|
||||||
35F02D170492750B437D6AB6 /* skyRelease.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = skyRelease.xcconfig; path = Flutter/skyRelease.xcconfig; sourceTree = "<group>"; };
|
35F02D170492750B437D6AB6 /* skyRelease.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = skyRelease.xcconfig; path = Flutter/skyRelease.xcconfig; sourceTree = "<group>"; };
|
||||||
383F65C3166F78B1A1470A4E /* preDebug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = preDebug.xcconfig; path = Flutter/preDebug.xcconfig; sourceTree = "<group>"; };
|
383F65C3166F78B1A1470A4E /* preDebug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = preDebug.xcconfig; path = Flutter/preDebug.xcconfig; sourceTree = "<group>"; };
|
||||||
@ -190,74 +125,13 @@
|
|||||||
8297E40F2AE75AC500E886FA /* XSFlutterManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XSFlutterManager.h; sourceTree = "<group>"; };
|
8297E40F2AE75AC500E886FA /* XSFlutterManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XSFlutterManager.h; sourceTree = "<group>"; };
|
||||||
8297E4992AE7974700E886FA /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
|
8297E4992AE7974700E886FA /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
|
||||||
8297E49A2AE7974700E886FA /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
|
8297E49A2AE7974700E886FA /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
|
||||||
|
82B657602C91665E0079121C /* Info_sky.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info_sky.plist; sourceTree = "<group>"; };
|
||||||
|
82B657612C91665E0079121C /* Info_xhj.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info_xhj.plist; sourceTree = "<group>"; };
|
||||||
|
82B657642C917F950079121C /* Info_pre.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info_pre.plist; sourceTree = "<group>"; };
|
||||||
|
82B657662C919BDF0079121C /* launchImage_xhj.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = launchImage_xhj.png; sourceTree = "<group>"; };
|
||||||
|
82B657682C919DA60079121C /* launchImage_sky.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = launchImage_sky.png; sourceTree = "<group>"; };
|
||||||
82BD91212ADA72360018E523 /* CommonDefine.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CommonDefine.h; sourceTree = "<group>"; };
|
82BD91212ADA72360018E523 /* CommonDefine.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CommonDefine.h; sourceTree = "<group>"; };
|
||||||
82C026532AE8AC6D0011FE6A /* AliyunEmasServices-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "AliyunEmasServices-Info.plist"; sourceTree = "<group>"; };
|
82C026532AE8AC6D0011FE6A /* AliyunEmasServices-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "AliyunEmasServices-Info.plist"; sourceTree = "<group>"; };
|
||||||
82C026562AEB6C050011FE6A /* add.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = add.png; sourceTree = "<group>"; };
|
|
||||||
82C026572AEB6C050011FE6A /* ic_vd_mic_on.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ic_vd_mic_on.png; sourceTree = "<group>"; };
|
|
||||||
82C026582AEB6C050011FE6A /* watch.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = watch.png; sourceTree = "<group>"; };
|
|
||||||
82C026592AEB6C050011FE6A /* call_menu.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = call_menu.png; sourceTree = "<group>"; };
|
|
||||||
82C0265A2AEB6C050011FE6A /* call_del_on.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = call_del_on.png; sourceTree = "<group>"; };
|
|
||||||
82C0265B2AEB6C050011FE6A /* hangup.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = hangup.png; sourceTree = "<group>"; };
|
|
||||||
82C0265C2AEB6C050011FE6A /* save_photo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = save_photo.png; sourceTree = "<group>"; };
|
|
||||||
82C0265D2AEB6C050011FE6A /* show_head_toast_bg.9.PNG */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = show_head_toast_bg.9.PNG; sourceTree = "<group>"; };
|
|
||||||
82C0265E2AEB6C050011FE6A /* search_bar_edit_normal.9.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = search_bar_edit_normal.9.png; sourceTree = "<group>"; };
|
|
||||||
82C0265F2AEB6C050011FE6A /* icon_close.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = icon_close.png; sourceTree = "<group>"; };
|
|
||||||
82C026602AEB6C050011FE6A /* swicth_minus_off.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = swicth_minus_off.png; sourceTree = "<group>"; };
|
|
||||||
82C026612AEB6C050011FE6A /* sidebar_background.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = sidebar_background.xml; sourceTree = "<group>"; };
|
|
||||||
82C026622AEB6C050011FE6A /* hf_on.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = hf_on.png; sourceTree = "<group>"; };
|
|
||||||
82C026632AEB6C050011FE6A /* unlock_on2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = unlock_on2.png; sourceTree = "<group>"; };
|
|
||||||
82C026642AEB6C050011FE6A /* vcontacts.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = vcontacts.png; sourceTree = "<group>"; };
|
|
||||||
82C026652AEB6C050011FE6A /* zoom.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = zoom.png; sourceTree = "<group>"; };
|
|
||||||
82C026662AEB6C050011FE6A /* key.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = key.png; sourceTree = "<group>"; };
|
|
||||||
82C026672AEB6C050011FE6A /* lock2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = lock2.png; sourceTree = "<group>"; };
|
|
||||||
82C026682AEB6C050011FE6A /* lock.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = lock.png; sourceTree = "<group>"; };
|
|
||||||
82C026692AEB6C050011FE6A /* vcall.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = vcall.png; sourceTree = "<group>"; };
|
|
||||||
82C0266A2AEB6C050011FE6A /* spk.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = spk.png; sourceTree = "<group>"; };
|
|
||||||
82C0266B2AEB6C050011FE6A /* blank.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = blank.png; sourceTree = "<group>"; };
|
|
||||||
82C0266C2AEB6C050011FE6A /* clear.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = clear.png; sourceTree = "<group>"; };
|
|
||||||
82C0266D2AEB6C050011FE6A /* rotate.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = rotate.png; sourceTree = "<group>"; };
|
|
||||||
82C0266E2AEB6C050011FE6A /* call_call_on.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = call_call_on.png; sourceTree = "<group>"; };
|
|
||||||
82C0266F2AEB6C050011FE6A /* call_del.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = call_del.png; sourceTree = "<group>"; };
|
|
||||||
82C026702AEB6C050011FE6A /* swicth_minus_on.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = swicth_minus_on.png; sourceTree = "<group>"; };
|
|
||||||
82C026712AEB6C050011FE6A /* lock_on.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = lock_on.png; sourceTree = "<group>"; };
|
|
||||||
82C026722AEB6C050011FE6A /* vrecord_on.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = vrecord_on.png; sourceTree = "<group>"; };
|
|
||||||
82C026732AEB6C050011FE6A /* search_bar_icon_normal.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = search_bar_icon_normal.png; sourceTree = "<group>"; };
|
|
||||||
82C026742AEB6C050011FE6A /* vrecord.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = vrecord.png; sourceTree = "<group>"; };
|
|
||||||
82C026752AEB6C050011FE6A /* swicth_off.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = swicth_off.png; sourceTree = "<group>"; };
|
|
||||||
82C026762AEB6C050011FE6A /* test.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = test.jpg; sourceTree = "<group>"; };
|
|
||||||
82C026772AEB6C050011FE6A /* back3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = back3.png; sourceTree = "<group>"; };
|
|
||||||
82C026782AEB6C050011FE6A /* logo3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = logo3.png; sourceTree = "<group>"; };
|
|
||||||
82C026792AEB6C050011FE6A /* menu.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu.png; sourceTree = "<group>"; };
|
|
||||||
82C0267A2AEB6C050011FE6A /* logo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = logo.png; sourceTree = "<group>"; };
|
|
||||||
82C0267B2AEB6C050011FE6A /* logo2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = logo2.png; sourceTree = "<group>"; };
|
|
||||||
82C0267C2AEB6C050011FE6A /* vcontacts2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = vcontacts2.png; sourceTree = "<group>"; };
|
|
||||||
82C0267D2AEB6C050011FE6A /* swicth_add_on.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = swicth_add_on.png; sourceTree = "<group>"; };
|
|
||||||
82C0267E2AEB6C050011FE6A /* add2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = add2.png; sourceTree = "<group>"; };
|
|
||||||
82C0267F2AEB6C050011FE6A /* swicth_on.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = swicth_on.png; sourceTree = "<group>"; };
|
|
||||||
82C026802AEB6C050011FE6A /* shop_loading.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = shop_loading.png; sourceTree = "<group>"; };
|
|
||||||
82C026812AEB6C050011FE6A /* call_menu_on.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = call_menu_on.png; sourceTree = "<group>"; };
|
|
||||||
82C026822AEB6C050011FE6A /* vcall_on.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = vcall_on.png; sourceTree = "<group>"; };
|
|
||||||
82C026832AEB6C050011FE6A /* wave1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = wave1.png; sourceTree = "<group>"; };
|
|
||||||
82C026842AEB6C050011FE6A /* ic_launcher.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ic_launcher.png; sourceTree = "<group>"; };
|
|
||||||
82C026852AEB6C050011FE6A /* key_on.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = key_on.png; sourceTree = "<group>"; };
|
|
||||||
82C026862AEB6C050011FE6A /* hf.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = hf.png; sourceTree = "<group>"; };
|
|
||||||
82C026872AEB6C050011FE6A /* wave3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = wave3.png; sourceTree = "<group>"; };
|
|
||||||
82C026882AEB6C050011FE6A /* wave2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = wave2.png; sourceTree = "<group>"; };
|
|
||||||
82C026892AEB6C050011FE6A /* ic_vd_mic_off.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ic_vd_mic_off.png; sourceTree = "<group>"; };
|
|
||||||
82C0268A2AEB6C050011FE6A /* split3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = split3.png; sourceTree = "<group>"; };
|
|
||||||
82C0268B2AEB6C050011FE6A /* emotionstore_progresscancelbtn.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = emotionstore_progresscancelbtn.png; sourceTree = "<group>"; };
|
|
||||||
82C0268C2AEB6C050011FE6A /* split.JPG */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = split.JPG; sourceTree = "<group>"; };
|
|
||||||
82C0268D2AEB6C050011FE6A /* swicth_add_off.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = swicth_add_off.png; sourceTree = "<group>"; };
|
|
||||||
82C0268E2AEB6C050011FE6A /* search_bar_edit_pressed.9.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = search_bar_edit_pressed.9.png; sourceTree = "<group>"; };
|
|
||||||
82C0268F2AEB6C050011FE6A /* setting.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = setting.png; sourceTree = "<group>"; };
|
|
||||||
82C026902AEB6C050011FE6A /* back.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = back.png; sourceTree = "<group>"; };
|
|
||||||
82C026912AEB6C050011FE6A /* thumb_on.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = thumb_on.png; sourceTree = "<group>"; };
|
|
||||||
82C026922AEB6C050011FE6A /* split4.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = split4.png; sourceTree = "<group>"; };
|
|
||||||
82C026932AEB6C050011FE6A /* thumb.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = thumb.png; sourceTree = "<group>"; };
|
|
||||||
82C026942AEB6C050011FE6A /* vcontacts_on.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = vcontacts_on.png; sourceTree = "<group>"; };
|
|
||||||
82C026952AEB6C050011FE6A /* mic.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = mic.png; sourceTree = "<group>"; };
|
|
||||||
82C026962AEB6C050011FE6A /* icon_key.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = icon_key.png; sourceTree = "<group>"; };
|
|
||||||
82C026972AEB6C050011FE6A /* bg.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = bg.jpg; sourceTree = "<group>"; };
|
|
||||||
82F1ECD12BE8B7B400265D59 /* DTFIdentityManager.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = DTFIdentityManager.framework; path = ../aliyun_face_plugin/ios/Products/DTFIdentityManager.framework; sourceTree = "<group>"; };
|
82F1ECD12BE8B7B400265D59 /* DTFIdentityManager.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = DTFIdentityManager.framework; path = ../aliyun_face_plugin/ios/Products/DTFIdentityManager.framework; sourceTree = "<group>"; };
|
||||||
82F1ECD22BE8B7B500265D59 /* deviceiOS.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = deviceiOS.framework; path = ../aliyun_face_plugin/ios/Products/deviceiOS.framework; sourceTree = "<group>"; };
|
82F1ECD22BE8B7B500265D59 /* deviceiOS.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = deviceiOS.framework; path = ../aliyun_face_plugin/ios/Products/deviceiOS.framework; sourceTree = "<group>"; };
|
||||||
82F1ECD32BE8B7B500265D59 /* DTFUtility.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = DTFUtility.framework; path = ../aliyun_face_plugin/ios/Products/DTFUtility.framework; sourceTree = "<group>"; };
|
82F1ECD32BE8B7B500265D59 /* DTFUtility.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = DTFUtility.framework; path = ../aliyun_face_plugin/ios/Products/DTFUtility.framework; sourceTree = "<group>"; };
|
||||||
@ -305,8 +179,7 @@
|
|||||||
97C146F21CF9000F007C117D /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
|
97C146F21CF9000F007C117D /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
|
||||||
97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
|
97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
|
||||||
97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
|
97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
|
||||||
97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
|
97C147021CF9000F007C117D /* Info_dev.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info_dev.plist; sourceTree = "<group>"; };
|
||||||
97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
|
||||||
9A03C622761920C324D80733 /* skyLaunchScreen.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = skyLaunchScreen.storyboard; path = Runner/skyLaunchScreen.storyboard; sourceTree = "<group>"; };
|
9A03C622761920C324D80733 /* skyLaunchScreen.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = skyLaunchScreen.storyboard; path = Runner/skyLaunchScreen.storyboard; sourceTree = "<group>"; };
|
||||||
9AA145F8B894E5E4F14249DB /* devProfile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = devProfile.xcconfig; path = Flutter/devProfile.xcconfig; sourceTree = "<group>"; };
|
9AA145F8B894E5E4F14249DB /* devProfile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = devProfile.xcconfig; path = Flutter/devProfile.xcconfig; sourceTree = "<group>"; };
|
||||||
B7AA7A6DD927B38E32E2C889 /* preProfile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = preProfile.xcconfig; path = Flutter/preProfile.xcconfig; sourceTree = "<group>"; };
|
B7AA7A6DD927B38E32E2C889 /* preProfile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = preProfile.xcconfig; path = Flutter/preProfile.xcconfig; sourceTree = "<group>"; };
|
||||||
@ -401,79 +274,6 @@
|
|||||||
path = Pods;
|
path = Pods;
|
||||||
sourceTree = "<group>";
|
sourceTree = "<group>";
|
||||||
};
|
};
|
||||||
82C026552AEB6C050011FE6A /* img */ = {
|
|
||||||
isa = PBXGroup;
|
|
||||||
children = (
|
|
||||||
82C026562AEB6C050011FE6A /* add.png */,
|
|
||||||
82C026572AEB6C050011FE6A /* ic_vd_mic_on.png */,
|
|
||||||
82C026582AEB6C050011FE6A /* watch.png */,
|
|
||||||
82C026592AEB6C050011FE6A /* call_menu.png */,
|
|
||||||
82C0265A2AEB6C050011FE6A /* call_del_on.png */,
|
|
||||||
82C0265B2AEB6C050011FE6A /* hangup.png */,
|
|
||||||
82C0265C2AEB6C050011FE6A /* save_photo.png */,
|
|
||||||
82C0265D2AEB6C050011FE6A /* show_head_toast_bg.9.PNG */,
|
|
||||||
82C0265E2AEB6C050011FE6A /* search_bar_edit_normal.9.png */,
|
|
||||||
82C0265F2AEB6C050011FE6A /* icon_close.png */,
|
|
||||||
82C026602AEB6C050011FE6A /* swicth_minus_off.png */,
|
|
||||||
82C026612AEB6C050011FE6A /* sidebar_background.xml */,
|
|
||||||
82C026622AEB6C050011FE6A /* hf_on.png */,
|
|
||||||
82C026632AEB6C050011FE6A /* unlock_on2.png */,
|
|
||||||
82C026642AEB6C050011FE6A /* vcontacts.png */,
|
|
||||||
82C026652AEB6C050011FE6A /* zoom.png */,
|
|
||||||
82C026662AEB6C050011FE6A /* key.png */,
|
|
||||||
82C026672AEB6C050011FE6A /* lock2.png */,
|
|
||||||
82C026682AEB6C050011FE6A /* lock.png */,
|
|
||||||
82C026692AEB6C050011FE6A /* vcall.png */,
|
|
||||||
82C0266A2AEB6C050011FE6A /* spk.png */,
|
|
||||||
82C0266B2AEB6C050011FE6A /* blank.png */,
|
|
||||||
82C0266C2AEB6C050011FE6A /* clear.png */,
|
|
||||||
82C0266D2AEB6C050011FE6A /* rotate.png */,
|
|
||||||
82C0266E2AEB6C050011FE6A /* call_call_on.png */,
|
|
||||||
82C0266F2AEB6C050011FE6A /* call_del.png */,
|
|
||||||
82C026702AEB6C050011FE6A /* swicth_minus_on.png */,
|
|
||||||
82C026712AEB6C050011FE6A /* lock_on.png */,
|
|
||||||
82C026722AEB6C050011FE6A /* vrecord_on.png */,
|
|
||||||
82C026732AEB6C050011FE6A /* search_bar_icon_normal.png */,
|
|
||||||
82C026742AEB6C050011FE6A /* vrecord.png */,
|
|
||||||
82C026752AEB6C050011FE6A /* swicth_off.png */,
|
|
||||||
82C026762AEB6C050011FE6A /* test.jpg */,
|
|
||||||
82C026772AEB6C050011FE6A /* back3.png */,
|
|
||||||
82C026782AEB6C050011FE6A /* logo3.png */,
|
|
||||||
82C026792AEB6C050011FE6A /* menu.png */,
|
|
||||||
82C0267A2AEB6C050011FE6A /* logo.png */,
|
|
||||||
82C0267B2AEB6C050011FE6A /* logo2.png */,
|
|
||||||
82C0267C2AEB6C050011FE6A /* vcontacts2.png */,
|
|
||||||
82C0267D2AEB6C050011FE6A /* swicth_add_on.png */,
|
|
||||||
82C0267E2AEB6C050011FE6A /* add2.png */,
|
|
||||||
82C0267F2AEB6C050011FE6A /* swicth_on.png */,
|
|
||||||
82C026802AEB6C050011FE6A /* shop_loading.png */,
|
|
||||||
82C026812AEB6C050011FE6A /* call_menu_on.png */,
|
|
||||||
82C026822AEB6C050011FE6A /* vcall_on.png */,
|
|
||||||
82C026832AEB6C050011FE6A /* wave1.png */,
|
|
||||||
82C026842AEB6C050011FE6A /* ic_launcher.png */,
|
|
||||||
82C026852AEB6C050011FE6A /* key_on.png */,
|
|
||||||
82C026862AEB6C050011FE6A /* hf.png */,
|
|
||||||
82C026872AEB6C050011FE6A /* wave3.png */,
|
|
||||||
82C026882AEB6C050011FE6A /* wave2.png */,
|
|
||||||
82C026892AEB6C050011FE6A /* ic_vd_mic_off.png */,
|
|
||||||
82C0268A2AEB6C050011FE6A /* split3.png */,
|
|
||||||
82C0268B2AEB6C050011FE6A /* emotionstore_progresscancelbtn.png */,
|
|
||||||
82C0268C2AEB6C050011FE6A /* split.JPG */,
|
|
||||||
82C0268D2AEB6C050011FE6A /* swicth_add_off.png */,
|
|
||||||
82C0268E2AEB6C050011FE6A /* search_bar_edit_pressed.9.png */,
|
|
||||||
82C0268F2AEB6C050011FE6A /* setting.png */,
|
|
||||||
82C026902AEB6C050011FE6A /* back.png */,
|
|
||||||
82C026912AEB6C050011FE6A /* thumb_on.png */,
|
|
||||||
82C026922AEB6C050011FE6A /* split4.png */,
|
|
||||||
82C026932AEB6C050011FE6A /* thumb.png */,
|
|
||||||
82C026942AEB6C050011FE6A /* vcontacts_on.png */,
|
|
||||||
82C026952AEB6C050011FE6A /* mic.png */,
|
|
||||||
82C026962AEB6C050011FE6A /* icon_key.png */,
|
|
||||||
82C026972AEB6C050011FE6A /* bg.jpg */,
|
|
||||||
);
|
|
||||||
path = img;
|
|
||||||
sourceTree = "<group>";
|
|
||||||
};
|
|
||||||
9740EEB11CF90186004384FC /* Flutter */ = {
|
9740EEB11CF90186004384FC /* Flutter */ = {
|
||||||
isa = PBXGroup;
|
isa = PBXGroup;
|
||||||
children = (
|
children = (
|
||||||
@ -533,9 +333,12 @@
|
|||||||
97C146F01CF9000F007C117D /* Runner */ = {
|
97C146F01CF9000F007C117D /* Runner */ = {
|
||||||
isa = PBXGroup;
|
isa = PBXGroup;
|
||||||
children = (
|
children = (
|
||||||
|
82B657682C919DA60079121C /* launchImage_sky.png */,
|
||||||
|
82B657662C919BDF0079121C /* launchImage_xhj.png */,
|
||||||
|
82B657642C917F950079121C /* Info_pre.plist */,
|
||||||
|
82B657602C91665E0079121C /* Info_sky.plist */,
|
||||||
|
82B657612C91665E0079121C /* Info_xhj.plist */,
|
||||||
04BFC4482BCFE05100688FCA /* RunnerRelease-xhj.entitlements */,
|
04BFC4482BCFE05100688FCA /* RunnerRelease-xhj.entitlements */,
|
||||||
3364C3F32B0C902100AA5ABC /* lcokStarMain.png */,
|
|
||||||
82C026552AEB6C050011FE6A /* img */,
|
|
||||||
82C026532AE8AC6D0011FE6A /* AliyunEmasServices-Info.plist */,
|
82C026532AE8AC6D0011FE6A /* AliyunEmasServices-Info.plist */,
|
||||||
8297E4992AE7974700E886FA /* AppDelegate.h */,
|
8297E4992AE7974700E886FA /* AppDelegate.h */,
|
||||||
8297E49A2AE7974700E886FA /* AppDelegate.m */,
|
8297E49A2AE7974700E886FA /* AppDelegate.m */,
|
||||||
@ -544,8 +347,7 @@
|
|||||||
33BF41252A96174D009D92E2 /* Runner.entitlements */,
|
33BF41252A96174D009D92E2 /* Runner.entitlements */,
|
||||||
97C146FA1CF9000F007C117D /* Main.storyboard */,
|
97C146FA1CF9000F007C117D /* Main.storyboard */,
|
||||||
97C146FD1CF9000F007C117D /* Assets.xcassets */,
|
97C146FD1CF9000F007C117D /* Assets.xcassets */,
|
||||||
97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */,
|
97C147021CF9000F007C117D /* Info_dev.plist */,
|
||||||
97C147021CF9000F007C117D /* Info.plist */,
|
|
||||||
97C146F11CF9000F007C117D /* Supporting Files */,
|
97C146F11CF9000F007C117D /* Supporting Files */,
|
||||||
1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */,
|
1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */,
|
||||||
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */,
|
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */,
|
||||||
@ -669,14 +471,12 @@
|
|||||||
buildActionMask = 2147483647;
|
buildActionMask = 2147483647;
|
||||||
files = (
|
files = (
|
||||||
82F1ED1C2BE8BA8F00265D59 /* BioAuthEngine.bundle in Resources */,
|
82F1ED1C2BE8BA8F00265D59 /* BioAuthEngine.bundle in Resources */,
|
||||||
|
82B657692C919DA70079121C /* launchImage_sky.png in Resources */,
|
||||||
82F1ED1A2BE8BA7D00265D59 /* OCRXMedia.bundle in Resources */,
|
82F1ED1A2BE8BA7D00265D59 /* OCRXMedia.bundle in Resources */,
|
||||||
82F1ED182BE8BA6900265D59 /* APBToygerFacadeSuitable.bundle in Resources */,
|
82F1ED182BE8BA6900265D59 /* APBToygerFacadeSuitable.bundle in Resources */,
|
||||||
82F1ED162BE8BA2000265D59 /* APBToygerFacade.bundle in Resources */,
|
82F1ED162BE8BA2000265D59 /* APBToygerFacade.bundle in Resources */,
|
||||||
|
82B657622C91665F0079121C /* Info_sky.plist in Resources */,
|
||||||
82F1ED142BE8B9F400265D59 /* ToygerService.bundle in Resources */,
|
82F1ED142BE8B9F400265D59 /* ToygerService.bundle in Resources */,
|
||||||
82C026A02AEB6C050011FE6A /* search_bar_edit_normal.9.png in Resources */,
|
|
||||||
82C026A92AEB6C050011FE6A /* lock2.png in Resources */,
|
|
||||||
82C026AE2AEB6C050011FE6A /* clear.png in Resources */,
|
|
||||||
82C0269B2AEB6C050011FE6A /* call_menu.png in Resources */,
|
|
||||||
82C026542AE8AC6D0011FE6A /* AliyunEmasServices-Info.plist in Resources */,
|
82C026542AE8AC6D0011FE6A /* AliyunEmasServices-Info.plist in Resources */,
|
||||||
82C026AD2AEB6C050011FE6A /* blank.png in Resources */,
|
82C026AD2AEB6C050011FE6A /* blank.png in Resources */,
|
||||||
82C0269F2AEB6C050011FE6A /* show_head_toast_bg.9.PNG in Resources */,
|
82C0269F2AEB6C050011FE6A /* show_head_toast_bg.9.PNG in Resources */,
|
||||||
@ -761,6 +561,7 @@
|
|||||||
25B2A1422F9A2CCCBBCBBB97 /* skyRelease.xcconfig in Resources */,
|
25B2A1422F9A2CCCBBCBBB97 /* skyRelease.xcconfig in Resources */,
|
||||||
ADF948FD9EE8BD1AE71F0984 /* xhjDebug.xcconfig in Resources */,
|
ADF948FD9EE8BD1AE71F0984 /* xhjDebug.xcconfig in Resources */,
|
||||||
EE0A7A61CF36BC83ACA6EE3E /* xhjProfile.xcconfig in Resources */,
|
EE0A7A61CF36BC83ACA6EE3E /* xhjProfile.xcconfig in Resources */,
|
||||||
|
82B657652C917F950079121C /* Info_pre.plist in Resources */,
|
||||||
8B1BD17852B1F49E18DB1D6F /* xhjRelease.xcconfig in Resources */,
|
8B1BD17852B1F49E18DB1D6F /* xhjRelease.xcconfig in Resources */,
|
||||||
E2FF5D00DFF6E2BF9DA36649 /* devLaunchScreen.storyboard in Resources */,
|
E2FF5D00DFF6E2BF9DA36649 /* devLaunchScreen.storyboard in Resources */,
|
||||||
99FEBCD8A8244C3EE22C5A18 /* preLaunchScreen.storyboard in Resources */,
|
99FEBCD8A8244C3EE22C5A18 /* preLaunchScreen.storyboard in Resources */,
|
||||||
@ -868,15 +669,6 @@
|
|||||||
name = Main.storyboard;
|
name = Main.storyboard;
|
||||||
sourceTree = "<group>";
|
sourceTree = "<group>";
|
||||||
};
|
};
|
||||||
97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = {
|
|
||||||
isa = PBXVariantGroup;
|
|
||||||
children = (
|
|
||||||
97C147001CF9000F007C117D /* Base */,
|
|
||||||
0420903C2C0EEAA60073E654 /* zh-Hans */,
|
|
||||||
);
|
|
||||||
name = LaunchScreen.storyboard;
|
|
||||||
sourceTree = "<group>";
|
|
||||||
};
|
|
||||||
/* End PBXVariantGroup section */
|
/* End PBXVariantGroup section */
|
||||||
|
|
||||||
/* Begin XCBuildConfiguration section */
|
/* Begin XCBuildConfiguration section */
|
||||||
@ -888,6 +680,7 @@
|
|||||||
CODE_SIGN_IDENTITY = "Apple Development";
|
CODE_SIGN_IDENTITY = "Apple Development";
|
||||||
CODE_SIGN_STYLE = Automatic;
|
CODE_SIGN_STYLE = Automatic;
|
||||||
DEVELOPMENT_TEAM = 7D53BZAN75;
|
DEVELOPMENT_TEAM = 7D53BZAN75;
|
||||||
|
INFOPLIST_FILE = Runner/Info_dev.plist;
|
||||||
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
|
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
|
||||||
PRODUCT_NAME = Runner;
|
PRODUCT_NAME = Runner;
|
||||||
PROVISIONING_PROFILE_SPECIFIER = "";
|
PROVISIONING_PROFILE_SPECIFIER = "";
|
||||||
@ -904,6 +697,7 @@
|
|||||||
buildSettings = {
|
buildSettings = {
|
||||||
CODE_SIGN_ENTITLEMENTS = "Runner/RunnerProfile-dev.entitlements";
|
CODE_SIGN_ENTITLEMENTS = "Runner/RunnerProfile-dev.entitlements";
|
||||||
DEVELOPMENT_TEAM = 7D53BZAN75;
|
DEVELOPMENT_TEAM = 7D53BZAN75;
|
||||||
|
INFOPLIST_FILE = Runner/Info_dev.plist;
|
||||||
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
|
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
|
||||||
PRODUCT_NAME = Runner;
|
PRODUCT_NAME = Runner;
|
||||||
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
||||||
@ -919,6 +713,7 @@
|
|||||||
buildSettings = {
|
buildSettings = {
|
||||||
CODE_SIGN_ENTITLEMENTS = "Runner/RunnerRelease-dev.entitlements";
|
CODE_SIGN_ENTITLEMENTS = "Runner/RunnerRelease-dev.entitlements";
|
||||||
DEVELOPMENT_TEAM = 7D53BZAN75;
|
DEVELOPMENT_TEAM = 7D53BZAN75;
|
||||||
|
INFOPLIST_FILE = Runner/Info_dev.plist;
|
||||||
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
|
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
|
||||||
PRODUCT_NAME = Runner;
|
PRODUCT_NAME = Runner;
|
||||||
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
||||||
@ -934,6 +729,7 @@
|
|||||||
buildSettings = {
|
buildSettings = {
|
||||||
CODE_SIGN_ENTITLEMENTS = "Runner/RunnerDebug-pre.entitlements";
|
CODE_SIGN_ENTITLEMENTS = "Runner/RunnerDebug-pre.entitlements";
|
||||||
DEVELOPMENT_TEAM = 7D53BZAN75;
|
DEVELOPMENT_TEAM = 7D53BZAN75;
|
||||||
|
INFOPLIST_FILE = Runner/Info_pre.plist;
|
||||||
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
|
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
|
||||||
PRODUCT_NAME = Runner;
|
PRODUCT_NAME = Runner;
|
||||||
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
||||||
@ -949,6 +745,7 @@
|
|||||||
buildSettings = {
|
buildSettings = {
|
||||||
CODE_SIGN_ENTITLEMENTS = "Runner/RunnerProfile-pre.entitlements";
|
CODE_SIGN_ENTITLEMENTS = "Runner/RunnerProfile-pre.entitlements";
|
||||||
DEVELOPMENT_TEAM = 7D53BZAN75;
|
DEVELOPMENT_TEAM = 7D53BZAN75;
|
||||||
|
INFOPLIST_FILE = Runner/Info_pre.plist;
|
||||||
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
|
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
|
||||||
PRODUCT_NAME = Runner;
|
PRODUCT_NAME = Runner;
|
||||||
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
||||||
@ -964,6 +761,7 @@
|
|||||||
buildSettings = {
|
buildSettings = {
|
||||||
CODE_SIGN_ENTITLEMENTS = "Runner/RunnerRelease-pre.entitlements";
|
CODE_SIGN_ENTITLEMENTS = "Runner/RunnerRelease-pre.entitlements";
|
||||||
DEVELOPMENT_TEAM = 7D53BZAN75;
|
DEVELOPMENT_TEAM = 7D53BZAN75;
|
||||||
|
INFOPLIST_FILE = Runner/Info_pre.plist;
|
||||||
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
|
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
|
||||||
PRODUCT_NAME = Runner;
|
PRODUCT_NAME = Runner;
|
||||||
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
||||||
@ -979,6 +777,7 @@
|
|||||||
buildSettings = {
|
buildSettings = {
|
||||||
CODE_SIGN_ENTITLEMENTS = "Runner/RunnerDebug-sky.entitlements";
|
CODE_SIGN_ENTITLEMENTS = "Runner/RunnerDebug-sky.entitlements";
|
||||||
DEVELOPMENT_TEAM = NAQ5PL2DYC;
|
DEVELOPMENT_TEAM = NAQ5PL2DYC;
|
||||||
|
INFOPLIST_FILE = Runner/Info_sky.plist;
|
||||||
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
|
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
|
||||||
PRODUCT_NAME = Runner;
|
PRODUCT_NAME = Runner;
|
||||||
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
||||||
@ -994,6 +793,7 @@
|
|||||||
buildSettings = {
|
buildSettings = {
|
||||||
CODE_SIGN_ENTITLEMENTS = "Runner/RunnerProfile-sky.entitlements";
|
CODE_SIGN_ENTITLEMENTS = "Runner/RunnerProfile-sky.entitlements";
|
||||||
DEVELOPMENT_TEAM = NAQ5PL2DYC;
|
DEVELOPMENT_TEAM = NAQ5PL2DYC;
|
||||||
|
INFOPLIST_FILE = Runner/info_sky.plist;
|
||||||
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
|
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
|
||||||
PRODUCT_NAME = Runner;
|
PRODUCT_NAME = Runner;
|
||||||
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
||||||
@ -1009,6 +809,7 @@
|
|||||||
buildSettings = {
|
buildSettings = {
|
||||||
CODE_SIGN_ENTITLEMENTS = "Runner/RunnerRelease-sky.entitlements";
|
CODE_SIGN_ENTITLEMENTS = "Runner/RunnerRelease-sky.entitlements";
|
||||||
DEVELOPMENT_TEAM = NAQ5PL2DYC;
|
DEVELOPMENT_TEAM = NAQ5PL2DYC;
|
||||||
|
INFOPLIST_FILE = Runner/info_sky.plist;
|
||||||
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
|
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
|
||||||
PRODUCT_NAME = Runner;
|
PRODUCT_NAME = Runner;
|
||||||
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
||||||
@ -1024,6 +825,7 @@
|
|||||||
buildSettings = {
|
buildSettings = {
|
||||||
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
|
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
|
||||||
DEVELOPMENT_TEAM = P8997RW3V8;
|
DEVELOPMENT_TEAM = P8997RW3V8;
|
||||||
|
INFOPLIST_FILE = Runner/Info_xhj.plist;
|
||||||
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
|
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
|
||||||
PRODUCT_NAME = Runner;
|
PRODUCT_NAME = Runner;
|
||||||
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
||||||
@ -1039,6 +841,7 @@
|
|||||||
buildSettings = {
|
buildSettings = {
|
||||||
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
|
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
|
||||||
DEVELOPMENT_TEAM = P8997RW3V8;
|
DEVELOPMENT_TEAM = P8997RW3V8;
|
||||||
|
INFOPLIST_FILE = Runner/Info_xhj.plist;
|
||||||
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
|
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
|
||||||
PRODUCT_NAME = Runner;
|
PRODUCT_NAME = Runner;
|
||||||
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
||||||
@ -1054,6 +857,7 @@
|
|||||||
buildSettings = {
|
buildSettings = {
|
||||||
CODE_SIGN_ENTITLEMENTS = "Runner/RunnerRelease-xhj.entitlements";
|
CODE_SIGN_ENTITLEMENTS = "Runner/RunnerRelease-xhj.entitlements";
|
||||||
DEVELOPMENT_TEAM = P8997RW3V8;
|
DEVELOPMENT_TEAM = P8997RW3V8;
|
||||||
|
INFOPLIST_FILE = Runner/Info_xhj.plist;
|
||||||
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
|
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
|
||||||
PRODUCT_NAME = Runner;
|
PRODUCT_NAME = Runner;
|
||||||
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
||||||
|
|||||||
0
ios/Runner.xcworkspace/contents.xcworkspacedata
generated
Executable file → Normal file
0
ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
Executable file → Normal file
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
||||||
<plist version="1.0">
|
|
||||||
<dict>
|
|
||||||
<key>PreviewsEnabled</key>
|
|
||||||
<false/>
|
|
||||||
</dict>
|
|
||||||
</plist>
|
|
||||||
@ -19,20 +19,6 @@
|
|||||||
- (BOOL)application:(UIApplication *)application
|
- (BOOL)application:(UIApplication *)application
|
||||||
didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
|
didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
|
||||||
|
|
||||||
// //【注册通知】通知回调代理(可选)
|
|
||||||
// JPUSHRegisterEntity * entity = [[JPUSHRegisterEntity alloc] init];
|
|
||||||
// entity.types = JPAuthorizationOptionAlert|JPAuthorizationOptionBadge|JPAuthorizationOptionSound|JPAuthorizationOptionProvidesAppNotificationSettings;
|
|
||||||
// [JPUSHService registerForRemoteNotificationConfig:entity delegate:self];
|
|
||||||
//
|
|
||||||
// //【初始化sdk】
|
|
||||||
// // notice: 2.1.5 版本的 SDK 新增的注册方法,改成可上报 IDFA,如果没有使用 IDFA 直接传 nil
|
|
||||||
// [JPUSHService setupWithOption:launchOptions appKey:@"7ff37d174c1a568a89e98dad"
|
|
||||||
// channel:@"flutter_channel"
|
|
||||||
// apsForProduction:NO
|
|
||||||
// advertisingIdentifier:nil];
|
|
||||||
|
|
||||||
// [self initCloudPush];
|
|
||||||
// [CloudPushSDK sendNotificationAck:launchOptions];
|
|
||||||
XSFlutterManager *VC = [[XSFlutterManager alloc] init];
|
XSFlutterManager *VC = [[XSFlutterManager alloc] init];
|
||||||
self.window.rootViewController = VC;
|
self.window.rootViewController = VC;
|
||||||
[self.window makeKeyAndVisible];
|
[self.window makeKeyAndVisible];
|
||||||
@ -50,16 +36,6 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
- (void)initCloudPush {
|
|
||||||
// SDK初始化
|
|
||||||
[CloudPushSDK asyncInit:@"334068745" appSecret:@"bee9c200835e4951a85dc8709c319560" callback:^(CloudPushCallbackResult *res) {
|
|
||||||
if (res.success) {
|
|
||||||
NSLog(@"Push SDK init success, deviceId: %@.", [CloudPushSDK getDeviceId]);
|
|
||||||
} else {
|
|
||||||
NSLog(@"Push SDK init failed, error: %@", res.error);
|
|
||||||
}
|
|
||||||
}];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 注册苹果推送,获取deviceToken用于推送
|
* 注册苹果推送,获取deviceToken用于推送
|
||||||
@ -85,13 +61,7 @@
|
|||||||
* 苹果推送注册成功回调,将苹果返回的deviceToken上传到CloudPush服务器
|
* 苹果推送注册成功回调,将苹果返回的deviceToken上传到CloudPush服务器
|
||||||
*/
|
*/
|
||||||
- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
|
- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
|
||||||
// [CloudPushSDK registerDevice:deviceToken withCallback:^(CloudPushCallbackResult *res) {
|
|
||||||
// if (res.success) {
|
|
||||||
// NSLog(@"Register deviceToken success.");
|
|
||||||
// } else {
|
|
||||||
// NSLog(@"Register deviceToken failed, error: %@", res.error);
|
|
||||||
// }
|
|
||||||
// }];
|
|
||||||
//sdk注册DeviceToken
|
//sdk注册DeviceToken
|
||||||
[JPUSHService registerDeviceToken:deviceToken];
|
[JPUSHService registerDeviceToken:deviceToken];
|
||||||
|
|
||||||
@ -124,28 +94,6 @@
|
|||||||
NSLog(@"Receive message title: %@, content: %@.", title, body);
|
NSLog(@"Receive message title: %@, content: %@.", title, body);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* App处于启动状态时,通知打开回调
|
|
||||||
*/
|
|
||||||
//- (void)application:(UIApplication*)application didReceiveRemoteNotification:(NSDictionary*)userInfo {
|
|
||||||
// NSLog(@"Receive one notification.");
|
|
||||||
// 取得APNS通知内容
|
|
||||||
// NSDictionary *aps = [userInfo valueForKey:@"aps"];
|
|
||||||
// // 内容
|
|
||||||
// NSString *content = [aps valueForKey:@"alert"];
|
|
||||||
// // badge数量
|
|
||||||
// NSInteger badge = [[aps valueForKey:@"badge"] integerValue];
|
|
||||||
// // 播放声音
|
|
||||||
// NSString *sound = [aps valueForKey:@"sound"];
|
|
||||||
// // 取得Extras字段内容
|
|
||||||
// NSString *Extras = [userInfo valueForKey:@"Extras"]; //服务端中Extras字段,key是自己定义的
|
|
||||||
// NSLog(@"content = [%@], badge = [%ld], sound = [%@], Extras = [%@]", content, (long)badge, sound, Extras);
|
|
||||||
// // iOS badge 清0
|
|
||||||
// application.applicationIconBadgeNumber = 0;
|
|
||||||
// // 通知打开回执上报
|
|
||||||
// // [CloudPushSDK handleReceiveRemoteNotification:userInfo];(Deprecated from v1.8.1)
|
|
||||||
// [CloudPushSDK sendNotificationAck:userInfo];
|
|
||||||
//}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -1,20 +0,0 @@
|
|||||||
{
|
|
||||||
"images" : [
|
|
||||||
{
|
|
||||||
"idiom" : "universal",
|
|
||||||
"scale" : "1x"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"idiom" : "universal",
|
|
||||||
"scale" : "2x"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"idiom" : "universal",
|
|
||||||
"scale" : "3x"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"info" : {
|
|
||||||
"author" : "xcode",
|
|
||||||
"version" : 1
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,5 +0,0 @@
|
|||||||
# Launch Screen Assets
|
|
||||||
|
|
||||||
You can customize the launch screen with your own desired assets by replacing the image files in this directory.
|
|
||||||
|
|
||||||
You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images.
|
|
||||||
@ -1,122 +1,117 @@
|
|||||||
{
|
{
|
||||||
"images" : [
|
"images" : [
|
||||||
{
|
{
|
||||||
"size" : "20x20",
|
"filename" : "icon-20@2x.png",
|
||||||
"idiom" : "iphone",
|
"idiom" : "iphone",
|
||||||
"filename" : "Icon-App-20x20@2x.png",
|
"scale" : "2x",
|
||||||
"scale" : "2x"
|
"size" : "20x20"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"size" : "20x20",
|
"filename" : "icon-20@3x.png",
|
||||||
"idiom" : "iphone",
|
"idiom" : "iphone",
|
||||||
"filename" : "Icon-App-20x20@3x.png",
|
"scale" : "3x",
|
||||||
"scale" : "3x"
|
"size" : "20x20"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"size" : "29x29",
|
|
||||||
"idiom" : "iphone",
|
"idiom" : "iphone",
|
||||||
"filename" : "Icon-App-29x29@1x.png",
|
"scale" : "1x",
|
||||||
"scale" : "1x"
|
"size" : "29x29"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"size" : "29x29",
|
"filename" : "icon-29@2x.png",
|
||||||
"idiom" : "iphone",
|
"idiom" : "iphone",
|
||||||
"filename" : "Icon-App-29x29@2x.png",
|
"scale" : "2x",
|
||||||
"scale" : "2x"
|
"size" : "29x29"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"size" : "29x29",
|
"filename" : "icon-29@3x.png",
|
||||||
"idiom" : "iphone",
|
"idiom" : "iphone",
|
||||||
"filename" : "Icon-App-29x29@3x.png",
|
"scale" : "3x",
|
||||||
"scale" : "3x"
|
"size" : "29x29"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"size" : "40x40",
|
"filename" : "icon-40@2x.png",
|
||||||
"idiom" : "iphone",
|
"idiom" : "iphone",
|
||||||
"filename" : "Icon-App-40x40@2x.png",
|
"scale" : "2x",
|
||||||
"scale" : "2x"
|
"size" : "40x40"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"size" : "40x40",
|
"filename" : "icon-40@3x.png",
|
||||||
"idiom" : "iphone",
|
"idiom" : "iphone",
|
||||||
"filename" : "Icon-App-40x40@3x.png",
|
"scale" : "3x",
|
||||||
"scale" : "3x"
|
"size" : "40x40"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"size" : "60x60",
|
"filename" : "icon-60@2x.png",
|
||||||
"idiom" : "iphone",
|
"idiom" : "iphone",
|
||||||
"filename" : "Icon-App-60x60@2x.png",
|
"scale" : "2x",
|
||||||
"scale" : "2x"
|
"size" : "60x60"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"size" : "60x60",
|
"filename" : "icon-60@3x.png",
|
||||||
"idiom" : "iphone",
|
"idiom" : "iphone",
|
||||||
"filename" : "Icon-App-60x60@3x.png",
|
"scale" : "3x",
|
||||||
"scale" : "3x"
|
"size" : "60x60"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"size" : "20x20",
|
|
||||||
"idiom" : "ipad",
|
"idiom" : "ipad",
|
||||||
"filename" : "Icon-App-20x20@1x.png",
|
"scale" : "1x",
|
||||||
"scale" : "1x"
|
"size" : "20x20"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"size" : "20x20",
|
"filename" : "icon-20@2x 1.png",
|
||||||
"idiom" : "ipad",
|
"idiom" : "ipad",
|
||||||
"filename" : "Icon-App-20x20@2x.png",
|
"scale" : "2x",
|
||||||
"scale" : "2x"
|
"size" : "20x20"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"size" : "29x29",
|
|
||||||
"idiom" : "ipad",
|
"idiom" : "ipad",
|
||||||
"filename" : "Icon-App-29x29@1x.png",
|
"scale" : "1x",
|
||||||
"scale" : "1x"
|
"size" : "29x29"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"size" : "29x29",
|
"filename" : "icon-29@2x 1.png",
|
||||||
"idiom" : "ipad",
|
"idiom" : "ipad",
|
||||||
"filename" : "Icon-App-29x29@2x.png",
|
"scale" : "2x",
|
||||||
"scale" : "2x"
|
"size" : "29x29"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"size" : "40x40",
|
|
||||||
"idiom" : "ipad",
|
"idiom" : "ipad",
|
||||||
"filename" : "Icon-App-40x40@1x.png",
|
"scale" : "1x",
|
||||||
"scale" : "1x"
|
"size" : "40x40"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"size" : "40x40",
|
"filename" : "icon-40@2x 1.png",
|
||||||
"idiom" : "ipad",
|
"idiom" : "ipad",
|
||||||
"filename" : "Icon-App-40x40@2x.png",
|
"scale" : "2x",
|
||||||
"scale" : "2x"
|
"size" : "40x40"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"size" : "76x76",
|
|
||||||
"idiom" : "ipad",
|
"idiom" : "ipad",
|
||||||
"filename" : "Icon-App-76x76@1x.png",
|
"scale" : "1x",
|
||||||
"scale" : "1x"
|
"size" : "76x76"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"size" : "76x76",
|
"filename" : "icon-76@2x.png",
|
||||||
"idiom" : "ipad",
|
"idiom" : "ipad",
|
||||||
"filename" : "Icon-App-76x76@2x.png",
|
"scale" : "2x",
|
||||||
"scale" : "2x"
|
"size" : "76x76"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"size" : "83.5x83.5",
|
"filename" : "icon-83.5@2x.png",
|
||||||
"idiom" : "ipad",
|
"idiom" : "ipad",
|
||||||
"filename" : "Icon-App-83.5x83.5@2x.png",
|
"scale" : "2x",
|
||||||
"scale" : "2x"
|
"size" : "83.5x83.5"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"size" : "1024x1024",
|
"filename" : "icon-1024.png",
|
||||||
"idiom" : "ios-marketing",
|
"idiom" : "ios-marketing",
|
||||||
"filename" : "Icon-App-1024x1024@1x.png",
|
"scale" : "1x",
|
||||||
"scale" : "1x"
|
"size" : "1024x1024"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"info" : {
|
"info" : {
|
||||||
"version" : 1,
|
"author" : "xcode",
|
||||||
"author" : "xcode"
|
"version" : 1
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 26 KiB |
|
Before Width: | Height: | Size: 545 B |
|
Before Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 1.9 KiB |
|
Before Width: | Height: | Size: 823 B |
|
Before Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 2.8 KiB |
|
Before Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 2.6 KiB |
|
Before Width: | Height: | Size: 4.0 KiB |
|
Before Width: | Height: | Size: 4.0 KiB |
|
Before Width: | Height: | Size: 5.9 KiB |
|
Before Width: | Height: | Size: 2.4 KiB |
|
Before Width: | Height: | Size: 5.1 KiB |
|
Before Width: | Height: | Size: 5.5 KiB |
BIN
ios/Runner/Assets.xcassets/skyAppIcon.appiconset/icon-1024.png
Normal file
|
After Width: | Height: | Size: 214 KiB |
|
After Width: | Height: | Size: 1.7 KiB |
BIN
ios/Runner/Assets.xcassets/skyAppIcon.appiconset/icon-20@2x.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
ios/Runner/Assets.xcassets/skyAppIcon.appiconset/icon-20@3x.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
|
After Width: | Height: | Size: 2.5 KiB |
BIN
ios/Runner/Assets.xcassets/skyAppIcon.appiconset/icon-29@2x.png
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
ios/Runner/Assets.xcassets/skyAppIcon.appiconset/icon-29@3x.png
Normal file
|
After Width: | Height: | Size: 4.4 KiB |
|
After Width: | Height: | Size: 4.0 KiB |
BIN
ios/Runner/Assets.xcassets/skyAppIcon.appiconset/icon-40@2x.png
Normal file
|
After Width: | Height: | Size: 4.0 KiB |
BIN
ios/Runner/Assets.xcassets/skyAppIcon.appiconset/icon-40@3x.png
Normal file
|
After Width: | Height: | Size: 7.6 KiB |
BIN
ios/Runner/Assets.xcassets/skyAppIcon.appiconset/icon-60@2x.png
Normal file
|
After Width: | Height: | Size: 7.6 KiB |
BIN
ios/Runner/Assets.xcassets/skyAppIcon.appiconset/icon-60@3x.png
Normal file
|
After Width: | Height: | Size: 19 KiB |
BIN
ios/Runner/Assets.xcassets/skyAppIcon.appiconset/icon-76@2x.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 16 KiB |
@ -2,22 +2,19 @@
|
|||||||
"images" : [
|
"images" : [
|
||||||
{
|
{
|
||||||
"idiom" : "universal",
|
"idiom" : "universal",
|
||||||
"filename" : "LaunchImage.png",
|
|
||||||
"scale" : "1x"
|
"scale" : "1x"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"idiom" : "universal",
|
"idiom" : "universal",
|
||||||
"filename" : "LaunchImage@2x.png",
|
|
||||||
"scale" : "2x"
|
"scale" : "2x"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"idiom" : "universal",
|
"idiom" : "universal",
|
||||||
"filename" : "LaunchImage@3x.png",
|
|
||||||
"scale" : "3x"
|
"scale" : "3x"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"info" : {
|
"info" : {
|
||||||
"version" : 1,
|
"author" : "xcode",
|
||||||
"author" : "xcode"
|
"version" : 1
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 68 B |
|
Before Width: | Height: | Size: 68 B |
|
Before Width: | Height: | Size: 68 B |
@ -2,22 +2,19 @@
|
|||||||
"images" : [
|
"images" : [
|
||||||
{
|
{
|
||||||
"idiom" : "universal",
|
"idiom" : "universal",
|
||||||
"filename" : "LaunchImage.png",
|
|
||||||
"scale" : "1x"
|
"scale" : "1x"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"idiom" : "universal",
|
"idiom" : "universal",
|
||||||
"filename" : "LaunchImage@2x.png",
|
|
||||||
"scale" : "2x"
|
"scale" : "2x"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"idiom" : "universal",
|
"idiom" : "universal",
|
||||||
"filename" : "LaunchImage@3x.png",
|
|
||||||
"scale" : "3x"
|
"scale" : "3x"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"info" : {
|
"info" : {
|
||||||
"version" : 1,
|
"author" : "xcode",
|
||||||
"author" : "xcode"
|
"version" : 1
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 68 B |
|
Before Width: | Height: | Size: 68 B |
|
Before Width: | Height: | Size: 68 B |
@ -1,43 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="21701" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" colorMatched="YES" initialViewController="01J-lp-oVM">
|
|
||||||
<device id="retina6_12" orientation="portrait" appearance="light"/>
|
|
||||||
<dependencies>
|
|
||||||
<deployment identifier="iOS"/>
|
|
||||||
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="21678"/>
|
|
||||||
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
|
|
||||||
</dependencies>
|
|
||||||
<scenes>
|
|
||||||
<!--View Controller-->
|
|
||||||
<scene sceneID="EHf-IW-A2E">
|
|
||||||
<objects>
|
|
||||||
<viewController id="01J-lp-oVM" sceneMemberID="viewController">
|
|
||||||
<layoutGuides>
|
|
||||||
<viewControllerLayoutGuide type="top" id="Ydg-fD-yQy"/>
|
|
||||||
<viewControllerLayoutGuide type="bottom" id="xbc-2k-c8Z"/>
|
|
||||||
</layoutGuides>
|
|
||||||
<view key="view" contentMode="scaleToFill" id="Ze5-6b-2t3">
|
|
||||||
<rect key="frame" x="0.0" y="0.0" width="393" height="852"/>
|
|
||||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
|
||||||
<subviews>
|
|
||||||
<imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" image="lcokStarMain.png" translatesAutoresizingMaskIntoConstraints="NO" id="YRO-k0-Ey4">
|
|
||||||
<rect key="frame" x="0.0" y="0.0" width="393" height="852"/>
|
|
||||||
</imageView>
|
|
||||||
</subviews>
|
|
||||||
<color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
|
||||||
<constraints>
|
|
||||||
<constraint firstItem="YRO-k0-Ey4" firstAttribute="top" secondItem="Ze5-6b-2t3" secondAttribute="top" id="akv-M9-cg9"/>
|
|
||||||
<constraint firstAttribute="bottom" secondItem="YRO-k0-Ey4" secondAttribute="bottom" id="dOX-RK-oMR"/>
|
|
||||||
<constraint firstAttribute="trailing" secondItem="YRO-k0-Ey4" secondAttribute="trailing" id="ggK-0n-yNj"/>
|
|
||||||
<constraint firstItem="YRO-k0-Ey4" firstAttribute="leading" secondItem="Ze5-6b-2t3" secondAttribute="leading" id="hJn-S1-TNY"/>
|
|
||||||
</constraints>
|
|
||||||
</view>
|
|
||||||
</viewController>
|
|
||||||
<placeholder placeholderIdentifier="IBFirstResponder" id="iYj-Kq-Ea1" userLabel="First Responder" sceneMemberID="firstResponder"/>
|
|
||||||
</objects>
|
|
||||||
<point key="canvasLocation" x="80.916030534351137" y="264.08450704225356"/>
|
|
||||||
</scene>
|
|
||||||
</scenes>
|
|
||||||
<resources>
|
|
||||||
<image name="lcokStarMain.png" width="750" height="1624"/>
|
|
||||||
</resources>
|
|
||||||
</document>
|
|
||||||
BIN
ios/Runner/Icon-App-60x60@3x.png
Executable file
|
After Width: | Height: | Size: 7.8 KiB |
@ -110,7 +110,7 @@
|
|||||||
<key>UIFileSharingEnabled</key>
|
<key>UIFileSharingEnabled</key>
|
||||||
<true/>
|
<true/>
|
||||||
<key>UILaunchStoryboardName</key>
|
<key>UILaunchStoryboardName</key>
|
||||||
<string>LaunchScreen</string>
|
<string>xhjLaunchScreen</string>
|
||||||
<key>UIMainStoryboardFile</key>
|
<key>UIMainStoryboardFile</key>
|
||||||
<string>Main</string>
|
<string>Main</string>
|
||||||
<key>UISupportedInterfaceOrientations</key>
|
<key>UISupportedInterfaceOrientations</key>
|
||||||
131
ios/Runner/Info_pre.plist
Executable file
@ -0,0 +1,131 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
|
<plist version="1.0">
|
||||||
|
<dict>
|
||||||
|
<key>CADisableMinimumFrameDurationOnPhone</key>
|
||||||
|
<true/>
|
||||||
|
<key>CFBundleDevelopmentRegion</key>
|
||||||
|
<string>$(DEVELOPMENT_LANGUAGE)</string>
|
||||||
|
<key>CFBundleDisplayName</key>
|
||||||
|
<string>$(BUNDLE_DISPLAY_NAME)</string>
|
||||||
|
<key>CFBundleExecutable</key>
|
||||||
|
<string>$(EXECUTABLE_NAME)</string>
|
||||||
|
<key>CFBundleIdentifier</key>
|
||||||
|
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
|
||||||
|
<key>CFBundleInfoDictionaryVersion</key>
|
||||||
|
<string>6.0</string>
|
||||||
|
<key>CFBundleName</key>
|
||||||
|
<string>$(BUNDLE_NAME)</string>
|
||||||
|
<key>CFBundlePackageType</key>
|
||||||
|
<string>APPL</string>
|
||||||
|
<key>CFBundleShortVersionString</key>
|
||||||
|
<string>$(FLUTTER_BUILD_NAME)</string>
|
||||||
|
<key>CFBundleSignature</key>
|
||||||
|
<string>????</string>
|
||||||
|
<key>CFBundleURLTypes</key>
|
||||||
|
<array>
|
||||||
|
<dict>
|
||||||
|
<key>CFBundleTypeRole</key>
|
||||||
|
<string>None</string>
|
||||||
|
<key>CFBundleURLIconFile</key>
|
||||||
|
<string></string>
|
||||||
|
<key>CFBundleURLName</key>
|
||||||
|
<string>com.sky.skysmartlock</string>
|
||||||
|
<key>CFBundleURLSchemes</key>
|
||||||
|
<array>
|
||||||
|
<string>skysmartlock</string>
|
||||||
|
<string></string>
|
||||||
|
<string></string>
|
||||||
|
</array>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>CFBundleTypeRole</key>
|
||||||
|
<string>Editor</string>
|
||||||
|
<key>CFBundleURLName</key>
|
||||||
|
<string>weixin</string>
|
||||||
|
<key>CFBundleURLSchemes</key>
|
||||||
|
<array>
|
||||||
|
<string>wxbe340095d2b8fd51</string>
|
||||||
|
</array>
|
||||||
|
</dict>
|
||||||
|
</array>
|
||||||
|
<key>CFBundleVersion</key>
|
||||||
|
<string>$(FLUTTER_BUILD_NUMBER)</string>
|
||||||
|
<key>LSApplicationQueriesSchemes</key>
|
||||||
|
<array>
|
||||||
|
<string>weixin</string>
|
||||||
|
<string>weixinULAPI</string>
|
||||||
|
<string>weixinURLParamsAPI</string>
|
||||||
|
</array>
|
||||||
|
<key>LSRequiresIPhoneOS</key>
|
||||||
|
<true/>
|
||||||
|
<key>NSAppTransportSecurity</key>
|
||||||
|
<dict>
|
||||||
|
<key>NSAllowsArbitraryLoads</key>
|
||||||
|
<true/>
|
||||||
|
<key>NSAllowsArbitraryLoadsInWebContent</key>
|
||||||
|
<true/>
|
||||||
|
<key>NSExceptionDomains</key>
|
||||||
|
<dict>
|
||||||
|
<key>jpush.cn</key>
|
||||||
|
<dict>
|
||||||
|
<key>NSExceptionAllowsInsecureHTTPLoads</key>
|
||||||
|
<true/>
|
||||||
|
<key>NSIncludesSubdomains</key>
|
||||||
|
<true/>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
<key>NSBluetoothAlwaysUsageDescription</key>
|
||||||
|
<string>The app uses bluetooth to find, connect and transfer data between different devices</string>
|
||||||
|
<key>NSBluetoothPeripheralUsageDescription</key>
|
||||||
|
<string>The app uses bluetooth to find, connect and transfer data between different devices</string>
|
||||||
|
<key>NSCameraUsageDescription</key>
|
||||||
|
<string>应用请求相机,以便于拍摄照片,用于头像上传及人脸认证</string>
|
||||||
|
<key>NSContactsUsageDescription</key>
|
||||||
|
<string>Reason we need access to the contact list</string>
|
||||||
|
<key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
|
||||||
|
<string>应用在前台和后台的时候可以搜到更新的位置信息</string>
|
||||||
|
<key>NSLocationAlwaysUsageDescription</key>
|
||||||
|
<string>应用在后台的时候可以搜到更新的位置信息</string>
|
||||||
|
<key>NSLocationWhenInUseUsageDescription</key>
|
||||||
|
<string>应用在前台的时候可以搜到更新的位置信息</string>
|
||||||
|
<key>NSMicrophoneUsageDescription</key>
|
||||||
|
<string>应用请求麦克风用来通话</string>
|
||||||
|
<key>NSPhotoLibraryUsageDescription</key>
|
||||||
|
<string>应用请求相册用于头像上传</string>
|
||||||
|
<key>UIApplicationSceneManifest</key>
|
||||||
|
<dict>
|
||||||
|
<key>UISceneConfigurations</key>
|
||||||
|
<dict/>
|
||||||
|
</dict>
|
||||||
|
<key>UIApplicationSupportsIndirectInputEvents</key>
|
||||||
|
<true/>
|
||||||
|
<key>UIBackgroundModes</key>
|
||||||
|
<array>
|
||||||
|
<string>remote-notification</string>
|
||||||
|
</array>
|
||||||
|
<key>UILaunchStoryboardName</key>
|
||||||
|
<string>xhjLaunchScreen</string>
|
||||||
|
<key>UIMainStoryboardFile</key>
|
||||||
|
<string>Main</string>
|
||||||
|
<key>UISupportedInterfaceOrientations</key>
|
||||||
|
<array>
|
||||||
|
<string>UIInterfaceOrientationPortrait</string>
|
||||||
|
</array>
|
||||||
|
<key>UISupportedInterfaceOrientations~ipad</key>
|
||||||
|
<array>
|
||||||
|
<string>UIInterfaceOrientationLandscapeLeft</string>
|
||||||
|
<string>UIInterfaceOrientationLandscapeRight</string>
|
||||||
|
<string>UIInterfaceOrientationPortrait</string>
|
||||||
|
</array>
|
||||||
|
<key>UIViewControllerBasedStatusBarAppearance</key>
|
||||||
|
<false/>
|
||||||
|
<key>NSFileProtectionKey</key>
|
||||||
|
<string>NSFileProtectionCompleteUntilFirstUserAuthentication</string>
|
||||||
|
<key>UIFileSharingEnabled</key>
|
||||||
|
<true/>
|
||||||
|
<key>io.flutter.embedded_views_preview</key>
|
||||||
|
<true/>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
||||||
131
ios/Runner/Info_sky.plist
Executable file
@ -0,0 +1,131 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
|
<plist version="1.0">
|
||||||
|
<dict>
|
||||||
|
<key>CADisableMinimumFrameDurationOnPhone</key>
|
||||||
|
<true/>
|
||||||
|
<key>CFBundleDevelopmentRegion</key>
|
||||||
|
<string>$(DEVELOPMENT_LANGUAGE)</string>
|
||||||
|
<key>CFBundleDisplayName</key>
|
||||||
|
<string>$(BUNDLE_DISPLAY_NAME)</string>
|
||||||
|
<key>CFBundleExecutable</key>
|
||||||
|
<string>$(EXECUTABLE_NAME)</string>
|
||||||
|
<key>CFBundleIdentifier</key>
|
||||||
|
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
|
||||||
|
<key>CFBundleInfoDictionaryVersion</key>
|
||||||
|
<string>6.0</string>
|
||||||
|
<key>CFBundleName</key>
|
||||||
|
<string>$(BUNDLE_NAME)</string>
|
||||||
|
<key>CFBundlePackageType</key>
|
||||||
|
<string>APPL</string>
|
||||||
|
<key>CFBundleShortVersionString</key>
|
||||||
|
<string>$(FLUTTER_BUILD_NAME)</string>
|
||||||
|
<key>CFBundleSignature</key>
|
||||||
|
<string>????</string>
|
||||||
|
<key>CFBundleURLTypes</key>
|
||||||
|
<array>
|
||||||
|
<dict>
|
||||||
|
<key>CFBundleTypeRole</key>
|
||||||
|
<string>None</string>
|
||||||
|
<key>CFBundleURLIconFile</key>
|
||||||
|
<string></string>
|
||||||
|
<key>CFBundleURLName</key>
|
||||||
|
<string>com.sky.skysmartlock</string>
|
||||||
|
<key>CFBundleURLSchemes</key>
|
||||||
|
<array>
|
||||||
|
<string>skysmartlock</string>
|
||||||
|
<string></string>
|
||||||
|
<string></string>
|
||||||
|
</array>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>CFBundleTypeRole</key>
|
||||||
|
<string>Editor</string>
|
||||||
|
<key>CFBundleURLName</key>
|
||||||
|
<string>weixin</string>
|
||||||
|
<key>CFBundleURLSchemes</key>
|
||||||
|
<array>
|
||||||
|
<string>wxbe340095d2b8fd51</string>
|
||||||
|
</array>
|
||||||
|
</dict>
|
||||||
|
</array>
|
||||||
|
<key>CFBundleVersion</key>
|
||||||
|
<string>$(FLUTTER_BUILD_NUMBER)</string>
|
||||||
|
<key>LSApplicationQueriesSchemes</key>
|
||||||
|
<array>
|
||||||
|
<string>weixin</string>
|
||||||
|
<string>weixinULAPI</string>
|
||||||
|
<string>weixinURLParamsAPI</string>
|
||||||
|
</array>
|
||||||
|
<key>LSRequiresIPhoneOS</key>
|
||||||
|
<true/>
|
||||||
|
<key>NSAppTransportSecurity</key>
|
||||||
|
<dict>
|
||||||
|
<key>NSAllowsArbitraryLoads</key>
|
||||||
|
<true/>
|
||||||
|
<key>NSAllowsArbitraryLoadsInWebContent</key>
|
||||||
|
<true/>
|
||||||
|
<key>NSExceptionDomains</key>
|
||||||
|
<dict>
|
||||||
|
<key>jpush.cn</key>
|
||||||
|
<dict>
|
||||||
|
<key>NSExceptionAllowsInsecureHTTPLoads</key>
|
||||||
|
<true/>
|
||||||
|
<key>NSIncludesSubdomains</key>
|
||||||
|
<true/>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
<key>NSBluetoothAlwaysUsageDescription</key>
|
||||||
|
<string>The app uses bluetooth to find, connect and transfer data between different devices</string>
|
||||||
|
<key>NSBluetoothPeripheralUsageDescription</key>
|
||||||
|
<string>The app uses bluetooth to find, connect and transfer data between different devices</string>
|
||||||
|
<key>NSCameraUsageDescription</key>
|
||||||
|
<string>应用请求相机,以便于拍摄照片,用于头像上传及人脸认证</string>
|
||||||
|
<key>NSContactsUsageDescription</key>
|
||||||
|
<string>Reason we need access to the contact list</string>
|
||||||
|
<key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
|
||||||
|
<string>应用在前台和后台的时候可以搜到更新的位置信息</string>
|
||||||
|
<key>NSLocationAlwaysUsageDescription</key>
|
||||||
|
<string>应用在后台的时候可以搜到更新的位置信息</string>
|
||||||
|
<key>NSLocationWhenInUseUsageDescription</key>
|
||||||
|
<string>应用在前台的时候可以搜到更新的位置信息</string>
|
||||||
|
<key>NSMicrophoneUsageDescription</key>
|
||||||
|
<string>应用请求麦克风用来通话</string>
|
||||||
|
<key>NSPhotoLibraryUsageDescription</key>
|
||||||
|
<string>应用请求相册用于头像上传</string>
|
||||||
|
<key>UIApplicationSceneManifest</key>
|
||||||
|
<dict>
|
||||||
|
<key>UISceneConfigurations</key>
|
||||||
|
<dict/>
|
||||||
|
</dict>
|
||||||
|
<key>UIApplicationSupportsIndirectInputEvents</key>
|
||||||
|
<true/>
|
||||||
|
<key>UIBackgroundModes</key>
|
||||||
|
<array>
|
||||||
|
<string>remote-notification</string>
|
||||||
|
</array>
|
||||||
|
<key>UILaunchStoryboardName</key>
|
||||||
|
<string>skyLaunchScreen</string>
|
||||||
|
<key>UIMainStoryboardFile</key>
|
||||||
|
<string>Main</string>
|
||||||
|
<key>UISupportedInterfaceOrientations</key>
|
||||||
|
<array>
|
||||||
|
<string>UIInterfaceOrientationPortrait</string>
|
||||||
|
</array>
|
||||||
|
<key>UISupportedInterfaceOrientations~ipad</key>
|
||||||
|
<array>
|
||||||
|
<string>UIInterfaceOrientationLandscapeLeft</string>
|
||||||
|
<string>UIInterfaceOrientationLandscapeRight</string>
|
||||||
|
<string>UIInterfaceOrientationPortrait</string>
|
||||||
|
</array>
|
||||||
|
<key>UIViewControllerBasedStatusBarAppearance</key>
|
||||||
|
<false/>
|
||||||
|
<key>NSFileProtectionKey</key>
|
||||||
|
<string>NSFileProtectionCompleteUntilFirstUserAuthentication</string>
|
||||||
|
<key>UIFileSharingEnabled</key>
|
||||||
|
<true/>
|
||||||
|
<key>io.flutter.embedded_views_preview</key>
|
||||||
|
<true/>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
||||||
131
ios/Runner/Info_xhj.plist
Executable file
@ -0,0 +1,131 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
|
<plist version="1.0">
|
||||||
|
<dict>
|
||||||
|
<key>CADisableMinimumFrameDurationOnPhone</key>
|
||||||
|
<true/>
|
||||||
|
<key>CFBundleDevelopmentRegion</key>
|
||||||
|
<string>$(DEVELOPMENT_LANGUAGE)</string>
|
||||||
|
<key>CFBundleDisplayName</key>
|
||||||
|
<string>$(BUNDLE_DISPLAY_NAME)</string>
|
||||||
|
<key>CFBundleExecutable</key>
|
||||||
|
<string>$(EXECUTABLE_NAME)</string>
|
||||||
|
<key>CFBundleIdentifier</key>
|
||||||
|
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
|
||||||
|
<key>CFBundleInfoDictionaryVersion</key>
|
||||||
|
<string>6.0</string>
|
||||||
|
<key>CFBundleName</key>
|
||||||
|
<string>$(BUNDLE_NAME)</string>
|
||||||
|
<key>CFBundlePackageType</key>
|
||||||
|
<string>APPL</string>
|
||||||
|
<key>CFBundleShortVersionString</key>
|
||||||
|
<string>$(FLUTTER_BUILD_NAME)</string>
|
||||||
|
<key>CFBundleSignature</key>
|
||||||
|
<string>????</string>
|
||||||
|
<key>CFBundleURLTypes</key>
|
||||||
|
<array>
|
||||||
|
<dict>
|
||||||
|
<key>CFBundleTypeRole</key>
|
||||||
|
<string>None</string>
|
||||||
|
<key>CFBundleURLIconFile</key>
|
||||||
|
<string></string>
|
||||||
|
<key>CFBundleURLName</key>
|
||||||
|
<string>com.sky.skysmartlock</string>
|
||||||
|
<key>CFBundleURLSchemes</key>
|
||||||
|
<array>
|
||||||
|
<string>skysmartlock</string>
|
||||||
|
<string></string>
|
||||||
|
<string></string>
|
||||||
|
</array>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>CFBundleTypeRole</key>
|
||||||
|
<string>Editor</string>
|
||||||
|
<key>CFBundleURLName</key>
|
||||||
|
<string>weixin</string>
|
||||||
|
<key>CFBundleURLSchemes</key>
|
||||||
|
<array>
|
||||||
|
<string>wxbe340095d2b8fd51</string>
|
||||||
|
</array>
|
||||||
|
</dict>
|
||||||
|
</array>
|
||||||
|
<key>CFBundleVersion</key>
|
||||||
|
<string>$(FLUTTER_BUILD_NUMBER)</string>
|
||||||
|
<key>LSApplicationQueriesSchemes</key>
|
||||||
|
<array>
|
||||||
|
<string>weixin</string>
|
||||||
|
<string>weixinULAPI</string>
|
||||||
|
<string>weixinURLParamsAPI</string>
|
||||||
|
</array>
|
||||||
|
<key>LSRequiresIPhoneOS</key>
|
||||||
|
<true/>
|
||||||
|
<key>NSAppTransportSecurity</key>
|
||||||
|
<dict>
|
||||||
|
<key>NSAllowsArbitraryLoads</key>
|
||||||
|
<true/>
|
||||||
|
<key>NSAllowsArbitraryLoadsInWebContent</key>
|
||||||
|
<true/>
|
||||||
|
<key>NSExceptionDomains</key>
|
||||||
|
<dict>
|
||||||
|
<key>jpush.cn</key>
|
||||||
|
<dict>
|
||||||
|
<key>NSExceptionAllowsInsecureHTTPLoads</key>
|
||||||
|
<true/>
|
||||||
|
<key>NSIncludesSubdomains</key>
|
||||||
|
<true/>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
<key>NSBluetoothAlwaysUsageDescription</key>
|
||||||
|
<string>The app uses bluetooth to find, connect and transfer data between different devices</string>
|
||||||
|
<key>NSBluetoothPeripheralUsageDescription</key>
|
||||||
|
<string>The app uses bluetooth to find, connect and transfer data between different devices</string>
|
||||||
|
<key>NSCameraUsageDescription</key>
|
||||||
|
<string>应用请求相机,以便于拍摄照片,用于头像上传及人脸认证</string>
|
||||||
|
<key>NSContactsUsageDescription</key>
|
||||||
|
<string>Reason we need access to the contact list</string>
|
||||||
|
<key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
|
||||||
|
<string>应用在前台和后台的时候可以搜到更新的位置信息</string>
|
||||||
|
<key>NSLocationAlwaysUsageDescription</key>
|
||||||
|
<string>应用在后台的时候可以搜到更新的位置信息</string>
|
||||||
|
<key>NSLocationWhenInUseUsageDescription</key>
|
||||||
|
<string>应用在前台的时候可以搜到更新的位置信息</string>
|
||||||
|
<key>NSMicrophoneUsageDescription</key>
|
||||||
|
<string>应用请求麦克风用来通话</string>
|
||||||
|
<key>NSPhotoLibraryUsageDescription</key>
|
||||||
|
<string>应用请求相册用于头像上传</string>
|
||||||
|
<key>UIApplicationSceneManifest</key>
|
||||||
|
<dict>
|
||||||
|
<key>UISceneConfigurations</key>
|
||||||
|
<dict/>
|
||||||
|
</dict>
|
||||||
|
<key>UIApplicationSupportsIndirectInputEvents</key>
|
||||||
|
<true/>
|
||||||
|
<key>UIBackgroundModes</key>
|
||||||
|
<array>
|
||||||
|
<string>remote-notification</string>
|
||||||
|
</array>
|
||||||
|
<key>UILaunchStoryboardName</key>
|
||||||
|
<string>xhjLaunchScreen</string>
|
||||||
|
<key>UIMainStoryboardFile</key>
|
||||||
|
<string>Main</string>
|
||||||
|
<key>UISupportedInterfaceOrientations</key>
|
||||||
|
<array>
|
||||||
|
<string>UIInterfaceOrientationPortrait</string>
|
||||||
|
</array>
|
||||||
|
<key>UISupportedInterfaceOrientations~ipad</key>
|
||||||
|
<array>
|
||||||
|
<string>UIInterfaceOrientationLandscapeLeft</string>
|
||||||
|
<string>UIInterfaceOrientationLandscapeRight</string>
|
||||||
|
<string>UIInterfaceOrientationPortrait</string>
|
||||||
|
</array>
|
||||||
|
<key>UIViewControllerBasedStatusBarAppearance</key>
|
||||||
|
<false/>
|
||||||
|
<key>NSFileProtectionKey</key>
|
||||||
|
<string>NSFileProtectionCompleteUntilFirstUserAuthentication</string>
|
||||||
|
<key>UIFileSharingEnabled</key>
|
||||||
|
<true/>
|
||||||
|
<key>io.flutter.embedded_views_preview</key>
|
||||||
|
<true/>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
||||||
|
Before Width: | Height: | Size: 281 B |
|
Before Width: | Height: | Size: 899 B |
|
Before Width: | Height: | Size: 466 B |
|
Before Width: | Height: | Size: 198 KiB |
|
Before Width: | Height: | Size: 47 KiB |
|
Before Width: | Height: | Size: 2.7 KiB |
|
Before Width: | Height: | Size: 981 B |
|
Before Width: | Height: | Size: 808 B |
|
Before Width: | Height: | Size: 624 B |
|
Before Width: | Height: | Size: 319 B |
|
Before Width: | Height: | Size: 260 B |
|
Before Width: | Height: | Size: 310 B |
|
Before Width: | Height: | Size: 1.0 KiB |
|
Before Width: | Height: | Size: 947 B |
|
Before Width: | Height: | Size: 4.4 KiB |
|
Before Width: | Height: | Size: 5.0 KiB |
|
Before Width: | Height: | Size: 24 KiB |
|
Before Width: | Height: | Size: 2.8 KiB |
|
Before Width: | Height: | Size: 2.4 KiB |
|
Before Width: | Height: | Size: 2.0 KiB |
|
Before Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 3.8 KiB |
|
Before Width: | Height: | Size: 3.8 KiB |
|
Before Width: | Height: | Size: 5.0 KiB |
|
Before Width: | Height: | Size: 10 KiB |
|
Before Width: | Height: | Size: 5.0 KiB |
|
Before Width: | Height: | Size: 262 KiB |
|
Before Width: | Height: | Size: 47 KiB |
|
Before Width: | Height: | Size: 19 KiB |