File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ description = 'Gradle build for iOS'
33defaultTasks = [' tasks' ]
44ios = ' iOS'
55
6- PROJECT_NAME = ' iBuild '
6+ PROJECT_NAME = ' PROJECT_NAME ' // PROJECT_NAME must be equal to MAIN_TARGET_NAME
77
88BUILD_DIR = ' build'
99CONFIGURATION = ' Release' // 'Release' or 'Debug'
@@ -13,7 +13,7 @@ DEFAULT_APP_VERSION = '0.0.1'
1313task 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 */
4545task 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'
You can’t perform that action at this time.
0 commit comments