tiapp.xml ファイルには、実稼働環境と開発環境のキーが保持されます。
コピーして貼り付けて切り替えることもできると思いますが、本番環境をテストする簡単な方法はありますか? 「production = true」などのxmlファイルのタグのように?
tiapp.xml ファイルには、実稼働環境と開発環境のキーが保持されます。
コピーして貼り付けて切り替えることもできると思いますが、本番環境をテストする簡単な方法はありますか? 「production = true」などのxmlファイルのタグのように?
次のtiapp.xml
ようになります。
<property name="appc-app-id" type="string">123</property>
<property name="acs-authbase-url-development" type="string">https://secure-identity.cloud.appcelerator.com</property>
<property name="acs-base-url-development" type="string">https://api.cloud.appcelerator.com</property>
<property name="acs-oauth-secret-development" type="string">123</property>
<property name="acs-oauth-key-development" type="string">123</property>
<property name="acs-api-key-development" type="string">123</property>
<property name="acs-username-development" type="string">appc_app_user_dev</property>
<property name="acs-password-development" type="string">123</property>
<property name="acs-authbase-url-production" type="string">https://secure-identity.cloud.appcelerator.com</property>
<property name="acs-base-url-production" type="string">https://api.cloud.appcelerator.com</property>
<property name="acs-oauth-secret-production" type="string">123</property>
<property name="acs-oauth-key-production" type="string">123</property>
<property name="acs-api-key-production" type="string">123</property>
<property name="acs-username-production" type="string">appc_app_user</property>
<property name="acs-password-production" type="string">123</property>
<property name="appc-org-id" type="string">123</property>
<property name="appc-creator-user-id" type="string">123</property>
ご覧のとおり、サフィックス-development
と-production
サフィックスは、その値が使用される環境を決定します。サフィックスを省略して、すべての環境で使用することもできます。