Skip to content

Commit

Permalink
Remove xamboni and clean up gradle scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
jyaganeh committed Jan 13, 2024
1 parent 5c617d9 commit df5376d
Show file tree
Hide file tree
Showing 10 changed files with 7 additions and 127 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,3 @@ This library provides official bindings to the Airship SDK, as well as a [cross-
To build all of the artifacts, run `./gradlew build` in the root of the repository.
The build requires Carthage, which can be installed with `brew update && brew install carthage`.

To install required Python scripts and dependencies, run `pip install -r requirements.txt`
2 changes: 0 additions & 2 deletions requirements.txt

This file was deleted.

4 changes: 1 addition & 3 deletions src/AirshipBindings.iOS.Automation/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ ext {
iosSdkModuleName = 'AirshipAutomation'
}

apply from: "../ios-common-build.gradle"

task clean(type: Delete) {
doLast() {
project.delete "bin"
Expand All @@ -22,7 +20,7 @@ task carthageUpdate {
}

task build {
def BuildConfiguration=project.properties['build_configuration'] ?: "Release"
def BuildConfiguration = project.properties['build_configuration'] ?: "Release"
doLast() {
exec {
commandLine "mono", "$nugetExe", "restore", "AirshipBindings.iOS.Automation.sln"
Expand Down
4 changes: 1 addition & 3 deletions src/AirshipBindings.iOS.Basement/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ ext {
iosSdkModuleName = 'AirshipBasement'
}

apply from: "../ios-common-build.gradle"

task clean(type: Delete) {
doLast() {
project.delete "bin"
Expand All @@ -22,7 +20,7 @@ task carthageUpdate {
}

task build {
def BuildConfiguration=project.properties['build_configuration'] ?: "Release"
def BuildConfiguration = project.properties['build_configuration'] ?: "Release"
doLast() {
exec {
commandLine "mono", "$nugetExe", "restore", "AirshipBindings.iOS.Basement.sln"
Expand Down
4 changes: 1 addition & 3 deletions src/AirshipBindings.iOS.Core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ ext {
iosSdkModuleName = 'AirshipCore'
}

apply from: "../ios-common-build.gradle"

task clean(type: Delete) {
doLast() {
project.delete "bin"
Expand All @@ -22,7 +20,7 @@ task carthageUpdate {
}

task build {
def BuildConfiguration=project.properties['build_configuration'] ?: "Release"
def BuildConfiguration = project.properties['build_configuration'] ?: "Release"
doLast() {
exec {
commandLine "mono", "$nugetExe", "restore", "AirshipBindings.iOS.Core.sln"
Expand Down
4 changes: 1 addition & 3 deletions src/AirshipBindings.iOS.MessageCenter/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ ext {
iosSdkModuleName = 'AirshipMessageCenter'
}

apply from: "../ios-common-build.gradle"

task clean(type: Delete) {
doLast() {
project.delete "bin"
Expand All @@ -22,7 +20,7 @@ task carthageUpdate {
}

task build {
def BuildConfiguration=project.properties['build_configuration'] ?: "Release"
def BuildConfiguration = project.properties['build_configuration'] ?: "Release"
doLast() {
exec {
commandLine "mono", "$nugetExe", "restore", "AirshipBindings.iOS.MessageCenter.sln"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ ext {
iosSdkModuleName = 'AirshipNotificationContentExtension'
}

apply from: "../ios-common-build.gradle"

task clean(type: Delete) {
doLast() {
project.delete "bin"
Expand All @@ -22,7 +20,7 @@ task carthageUpdate {
}

task build {
def BuildConfiguration=project.properties['build_configuration'] ?: "Release"
def BuildConfiguration = project.properties['build_configuration'] ?: "Release"
doLast() {
exec {
commandLine "mono", "$nugetExe", "restore", "AirshipBindings.iOS.NotificationContentExtension.sln"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ ext {
iosSdkModuleName = 'AirshipNotificationServiceExtension'
}

apply from: "../ios-common-build.gradle"

task clean(type: Delete) {
doLast() {
project.delete "bin"
Expand All @@ -22,7 +20,7 @@ task carthageUpdate {
}

task build {
def BuildConfiguration=project.properties['build_configuration'] ?: "Release"
def BuildConfiguration = project.properties['build_configuration'] ?: "Release"
doLast() {
exec {
commandLine "mono", "$nugetExe", "restore", "AirshipBindings.iOS.NotificationServiceExtension.sln"
Expand Down
4 changes: 1 addition & 3 deletions src/AirshipBindings.iOS.PreferenceCenter/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ ext {
iosSdkModuleName = 'AirshipPreferenceCenter'
}

apply from: "../ios-common-build.gradle"

task clean(type: Delete) {
doLast() {
project.delete "bin"
Expand All @@ -22,7 +20,7 @@ task carthageUpdate {
}

task build {
def BuildConfiguration=project.properties['build_configuration'] ?: "Release"
def BuildConfiguration = project.properties['build_configuration'] ?: "Release"
doLast() {
exec {
commandLine "mono", "$nugetExe", "restore", "AirshipBindings.iOS.PreferenceCenter.sln"
Expand Down
103 changes: 0 additions & 103 deletions src/ios-common-build.gradle

This file was deleted.

0 comments on commit df5376d

Please sign in to comment.