Skip to content

Commit 4e462db

Browse files
committed
minor tweaks
1 parent c9c16f1 commit 4e462db

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description = 'Gradle build for iOS'
33
defaultTasks = ['tasks']
44
ios = ' iOS'
55

6-
PROJECT_NAME = 'iBuild'
6+
PROJECT_NAME = 'PROJECT_NAME' // PROJECT_NAME must be equal to MAIN_TARGET_NAME
77

88
BUILD_DIR = 'build'
99
CONFIGURATION = 'Release' // 'Release' or 'Debug'
@@ -13,7 +13,7 @@ DEFAULT_APP_VERSION = '0.0.1'
1313
task clean(type: Delete) {
1414
group = ios
1515
description = 'Cleanup the project of whatever the build process has created leaving it spic and span.'
16-
delete "${SDK_TARGET_NAME}"
16+
delete "${BUILD_DIR}"
1717
doLast {
1818
exec {
1919
executable = 'xcodebuild'
@@ -44,7 +44,7 @@ task compile {
4444
*/
4545
task test {
4646
group = ios
47-
description = 'Test the compiled source code using the default Xcode4 integrated OCUnit/SenTestingKit'
47+
description = 'Test the compiled source code using the default XCode4 integrated OCUnit/SenTestingKit'
4848
doLast {
4949
exec {
5050
executable = 'xcodebuild'

0 commit comments

Comments
 (0)