Skip to content

Commit

Permalink
master - HOTFIX, changing build type
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisob55 committed Nov 1, 2019
1 parent 43e0876 commit 97dc5d2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -144,9 +144,9 @@ task fatFramework(type: FatFrameworkTask) {
final File frameworkDir = new File(buildDir, "xcode-frameworks")
destinationDir = frameworkDir

def ios32Framework = kotlin.targets.ios32.binaries.getFramework(frameworkName, 'DEBUG')
def ios64Framework = kotlin.targets.ios64.binaries.getFramework(frameworkName, 'DEBUG')
def iosSimulatorFramework = kotlin.targets.iosSimulator.binaries.getFramework(frameworkName, 'DEBUG')
def ios32Framework = kotlin.targets.ios32.binaries.getFramework(frameworkName, 'RELEASE')
def ios64Framework = kotlin.targets.ios64.binaries.getFramework(frameworkName, 'RELEASE')
def iosSimulatorFramework = kotlin.targets.iosSimulator.binaries.getFramework(frameworkName, 'RELEASE')

dependsOn ios32Framework.linkTask
dependsOn ios64Framework.linkTask
Expand Down

0 comments on commit 97dc5d2

Please sign in to comment.