Skip to content

Commit dd6652b

Browse files
committed
update for path of the upload keystore
which is used for "app signing by google play"
1 parent 2bc95d8 commit dd6652b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

fastlane/platforms/android.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,12 +83,12 @@
8383
dest = File.expand_path('..', '.')
8484

8585
# we export this variable so that Gradle knows where to find the .properties file
86-
signing_props_dest = "#{dest}/android/app/signing.properties"
86+
signing_props_dest = "#{dest}/android/app/upload-keystore.properties"
8787
ENV['KEYSTORE_FILE'] = signing_props_dest
8888

8989
pairs = [
90-
{:from => "#{src}/signing.properties", :to => signing_props_dest},
91-
{:from => "#{src}/my-release-key.keystore", :to => "#{dest}/android/app/my-release-key.keystore"},
90+
{:from => "#{src}/upload-keystore.properties", :to => signing_props_dest},
91+
{:from => "#{src}/upload-keystore.keystore", :to => "#{dest}/android/app/upload-keystore.keystore"},
9292
{:from => "#{src}/play-private-key.json", :to => "#{dest}/fastlane/play-private-key.json"},
9393
]
9494

0 commit comments

Comments
 (0)