diskutil erasevolume HFS+ 'RAM Disk' `hdiutil attach -nobrowse -nomount ram://XXXXX`where XXXXX is the size of the RAM disk in terms of memory blocks.
Notes:
| // See https://developer.android.com/studio/publish/app-signing#secure-shared-keystore | |
| def keystorePropertiesFile = rootProject.file("keystore.properties") | |
| def keystoreProperties | |
| def signedReleases = keystorePropertiesFile.exists() | |
| if (signedReleases) { | |
| println("Using ${keystorePropertiesFile} for release signingConfig...") | |
| keystoreProperties = new Properties() | |
| keystoreProperties.load(new FileInputStream(keystorePropertiesFile)) | |
| } |
| /* Copyright 2019 The Android Open Source Project | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * | |
| * https://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software | |
| * distributed under the License is distributed on an "AS IS" BASIS, |