Commit f21f0fe5 authored by lmj_521aiau@163.com's avatar lmj_521aiau@163.com

fastlane

parent 77fa31a4
No preview for this file type
File added
source "https://rubygems.org"
gem "fastlane"
plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile')
eval_gemfile(plugins_path) if File.exist?(plugins_path)
...@@ -1858,8 +1858,8 @@ ...@@ -1858,8 +1858,8 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES; CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = ZhiJi/ZhiJi.entitlements; CODE_SIGN_ENTITLEMENTS = ZhiJi/ZhiJi.entitlements;
CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_IDENTITY = "iPhone Developer";
CODE_SIGN_STYLE = Automatic; CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 100; CURRENT_PROJECT_VERSION = 100;
DEVELOPMENT_TEAM = 6244YAV33V; DEVELOPMENT_TEAM = 6244YAV33V;
FRAMEWORK_SEARCH_PATHS = ( FRAMEWORK_SEARCH_PATHS = (
...@@ -1940,7 +1940,7 @@ ...@@ -1940,7 +1940,7 @@
); );
PRODUCT_BUNDLE_IDENTIFIER = com.lmj.overseas; PRODUCT_BUNDLE_IDENTIFIER = com.lmj.overseas;
PRODUCT_NAME = "Caring Map"; PRODUCT_NAME = "Caring Map";
PROVISIONING_PROFILE_SPECIFIER = ""; PROVISIONING_PROFILE_SPECIFIER = "match Development com.lmj.overseas";
SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/ZhiJi/Classes/Main/Base/ZhiJi-Bridging-Header.h"; SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/ZhiJi/Classes/Main/Base/ZhiJi-Bridging-Header.h";
SWIFT_OBJC_INTERFACE_HEADER_NAME = "ZhiJi-Swift.h"; SWIFT_OBJC_INTERFACE_HEADER_NAME = "ZhiJi-Swift.h";
SWIFT_OPTIMIZATION_LEVEL = "-Onone"; SWIFT_OPTIMIZATION_LEVEL = "-Onone";
...@@ -1956,8 +1956,8 @@ ...@@ -1956,8 +1956,8 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES; CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = ZhiJi/ZhiJi.entitlements; CODE_SIGN_ENTITLEMENTS = ZhiJi/ZhiJi.entitlements;
CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_IDENTITY = "iPhone Distribution";
CODE_SIGN_STYLE = Automatic; CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 100; CURRENT_PROJECT_VERSION = 100;
DEBUG_INFORMATION_FORMAT = dwarf; DEBUG_INFORMATION_FORMAT = dwarf;
DEFINES_MODULE = YES; DEFINES_MODULE = YES;
...@@ -2040,7 +2040,7 @@ ...@@ -2040,7 +2040,7 @@
); );
PRODUCT_BUNDLE_IDENTIFIER = com.lmj.overseas; PRODUCT_BUNDLE_IDENTIFIER = com.lmj.overseas;
PRODUCT_NAME = "Caring Map"; PRODUCT_NAME = "Caring Map";
PROVISIONING_PROFILE_SPECIFIER = ""; PROVISIONING_PROFILE_SPECIFIER = "match AdHoc com.lmj.overseas";
SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/ZhiJi/Classes/Main/Base/ZhiJi-Bridging-Header.h"; SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/ZhiJi/Classes/Main/Base/ZhiJi-Bridging-Header.h";
SWIFT_OBJC_INTERFACE_HEADER_NAME = "ZhiJi-Swift.h"; SWIFT_OBJC_INTERFACE_HEADER_NAME = "ZhiJi-Swift.h";
SWIFT_VERSION = 5.0; SWIFT_VERSION = 5.0;
......
app_identifier("com.lmj.overseas") # The bundle identifier of your app
apple_id("lmj_521aiau@163.com") # Your Apple email address
itc_team_id("121852735") # App Store Connect Team ID
team_id("6244YAV33V") # Developer Portal Team ID
# For more information about the Appfile, see:
# https://docs.fastlane.tools/advanced/#appfile
# The Deliverfile allows you to store various App Store Connect metadata
# For more information, check out the docs
# https://docs.fastlane.tools/actions/deliver/
# This file contains the fastlane.tools configuration
# You can find the documentation at https://docs.fastlane.tools
#
# For a list of all available actions, check out
#
# https://docs.fastlane.tools/actions
#
# For a list of all available plugins, check out
#
# https://docs.fastlane.tools/plugins/available-plugins
#
# Uncomment the line if you want fastlane to automatically update itself
# update_fastlane
default_platform(:ios)
platform :ios do
lane :beta do
build_app(export_method: "ad-hoc")
pgyer(api_key: "f59e2e71c25ff32a04890dba176ccc9a", user_key: "365b69831520f9a2177bb2723398d933")
end
#desc "Push a new release build to the App Store"
# lane :release do
# increment_build_number(xcodeproj: "ZhiJi.xcodeproj")
# build_app(workspace: "ZhiJi.xcworkspace", scheme: "ZhiJi")
# upload_to_app_store
# end
end
git_url("git@gitlab.huolea.com:lmi/certificates.git")
storage_mode("git")
type("development") # The default type, can be: appstore, adhoc, enterprise or development
# app_identifier(["tools.fastlane.app", "tools.fastlane.app2"])
# username("user@fastlane.tools") # Your Apple Developer Portal username
# For all available options run `fastlane match --help`
# Remove the # in the beginning of the line to enable the other options
# The docs are available on https://docs.fastlane.tools/actions/match
# Autogenerated by fastlane
#
# Ensure this file is checked in to source control!
gem 'fastlane-plugin-versioning'
gem 'fastlane-plugin-pgyer'
fastlane documentation
================
# Installation
Make sure you have the latest version of the Xcode command line tools installed:
```
xcode-select --install
```
Install _fastlane_ using
```
[sudo] gem install fastlane -NV
```
or alternatively using `brew install fastlane`
# Available Actions
## iOS
### ios beta
```
fastlane ios beta
```
----
This README.md is auto-generated and will be re-generated every time [fastlane](https://fastlane.tools) is run.
More information about fastlane can be found on [fastlane.tools](https://fastlane.tools).
The documentation of fastlane can be found on [docs.fastlane.tools](https://docs.fastlane.tools).
Caring Map是一个通过地图让你和朋友随时随地保持联系的APP。
主要功能:
1、通过手机号添加好友;
2、与自己的好友共享位置;
3、发送紧急求助给紧急联系人。
*查看他人定位的功能需要好友同意才可以使用
【Caring Map自动订阅会员说明】
1、新用户3天免费试用,到期后将自动续订为付费订阅
2、服务名称:Caring Map VIP会员包年(12个月)
3、订阅价格:Caring Map VIP会员包年:658元/年
【用户协议】
https://h5v2.linking100.com/sspapiNovel/su/custom/CaringMap/user.html
【隐私政策】
https://h5v2.linking100.com/sspapiNovel/su/custom/CaringMap/privacy.html
https://h5v2.linking100.com/sspapiNovel/su/custom/CaringMap/privacy.html
http://www.byteconverge.com/
产品主要功能为记录用户的行动轨迹。在App启动期间,开启手机定位功能,记录用户的行动路径。用户可以随时查看自己的轨迹,也可以邀请好友,在征得好友同意后,知晓对方的行动轨迹。
+1 8712341234,验证码1234(非会员账号)
+1 5001128999,验证码8899(会员账号)
沙盒测试账号:zxhl_test1_lmj@163.com Aa135790
<?xml version="1.0" encoding="UTF-8"?>
<testsuites>
<testsuite name="fastlane.lanes">
<testcase classname="fastlane.lanes" name="0: default_platform" time="0.000429">
</testcase>
<testcase classname="fastlane.lanes" name="1: build_app" time="837.479766">
</testcase>
<testcase classname="fastlane.lanes" name="2: pgyer" time="11.149557">
</testcase>
</testsuite>
</testsuites>
Put all screenshots you want to use inside the folder of its language (e.g. en-US).
The device type will automatically be recognized using the image resolution. Apple TV screenshots
should be stored in a subdirectory named appleTV with language folders inside of it. iMessage
screenshots, like Apple TV screenshots, should also be stored in a subdirectory named iMessage
with language folders inside of it.
The screenshots can be named whatever you want, but keep in mind they are sorted alphabetically.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment