-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Publish the latest pre-release SDK version
Version 1.3.0-rc2
- Loading branch information
1 parent
41b692b
commit 3c78c2e
Showing
485 changed files
with
15,234 additions
and
5,375 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Global owners | ||
* @pavelreiter @nice-devone/DFO @hendrickson-tyler | ||
* @pavelreiter @davidberry-nice @nice-devone/DFO @hendrickson-tyler | ||
|
||
# CI owners | ||
.github/workflows/* @pavelreiter @LukasSanda | ||
.github/workflows/* @pavelreiter @davidberry-nice @LukasSanda |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,24 +14,24 @@ jobs: | |
|
||
steps: | ||
- name: Clone repository | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up JDK | ||
uses: actions/setup-java@v3 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: "17" | ||
distribution: "temurin" # aka adopt | ||
|
||
- name: Set up Gradle | ||
uses: gradle/gradle-build-action@v2 | ||
uses: gradle/gradle-build-action@v3 | ||
|
||
- name: Run build | ||
run: ./gradlew dokkaHtmlMultiModule -Pandroid.experimental.settings.executionProfile=ci | ||
env: | ||
GPR_USERNAME: ${{ github.repository_owner }} | ||
GPR_TOKEN: ${{ github.token }} | ||
|
||
- uses: actions/upload-artifact@v3 | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: javadoc-html | ||
path: dist | ||
|
@@ -42,20 +42,20 @@ jobs: | |
|
||
steps: | ||
- name: Clone repository | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
|
||
- name: Prepare Repository | ||
run: | | ||
rm -rf * | ||
rm -rf .github .idea .gitignore .chglog | ||
git checkout --orphan static-feature/pages | ||
- uses: actions/download-artifact@v3 | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: javadoc-html | ||
|
||
- name: Add & Commit | ||
uses: EndBug/[email protected].3 | ||
uses: EndBug/[email protected].4 | ||
with: | ||
push: origin static-feature/pages --force | ||
message: 'Documentation' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/* | ||
* Copyright (c) 2021-2023. NICE Ltd. All rights reserved. | ||
* | ||
* Licensed under the NICE License; | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://github.com/nice-devone/nice-cxone-mobile-sdk-android/blob/main/LICENSE | ||
* | ||
* TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE CXONE MOBILE SDK IS PROVIDED ON | ||
* AN “AS IS” BASIS. NICE HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS, EXPRESS | ||
* OR IMPLIED, INCLUDING (WITHOUT LIMITATION) WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, AND TITLE. | ||
*/ | ||
|
||
plugins { | ||
id "docs-conventions" | ||
} | ||
|
||
dokkaHtml { | ||
configure { | ||
dokkaSourceSets { | ||
named("main") { | ||
noAndroidSdkLink.set(false) | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,6 @@ plugins { | |
android { | ||
|
||
defaultConfig { | ||
targetSdk 33 | ||
targetSdk 34 | ||
} | ||
} |
28 changes: 28 additions & 0 deletions
28
buildSrc/src/main/groovy/android-library-style-conventions.gradle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/* | ||
* Copyright (c) 2021-2023. NICE Ltd. All rights reserved. | ||
* | ||
* Licensed under the NICE License; | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://github.com/nice-devone/nice-cxone-mobile-sdk-android/blob/main/LICENSE | ||
* | ||
* TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE CXONE MOBILE SDK IS PROVIDED ON | ||
* AN “AS IS” BASIS. NICE HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS, EXPRESS | ||
* OR IMPLIED, INCLUDING (WITHOUT LIMITATION) WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, AND TITLE. | ||
*/ | ||
|
||
plugins { | ||
id "kotlin-android" | ||
id "library-style-conventions" | ||
} | ||
|
||
android { | ||
lint { | ||
htmlReport true | ||
|
||
enable "CheckResult" | ||
baseline = file("lint-baseline.xml") | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/* | ||
* Copyright (c) 2021-2023. NICE Ltd. All rights reserved. | ||
* | ||
* Licensed under the NICE License; | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://github.com/nice-devone/nice-cxone-mobile-sdk-android/blob/main/LICENSE | ||
* | ||
* TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE CXONE MOBILE SDK IS PROVIDED ON | ||
* AN “AS IS” BASIS. NICE HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS, EXPRESS | ||
* OR IMPLIED, INCLUDING (WITHOUT LIMITATION) WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, AND TITLE. | ||
*/ | ||
|
||
plugins { | ||
id "test-conventions" | ||
} | ||
|
||
android { | ||
defaultConfig { | ||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" | ||
} | ||
buildTypes { | ||
debug { | ||
enableUnitTestCoverage true | ||
} | ||
} | ||
} | ||
|
||
dependencies { | ||
androidTestImplementation "androidx.test:runner:1.5.2" | ||
androidTestImplementation "androidx.test.espresso:espresso-core:3.5.1" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
plugins { | ||
id "me.tylerbwong.gradle.metalava" | ||
} | ||
|
||
metalava { | ||
reportWarningsAsErrors.set(true) | ||
reportLintsAsErrors.set(true) | ||
} |
Oops, something went wrong.