The Taro Playground App is a cross-platform application developed using Taro, to help developers develop and debug Taro applications. It is initialized using taro react native template.
Android | iOS |
---|---|
https://github.com/wuba/taro-playground/releases | https://apps.apple.com/cn/app/taro-playground/id1576830673 |
- taro:
@tarojs/cli@^3.2.0
- framework: 'react'
Taro version | React Native version | branch |
---|---|---|
>= 3.2.0, <= 3.3.9 | 0.64 | releases/rn-0.64+taro-3.3.9 |
>= 3.3.10 | 0.66 | main |
install peerDependencies of
@tarojs/taro-rn
@tarojs/components-rn
and@tarojs/router-rn
, it will also runpost-install
. please modify and runupgradePeerdeps
script when you change taro version.run this script after project inited.
yarn upgradePeerdeps
run this script when you add new react native library or update react native library version.
see pod-install for more infomation.
yarn podInstall
yarn ios
yarn android
yarn start
yarn start --reset-cache
yarn build:rn --platform ios
yarn build:rn --platform android
see publishing-to-app-store for details.
see signed-apk-android for details.
use github actions to build your apps. this template include basic github action config.
see .github/workflows for details.
we assemble debug and release product for both android and ios when you push or pull request on master branch by default. desin your own pipeline by modify .github/workflows files.
see events-that-trigger-workflows
Modify the following configuration items for package and publish your app.
.github/workflows/assemble_ios_debug.yml .github/workflows/assemble_ios_release.yml
env:
APP_ID: com.taro.demo # Application Product Bundle Identifier
APP_NAME: Taro Demo # The Display Name of your app
IOS_VERSION_NUMBER: 1.0.0 # Application version number
IOS_BUILD_NUMBER: 1.0.0.0 # Application build number, used by release only.
IOS_TEAM_ID: XXXXXXXXXX # Team ID, is used when upgrading project
IOS_PROVISIONING_PROFILE_SPECIFIER: Product_profile # Provisioning profile name to use for code signing
IOS_CODE_SIGN_IDENTITY: iPhone Distribution # Code signing identity type (iPhone Developer, iPhone Distribution)
IOS_SIGNING_CERTIFICATE_P12_DATA: ${{secrets.RELEASE_SIGNING_CERTIFICATE_P12_DATA}}
IOS_SIGNING_CERTIFICATE_PASSWORD: ${{secrets.RELEASE_SIGNING_CERTIFICATE_PASSWORD}}
IOS_PROVISIONING_PROFILE_DATA: ${{secrets.RELEASE_PROVISIONING_PROFILE_DATA}}
IOS_APP_STORE_CONNECT_USERNAME: ${{secrets.APP_STORE_CONNECT_USERNAME}} # This secret should be set to the Apple ID of your developer account, used by release only.
IOS_APP_STORE_CONNECT_PASSWORD: ${{secrets.APP_STORE_CONNECT_PASSWORD}} # used by release only.
values like ${{secrets.xxxxx}} are manually generated and store in your github encrypted secrets.
cat Certificates.p12 | base64 | pbcopy
encryption password of your Personal Information Exchange (.p12)
cat profile.mobileprovision | base64 | pbcopy
This secret should be set to an application-specific password for your Apple ID account. Follow these instructions to create an application-specific password.
Modify the following configuration items for package and publish your app.
.github/workflows/assemble_android_debug.yml .github/workflows/assemble_android_release.yml
env:
APP_ID: com.taro.demo # Application Product Bundle Identifier
APP_NAME: Taro Demo # The Display Name of your app
ANDROID_VERSION_NAME: 1.0.0 # version name
ANDROID_VERSION_CODE: 10 # version code
ANDROID_KEYSTORE_FILE: debug.keystore # key store file
ANDROID_KEYSTORE_PASSWORD: android # key store password
ANDROID_KEYSTORE_KEY_ALIAS: androiddebugkey # key store key alias
ANDROID_KEYSTORE_KEY_PASSWORD: android # key store key password
For the security of your app, please regenerate the .keystore file and store the password in your github encrypted secrets.
The source code is customized for the Taro palyground application and is for reference only. If you want to use it directly, please make the following changes.
- Use your own signature file.
- Customize your app id, app name, app launcher, etc.
- Remove the attention block in ios/Podfile.
We sincerely hope that developers can provide valuable comments and suggestions, and developers can provide feedback on suggestions and problems by submitting PR or Issue.
If you have other questions, you can join the communication group for help.
Taro Playground source code is available under the Apache License V2.
Taro and its graphic trademarks are owned by Beijing Jingdong Century Trading Co., Ltd. and licensed to the Taro Playground project.