Skip to content

Commit

Permalink
build: remove specific ndk version (#2)
Browse files Browse the repository at this point in the history
* build: update maven publish task

* build: update maven publish task for jitpack

* build: try to remove specific ndk version
  • Loading branch information
julien-herrero-tab authored Apr 21, 2021
1 parent ce53f90 commit 6e530e4
Show file tree
Hide file tree
Showing 7 changed files with 0 additions and 23 deletions.
7 changes: 0 additions & 7 deletions .github/scripts/install-ndk.sh

This file was deleted.

3 changes: 0 additions & 3 deletions .github/workflows/android-sonar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@ jobs:
with:
java-version: 11

- name: Install NDK
run: echo "y" | sudo ${ANDROID_HOME}/tools/bin/sdkmanager --install "ndk;21.4.7075529" --sdk_root=${ANDROID_SDK_ROOT}

- name: Cache SonarCloud packages 🗄
uses: actions/cache@v1
with:
Expand Down
7 changes: 0 additions & 7 deletions .github/workflows/android-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,6 @@ jobs:
with:
java-version: 11

# Try to install ndk in MacOS environment, when error occurs
# - name: Grant Permission for NDK install to Execute 👮‍
# run: chmod +x ./.github/scripts/install-ndk.sh
#
# - name: Install NDK
# run: ./.github/scripts/install-ndk.sh

- name: Cache SonarCloud packages 🗄
uses: actions/cache@v1
with:
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/release-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@ jobs:
with:
java-version: 12

- name: Install NDK
run: echo "y" | sudo ${ANDROID_HOME}/tools/bin/sdkmanager --install "ndk;21.4.7075529" --sdk_root=${ANDROID_SDK_ROOT}

- name: Cache Gradle and wrapper 🗄
uses: actions/cache@v2
with:
Expand Down
1 change: 0 additions & 1 deletion dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ ext.versions = [
versionNamePreReleaseNumber : null,
isSnapshot : false,
buildTools : '30.0.2',
ndk : '21.4.7075529',
androidGradleVersion : '4.0.2',
kotlinVersion : '1.3.72',
ktx : '1.3.2',
Expand Down
1 change: 0 additions & 1 deletion printer/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ version = appVersionName
android {
compileSdkVersion versions.compileSdk
buildToolsVersion versions.buildTools
ndkVersion versions.ndk
defaultConfig {
minSdkVersion versions.minSdk
targetSdkVersion versions.targetSdk
Expand Down
1 change: 0 additions & 1 deletion sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ apply plugin: 'kotlin-android-extensions'
android {
compileSdkVersion versions.compileSdk
buildToolsVersion versions.buildTools
ndkVersion versions.ndk
defaultConfig {
applicationId "com.tabesto.printer"
minSdkVersion versions.minSdk
Expand Down

0 comments on commit 6e530e4

Please sign in to comment.