Skip to content

Commit

Permalink
Rename the Android fragment support library JAR (flutter#6400)
Browse files Browse the repository at this point in the history
  • Loading branch information
jason-simmons authored Oct 1, 2018
1 parent 4213ac1 commit b59c864
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions tools/android_support/download_android_support.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def GetInstalledVersion(version_stamp):

def main():
# Read latest version.
version_stamp = 'VERSION_SUPPORT_V13'
version_stamp = 'VERSION_SUPPORT_FRAGMENT'
version = ''
with open(os.path.join(THIS_DIR, version_stamp)) as f:
version = f.read().strip()
Expand All @@ -36,7 +36,7 @@ def main():
aar_zip = zipfile.ZipFile(cStringIO.StringIO(aar))
if not os.path.exists(INSTALL_DIR):
os.mkdir(INSTALL_DIR)
with open(os.path.join(INSTALL_DIR, 'android_support_v13.jar'), 'w') as f:
with open(os.path.join(INSTALL_DIR, 'android_support_fragment.jar'), 'w') as f:
f.write(aar_zip.read('classes.jar'))

# Write version as the last step.
Expand Down

0 comments on commit b59c864

Please sign in to comment.