Skip to content

Commit

Permalink
feat: add default keystore (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
zhiqingchen authored Nov 26, 2021
1 parent 1c92c29 commit b4e03b5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ buck-out/
*.keystore
!debug.keystore
!release.keystore
!default.keystore

# fastlane
#
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,9 @@ For the security of your app, please regenerate the .keystore file and store the

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.

0. Customize your app id, app name, app launcher, etc.
1. Remove the attention block in ios/Podfile.
0. Use your own signature file.
1. Customize your app id, app name, app launcher, etc.
2. Remove the attention block in ios/Podfile.

## Contributing

Expand Down
Binary file added android/app/default.keystore
Binary file not shown.
6 changes: 3 additions & 3 deletions android/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ org.gradle.jvmargs=-Xmx1024m

# defalut properties
# app applicationId
app_id=com.taro.demo
app_id=com.tarodemo
# app name
app_name=Taro Demo
app_icon=ic_launcher
Expand All @@ -42,7 +42,7 @@ version_name=1.0.0
# app abiFilters
abi_filters=armeabi-v7a, arm64-v8a, x86, x86_64
# keystore
keystore_file=debug.keystore
keystore_file=default.keystore
keystore_password=android
keystore_key_alias=androiddebugkey
keystore_key_alias=android
keystore_key_password=android

0 comments on commit b4e03b5

Please sign in to comment.