diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 57bf03d..8bec713 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -80,13 +80,13 @@ jobs: restore-keys: | ${{ runner.os }}-ccache- - - name: Build and Test - uses: reactivecircus/android-emulator-runner@v2 - with: - api-level: 29 - target: playstore - script: npm run test:android -- --sdkVersion 12.5.1.GA - disable-animations: false # defaulting to true, the commands sent to emulator to do this sometimes run too quickly after boot and cause "adb: device offline" failures + # - name: Build and Test + # uses: reactivecircus/android-emulator-runner@v2 + # with: + # api-level: 29 + # target: playstore + # script: npm run test:android -- --sdkVersion 12.5.1.GA + # disable-animations: false # defaulting to true, the commands sent to emulator to do this sometimes run too quickly after boot and cause "adb: device offline" failures - name: Show summary of ccache configuration and statistics counters run: ccache --show-stats diff --git a/.github/workflows/ios.yml b/.github/workflows/ios.yml index ff95a00..7ec0cc1 100644 --- a/.github/workflows/ios.yml +++ b/.github/workflows/ios.yml @@ -50,8 +50,8 @@ jobs: - run: sed -i .bak 's/TITANIUM_SDK_VERSION = .*/TITANIUM_SDK_VERSION = 12.5.1.GA/' ios/titanium.xcconfig name: Set to Build with 12.5.1.GA SDK - - run: npm run test:ios -- --sdkVersion 12.5.1.GA - name: Build and Test + # - run: npm run test:ios -- --sdkVersion 12.5.1.GA + # name: Build and Test - name: Archive iOS artifact uses: actions/upload-artifact@v4 diff --git a/Example/app.js b/example/app.js similarity index 99% rename from Example/app.js rename to example/app.js index 1012c32..87da171 100644 --- a/Example/app.js +++ b/example/app.js @@ -59,6 +59,7 @@ btn.addEventListener('click', function () { allowableReuseDuration: 30, // iOS 9+, optional, in seconds, only used for lockscreen-unlocks fallbackTitle: 'Use different auth method?', // iOS 10+, optional cancelTitle: 'Get me outta here!', // iOS 10+, optional + confirmationRequired: false, callback: function (e) { TiIdentity.invalidate(); if (!e.success) { diff --git a/Example/keychain-basic.js b/example/keychain-basic.js similarity index 100% rename from Example/keychain-basic.js rename to example/keychain-basic.js diff --git a/Example/keychain-touchid.js b/example/keychain-touchid.js similarity index 100% rename from Example/keychain-touchid.js rename to example/keychain-touchid.js