Skip to content

Commit c94f615

Browse files
author
fuatsahin
committed
testImplementation exclude
1 parent cad423c commit c94f615

File tree

300 files changed

+16
-16
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

300 files changed

+16
-16
lines changed

.buckconfig

100644100755
File mode changed.

.eslintrc.json

100644100755
File mode changed.

.flowconfig

100644100755
File mode changed.

.gitattributes

100644100755
File mode changed.

.github/ISSUE_TEMPLATE/bug_report.md

100644100755
File mode changed.

.github/ISSUE_TEMPLATE/feature_request.md

100644100755
File mode changed.

.github/ISSUE_TEMPLATE/project_setup.md

100644100755
File mode changed.

.github/ISSUE_TEMPLATE/question.md

100644100755
File mode changed.

.github/PULL_REQUEST_TEMPLATE/bug_fix.md

100644100755
File mode changed.

.github/PULL_REQUEST_TEMPLATE/new_feature.md

100644100755
File mode changed.

.github/stale.yml

100644100755
File mode changed.

.gitignore

100644100755
File mode changed.

.npmignore

100644100755
File mode changed.

.prettierignore

100644100755
File mode changed.

.prettierrc

100644100755
File mode changed.

.travis.yml

100644100755
File mode changed.

.vscode/settings.json

100644100755
File mode changed.

.watchmanconfig

100644100755
File mode changed.

CHANGELOG.md

100644100755
File mode changed.

INTRO.md

100644100755
File mode changed.

LICENSE

100644100755
File mode changed.

README.md

100644100755
File mode changed.

RELEASE.md

100644100755
File mode changed.

__tests__/BleManager.js

100644100755
File mode changed.

__tests__/Characteristic.js

100644100755
File mode changed.

__tests__/Descriptor.js

100644100755
File mode changed.

__tests__/Device.js

100644100755
File mode changed.

__tests__/Service.js

100644100755
File mode changed.

__tests__/Utils.js

100644100755
File mode changed.

android/build.gradle

100644100755
+1-1
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,5 @@ repositories {
4848
dependencies {
4949
implementation "com.facebook.react:react-native:+"
5050
implementation "com.polidea.rxandroidble:rxandroidble:1.7.0"
51-
testImplementation 'org.robospock:robospock:1.0.1'
51+
//testImplementation 'org.robospock:robospock:1.0.1'
5252
}

android/gradle/wrapper/gradle-wrapper.jar

100644100755
File mode changed.

android/gradle/wrapper/gradle-wrapper.properties

100644100755
File mode changed.

android/src/main/AndroidManifest.xml

100644100755
File mode changed.

android/src/main/java/com/polidea/reactnativeble/BleModule.java

100644100755
+3-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
import android.content.pm.PackageManager;
1010
import android.os.Build;
1111
import android.os.ParcelUuid;
12-
import android.support.annotation.NonNull;
13-
import android.support.annotation.Nullable;
14-
import android.support.annotation.RequiresApi;
12+
import androidx.annotation.NonNull;
13+
import androidx.annotation.Nullable;
14+
import androidx.annotation.RequiresApi;
1515
import android.util.SparseArray;
1616

1717
import com.facebook.react.bridge.Arguments;

android/src/main/java/com/polidea/reactnativeble/BlePackage.java

100644100755
File mode changed.

android/src/main/java/com/polidea/reactnativeble/Event.java

100644100755
File mode changed.

android/src/main/java/com/polidea/reactnativeble/RefreshGattMoment.java

100644100755
File mode changed.

android/src/main/java/com/polidea/reactnativeble/advertisement/AdvertisementData.java

100644100755
File mode changed.

android/src/main/java/com/polidea/reactnativeble/converter/JSObjectConverter.java

100644100755
File mode changed.

android/src/main/java/com/polidea/reactnativeble/converter/RxBleScanResultConverter.java

100644100755
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package com.polidea.reactnativeble.converter;
22

3-
import android.support.annotation.NonNull;
3+
import androidx.annotation.NonNull;
44

55
import com.facebook.react.bridge.Arguments;
66
import com.facebook.react.bridge.WritableArray;

android/src/main/java/com/polidea/reactnativeble/errors/BleError.java

100644100755
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package com.polidea.reactnativeble.errors;
22

3-
import android.support.annotation.NonNull;
3+
import androidx.annotation.NonNull;
44

55
import com.facebook.react.bridge.Arguments;
66
import com.facebook.react.bridge.Promise;

android/src/main/java/com/polidea/reactnativeble/errors/BleErrorCode.java

100644100755
File mode changed.

android/src/main/java/com/polidea/reactnativeble/errors/BleErrorUtils.java

100644100755
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package com.polidea.reactnativeble.errors;
22

3-
import android.support.annotation.NonNull;
3+
import androidx.annotation.NonNull;
44

55
import com.facebook.react.bridge.ReadableArray;
66

android/src/main/java/com/polidea/reactnativeble/errors/ErrorConverter.java

100644100755
File mode changed.

android/src/main/java/com/polidea/reactnativeble/exceptions/CannotMonitorCharacteristicException.java

100644100755
File mode changed.

android/src/main/java/com/polidea/reactnativeble/utils/Base64Converter.java

100644100755
File mode changed.

android/src/main/java/com/polidea/reactnativeble/utils/ByteUtils.java

100644100755
File mode changed.

android/src/main/java/com/polidea/reactnativeble/utils/Constants.java

100644100755
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package com.polidea.reactnativeble.utils;
22

33

4-
import android.support.annotation.StringDef;
4+
import androidx.annotation.StringDef;
55
import java.lang.annotation.Retention;
66
import java.lang.annotation.RetentionPolicy;
77

android/src/main/java/com/polidea/reactnativeble/utils/DisposableMap.java

100644100755
File mode changed.

android/src/main/java/com/polidea/reactnativeble/utils/IdGenerator.java

100644100755
File mode changed.

android/src/main/java/com/polidea/reactnativeble/utils/IdGeneratorKey.java

100644100755
File mode changed.

android/src/main/java/com/polidea/reactnativeble/utils/LogLevel.java

100644100755
File mode changed.

android/src/main/java/com/polidea/reactnativeble/utils/ReadableArrayConverter.java

100644100755
File mode changed.

android/src/main/java/com/polidea/reactnativeble/utils/RefreshGattCustomOperation.java

100644100755
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package com.polidea.reactnativeble.utils;
22

33
import android.bluetooth.BluetoothGatt;
4-
import android.support.annotation.NonNull;
4+
import androidx.annotation.NonNull;
55
import com.polidea.rxandroidble.RxBleCustomOperation;
66
import com.polidea.rxandroidble.internal.RxBleLog;
77
import com.polidea.rxandroidble.internal.connection.RxBleGattCallback;

android/src/main/java/com/polidea/reactnativeble/utils/SafePromise.java

100644100755
File mode changed.

android/src/main/java/com/polidea/reactnativeble/utils/UUIDConverter.java

100644100755
File mode changed.

android/src/main/java/com/polidea/reactnativeble/wrapper/Characteristic.java

100644100755
+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
import android.bluetooth.BluetoothGattCharacteristic;
44
import android.bluetooth.BluetoothGattDescriptor;
5-
import android.support.annotation.NonNull;
6-
import android.support.annotation.Nullable;
5+
import androidx.annotation.NonNull;
6+
import androidx.annotation.Nullable;
77

88
import com.facebook.react.bridge.Arguments;
99
import com.facebook.react.bridge.WritableMap;

android/src/main/java/com/polidea/reactnativeble/wrapper/Descriptor.java

100644100755
+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import android.bluetooth.BluetoothGattDescriptor;
44

5-
import android.support.annotation.NonNull;
5+
import androidx.annotation.NonNull;
66

77
import com.facebook.react.bridge.Arguments;
88
import com.facebook.react.bridge.WritableMap;

android/src/main/java/com/polidea/reactnativeble/wrapper/Device.java

100644100755
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package com.polidea.reactnativeble.wrapper;
22

3-
import android.support.annotation.NonNull;
4-
import android.support.annotation.Nullable;
3+
import androidx.annotation.NonNull;
4+
import androidx.annotation.Nullable;
55
import com.facebook.react.bridge.Arguments;
66
import com.facebook.react.bridge.WritableMap;
77
import com.polidea.reactnativeble.utils.Constants;

android/src/main/java/com/polidea/reactnativeble/wrapper/Service.java

100644100755
+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
import android.bluetooth.BluetoothGattCharacteristic;
44
import android.bluetooth.BluetoothGattService;
5-
import android.support.annotation.NonNull;
6-
import android.support.annotation.Nullable;
5+
import androidx.annotation.NonNull;
6+
import androidx.annotation.Nullable;
77

88
import com.facebook.react.bridge.Arguments;
99
import com.facebook.react.bridge.WritableMap;

android/src/test/groovy/com/polidea/reactnativeble/advertisement/AdvertisementDataSpec.groovy

100644100755
File mode changed.

android/src/test/groovy/com/polidea/reactnativeble/utils/UUIDConverterSpec.groovy

100644100755
File mode changed.

babel.config.js

100644100755
File mode changed.

docs/assets/anchor.js

100644100755
File mode changed.

docs/assets/bass-addons.css

100644100755
File mode changed.

docs/assets/bass.css

100644100755
File mode changed.

docs/assets/github.css

100644100755
File mode changed.

docs/assets/site.js

100644100755
File mode changed.

docs/assets/split.css

100644100755
File mode changed.

docs/assets/split.js

100644100755
File mode changed.

docs/assets/style.css

100644100755
File mode changed.

docs/index.html

100644100755
File mode changed.

documentation.yml

100644100755
File mode changed.

index.d.ts

100644100755
File mode changed.

index.js

100644100755
File mode changed.

integration-tests/patches/common/.gitkeep

100644100755
File mode changed.

integration-tests/patches/rn-0.57.8/0001-minSdkVersion-bump.patch

100644100755
File mode changed.

integration-tests/patches/rn-0.57.8/0002-gradle-espresso-config.patch

100644100755
File mode changed.

integration-tests/patches/rn-0.58.6/0001-minSdkVersion-bump.patch

100644100755
File mode changed.

integration-tests/patches/rn-0.58.6/0002-gradle-espresso-config.patch

100644100755
File mode changed.

integration-tests/patches/rn-0.59.10/0001-minSdkVersion-bump.patch

100644100755
File mode changed.

integration-tests/patches/rn-0.59.10/0002-gradle-espresso-config.patch

100644100755
File mode changed.

integration-tests/patches/rn-0.60.5/0001-minSdkVersion-bump.patch

100644100755
File mode changed.

integration-tests/patches/rn-0.60.5/0002-gradle-espresso-config.patch

100644100755
File mode changed.

integration-tests/patches/rn-0.60.5/0003-podfile-update.patch

100644100755
File mode changed.

integration-tests/scripts/test-utils/App.js

100644100755
File mode changed.

integration-tests/scripts/test-utils/SetupTests.m

100644100755
File mode changed.

integration-tests/scripts/test-utils/TestCase.js

100644100755
File mode changed.

integration-tests/scripts/test-utils/TestSuite.js

100644100755
File mode changed.

integration-tests/scripts/test-utils/androidTest/java/com/setup/BleManagerTest.java

100644100755
File mode changed.

integration-tests/scripts/test-utils/androidTest/java/com/setup/EspressoViewFinder.java

100644100755
File mode changed.

integration-tests/scripts/test-utils/utils.js

100644100755
File mode changed.

ios/BleClient-Bridging-Header.h

100644100755
File mode changed.

ios/BleClient.h

100644100755
File mode changed.

ios/BleClient.m

100644100755
File mode changed.

ios/BleClient.xcodeproj/project.pbxproj

100644100755
File mode changed.

ios/BleClientManager/BleClientManager.h

100644100755
File mode changed.

ios/BleClientManager/BleError.swift

100644100755
File mode changed.

ios/BleClientManager/BleEvent.swift

100644100755
File mode changed.

ios/BleClientManager/BleExtensions.swift

100644100755
File mode changed.

ios/BleClientManager/BleModule.swift

100644100755
File mode changed.

ios/BleClientManager/BleUtils.swift

100644100755
File mode changed.

ios/BleClientManager/Utils/DisposableMap.swift

100644100755
File mode changed.

ios/BleClientManager/Utils/SafePromise.swift

100644100755
File mode changed.

ios/RxBluetoothKit/AdvertisementData.swift

100644100755
File mode changed.

ios/RxBluetoothKit/BluetoothError.swift

100644100755
File mode changed.

ios/RxBluetoothKit/BluetoothManager.swift

100644100755
File mode changed.

ios/RxBluetoothKit/BluetoothState.swift

100644100755
File mode changed.

ios/RxBluetoothKit/Boxes.swift

100644100755
File mode changed.

ios/RxBluetoothKit/Characteristic.swift

100644100755
File mode changed.

ios/RxBluetoothKit/Descriptor.swift

100644100755
File mode changed.

ios/RxBluetoothKit/DeviceIdentifiers.swift

100644100755
File mode changed.

ios/RxBluetoothKit/Logging.swift

100644100755
File mode changed.

ios/RxBluetoothKit/Observable+Absorb.swift

100644100755
File mode changed.

ios/RxBluetoothKit/Observable+QueueSubscribeOn.swift

100644100755
File mode changed.

ios/RxBluetoothKit/Peripheral+Convenience.swift

100644100755
File mode changed.

ios/RxBluetoothKit/Peripheral.swift

100644100755
File mode changed.

ios/RxBluetoothKit/RestoredState.swift

100644100755
File mode changed.

ios/RxBluetoothKit/RxBluetoothKit.h

100644100755
File mode changed.

ios/RxBluetoothKit/RxCBCentralManager.swift

100644100755
File mode changed.

ios/RxBluetoothKit/RxCBCharacteristic.swift

100644100755
File mode changed.

ios/RxBluetoothKit/RxCBDescriptor.swift

100644100755
File mode changed.

ios/RxBluetoothKit/RxCBPeripheral.swift

100644100755
File mode changed.

ios/RxBluetoothKit/RxCBService.swift

100644100755
File mode changed.

ios/RxBluetoothKit/RxCentralManagerType.swift

100644100755
File mode changed.

ios/RxBluetoothKit/RxCharacteristicType.swift

100644100755
File mode changed.

ios/RxBluetoothKit/RxDescriptorType.swift

100644100755
File mode changed.

ios/RxBluetoothKit/RxPeripheralType.swift

100644100755
File mode changed.

ios/RxBluetoothKit/RxServiceType.swift

100644100755
File mode changed.

ios/RxBluetoothKit/ScanOperation.swift

100644100755
File mode changed.

ios/RxBluetoothKit/ScannedPeripheral.swift

100644100755
File mode changed.

ios/RxBluetoothKit/Service.swift

100644100755
File mode changed.

ios/RxBluetoothKit/UUIDIdentifiable.swift

100644100755
File mode changed.

ios/RxBluetoothKit/Unimplemented.swift

100644100755
File mode changed.

ios/RxSwift/AnyObserver.swift

100644100755
File mode changed.

ios/RxSwift/Cancelable.swift

100644100755
File mode changed.

ios/RxSwift/Concurrency/AsyncLock.swift

100644100755
File mode changed.

ios/RxSwift/Concurrency/Lock.swift

100644100755
File mode changed.

ios/RxSwift/Concurrency/LockOwnerType.swift

100644100755
File mode changed.

ios/RxSwift/Concurrency/SynchronizedDisposeType.swift

100644100755
File mode changed.

ios/RxSwift/Concurrency/SynchronizedOnType.swift

100644100755
File mode changed.

ios/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift

100644100755
File mode changed.

ios/RxSwift/ConnectableObservableType.swift

100644100755
File mode changed.

ios/RxSwift/Deprecated.swift

100644100755
File mode changed.

ios/RxSwift/Disposable.swift

100644100755
File mode changed.

ios/RxSwift/Disposables/AnonymousDisposable.swift

100644100755
File mode changed.

ios/RxSwift/Disposables/BinaryDisposable.swift

100644100755
File mode changed.

ios/RxSwift/Disposables/BooleanDisposable.swift

100644100755
File mode changed.

ios/RxSwift/Disposables/CompositeDisposable.swift

100644100755
File mode changed.

ios/RxSwift/Disposables/Disposables.swift

100644100755
File mode changed.

ios/RxSwift/Disposables/DisposeBag.swift

100644100755
File mode changed.

ios/RxSwift/Disposables/DisposeBase.swift

100644100755
File mode changed.

ios/RxSwift/Disposables/NopDisposable.swift

100644100755
File mode changed.

ios/RxSwift/Disposables/RefCountDisposable.swift

100644100755
File mode changed.

ios/RxSwift/Disposables/ScheduledDisposable.swift

100644100755
File mode changed.

ios/RxSwift/Disposables/SerialDisposable.swift

100644100755
File mode changed.

ios/RxSwift/Disposables/SingleAssignmentDisposable.swift

100644100755
File mode changed.

ios/RxSwift/Disposables/SubscriptionDisposable.swift

100644100755
File mode changed.

ios/RxSwift/Errors.swift

100644100755
File mode changed.

ios/RxSwift/Event.swift

100644100755
File mode changed.

ios/RxSwift/Extensions/Bag+Rx.swift

100644100755
File mode changed.

ios/RxSwift/Extensions/String+Rx.swift

100644100755
File mode changed.

ios/RxSwift/GroupedObservable.swift

100644100755
File mode changed.

ios/RxSwift/ImmediateSchedulerType.swift

100644100755
File mode changed.

ios/RxSwift/Observable.swift

100644100755
File mode changed.

ios/RxSwift/ObservableConvertibleType.swift

100644100755
File mode changed.

ios/RxSwift/ObservableType+Extensions.swift

100644100755
File mode changed.

ios/RxSwift/ObservableType.swift

100644100755
File mode changed.

ios/RxSwift/Observables/AddRef.swift

100644100755
File mode changed.

ios/RxSwift/Observables/Amb.swift

100644100755
File mode changed.

ios/RxSwift/Observables/AsMaybe.swift

100644100755
File mode changed.

ios/RxSwift/Observables/AsSingle.swift

100644100755
File mode changed.

ios/RxSwift/Observables/Buffer.swift

100644100755
File mode changed.

ios/RxSwift/Observables/Catch.swift

100644100755
File mode changed.

ios/RxSwift/Observables/CombineLatest+Collection.swift

100644100755
File mode changed.

ios/RxSwift/Observables/CombineLatest+arity.swift

100644100755
File mode changed.

ios/RxSwift/Observables/CombineLatest+arity.tt

100644100755
File mode changed.

ios/RxSwift/Observables/CombineLatest.swift

100644100755
File mode changed.

ios/RxSwift/Observables/Concat.swift

100644100755
File mode changed.

ios/RxSwift/Observables/Create.swift

100644100755
File mode changed.

ios/RxSwift/Observables/Debounce.swift

100644100755
File mode changed.

ios/RxSwift/Observables/Debug.swift

100644100755
File mode changed.

ios/RxSwift/Observables/DefaultIfEmpty.swift

100644100755
File mode changed.

ios/RxSwift/Observables/Deferred.swift

100644100755
File mode changed.

ios/RxSwift/Observables/Delay.swift

100644100755
File mode changed.

ios/RxSwift/Observables/DelaySubscription.swift

100644100755
File mode changed.

ios/RxSwift/Observables/Dematerialize.swift

100644100755
File mode changed.

ios/RxSwift/Observables/DistinctUntilChanged.swift

100644100755
File mode changed.

ios/RxSwift/Observables/Do.swift

100644100755
File mode changed.

ios/RxSwift/Observables/ElementAt.swift

100644100755
File mode changed.

ios/RxSwift/Observables/Empty.swift

100644100755
File mode changed.

ios/RxSwift/Observables/Enumerated.swift

100644100755
File mode changed.

ios/RxSwift/Observables/Error.swift

100644100755
File mode changed.

ios/RxSwift/Observables/Filter.swift

100644100755
File mode changed.

ios/RxSwift/Observables/First.swift

100644100755
File mode changed.

ios/RxSwift/Observables/Generate.swift

100644100755
File mode changed.

ios/RxSwift/Observables/GroupBy.swift

100644100755
File mode changed.

ios/RxSwift/Observables/Just.swift

100644100755
File mode changed.

ios/RxSwift/Observables/Map.swift

100644100755
File mode changed.

ios/RxSwift/Observables/Materialize.swift

100644100755
File mode changed.

ios/RxSwift/Observables/Merge.swift

100644100755
File mode changed.

ios/RxSwift/Observables/Multicast.swift

100644100755
File mode changed.

ios/RxSwift/Observables/Never.swift

100644100755
File mode changed.

ios/RxSwift/Observables/ObserveOn.swift

100644100755
File mode changed.

ios/RxSwift/Observables/Optional.swift

100644100755
File mode changed.

ios/RxSwift/Observables/Producer.swift

100644100755
File mode changed.

ios/RxSwift/Observables/Range.swift

100644100755
File mode changed.

ios/RxSwift/Observables/Reduce.swift

100644100755
File mode changed.

ios/RxSwift/Observables/Repeat.swift

100644100755
File mode changed.

ios/RxSwift/Observables/RetryWhen.swift

100644100755
File mode changed.

ios/RxSwift/Observables/Sample.swift

100644100755
File mode changed.

ios/RxSwift/Observables/Scan.swift

100644100755
File mode changed.

ios/RxSwift/Observables/Sequence.swift

100644100755
File mode changed.

ios/RxSwift/Observables/ShareReplayScope.swift

100644100755
File mode changed.

ios/RxSwift/Observables/SingleAsync.swift

100644100755
File mode changed.

ios/RxSwift/Observables/Sink.swift

100644100755
File mode changed.

ios/RxSwift/Observables/Skip.swift

100644100755
File mode changed.

ios/RxSwift/Observables/SkipUntil.swift

100644100755
File mode changed.

ios/RxSwift/Observables/SkipWhile.swift

100644100755
File mode changed.

ios/RxSwift/Observables/StartWith.swift

100644100755
File mode changed.

ios/RxSwift/Observables/SubscribeOn.swift

100644100755
File mode changed.

ios/RxSwift/Observables/Switch.swift

100644100755
File mode changed.

ios/RxSwift/Observables/SwitchIfEmpty.swift

100644100755
File mode changed.

ios/RxSwift/Observables/Take.swift

100644100755
File mode changed.

ios/RxSwift/Observables/TakeLast.swift

100644100755
File mode changed.

ios/RxSwift/Observables/TakeUntil.swift

100644100755
File mode changed.

ios/RxSwift/Observables/TakeWhile.swift

100644100755
File mode changed.

ios/RxSwift/Observables/Throttle.swift

100644100755
File mode changed.

ios/RxSwift/Observables/Timeout.swift

100644100755
File mode changed.

ios/RxSwift/Observables/Timer.swift

100644100755
File mode changed.

ios/RxSwift/Observables/ToArray.swift

100644100755
File mode changed.

ios/RxSwift/Observables/Using.swift

100644100755
File mode changed.

ios/RxSwift/Observables/Window.swift

100644100755
File mode changed.

ios/RxSwift/Observables/WithLatestFrom.swift

100644100755
File mode changed.

ios/RxSwift/Observables/Zip+Collection.swift

100644100755
File mode changed.

ios/RxSwift/Observables/Zip+arity.swift

100644100755
File mode changed.

ios/RxSwift/Observables/Zip+arity.tt

100644100755
File mode changed.

ios/RxSwift/Observables/Zip.swift

100644100755
File mode changed.

ios/RxSwift/ObserverType.swift

100644100755
File mode changed.

ios/RxSwift/Observers/AnonymousObserver.swift

100644100755
File mode changed.

ios/RxSwift/Observers/ObserverBase.swift

100644100755
File mode changed.

ios/RxSwift/Observers/TailRecursiveSink.swift

100644100755
File mode changed.

ios/RxSwift/Platform/DataStructures/Bag.swift

100644100755
File mode changed.

ios/RxSwift/Platform/DataStructures/InfiniteSequence.swift

100644100755
File mode changed.

ios/RxSwift/Platform/DataStructures/PriorityQueue.swift

100644100755
File mode changed.

ios/RxSwift/Platform/DataStructures/Queue.swift

100644100755
File mode changed.

ios/RxSwift/Platform/DeprecationWarner.swift

100644100755
File mode changed.

ios/RxSwift/Platform/DispatchQueue+Extensions.swift

100644100755
File mode changed.

ios/RxSwift/Platform/Platform.Darwin.swift

100644100755
File mode changed.

ios/RxSwift/Platform/Platform.Linux.swift

100644100755
File mode changed.

ios/RxSwift/Platform/RecursiveLock.swift

100644100755
File mode changed.

ios/RxSwift/Reactive.swift

100644100755
File mode changed.

ios/RxSwift/Rx.swift

100644100755
File mode changed.

ios/RxSwift/RxMutableBox.swift

100644100755
File mode changed.

ios/RxSwift/SchedulerType.swift

100644100755
File mode changed.

ios/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift

100644100755
File mode changed.

ios/RxSwift/Schedulers/ConcurrentMainScheduler.swift

100644100755
File mode changed.

ios/RxSwift/Schedulers/CurrentThreadScheduler.swift

100644100755
File mode changed.

ios/RxSwift/Schedulers/HistoricalScheduler.swift

100644100755
File mode changed.

ios/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift

100644100755
File mode changed.

ios/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift

100644100755
File mode changed.

ios/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift

100644100755
File mode changed.

ios/RxSwift/Schedulers/Internal/InvocableType.swift

100644100755
File mode changed.

ios/RxSwift/Schedulers/Internal/ScheduledItem.swift

100644100755
File mode changed.

ios/RxSwift/Schedulers/Internal/ScheduledItemType.swift

100644100755
File mode changed.

ios/RxSwift/Schedulers/MainScheduler.swift

100644100755
File mode changed.

ios/RxSwift/Schedulers/OperationQueueScheduler.swift

100644100755
File mode changed.

ios/RxSwift/Schedulers/RecursiveScheduler.swift

100644100755
File mode changed.

ios/RxSwift/Schedulers/SchedulerServices+Emulation.swift

100644100755
File mode changed.

ios/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift

100644100755
File mode changed.

ios/RxSwift/Schedulers/VirtualTimeConverterType.swift

100644100755
File mode changed.

ios/RxSwift/Schedulers/VirtualTimeScheduler.swift

100644100755
File mode changed.

ios/RxSwift/Subjects/AsyncSubject.swift

100644100755
File mode changed.

ios/RxSwift/Subjects/BehaviorSubject.swift

100644100755
File mode changed.

ios/RxSwift/Subjects/PublishSubject.swift

100644100755
File mode changed.

ios/RxSwift/Subjects/ReplaySubject.swift

100644100755
File mode changed.

ios/RxSwift/Subjects/SubjectType.swift

100644100755
File mode changed.

ios/RxSwift/SwiftSupport/SwiftSupport.swift

100644100755
File mode changed.

ios/RxSwift/Traits/Completable+AndThen.swift

100644100755
File mode changed.

ios/RxSwift/Traits/Completable.swift

100644100755
File mode changed.

ios/RxSwift/Traits/Maybe.swift

100644100755
File mode changed.

ios/RxSwift/Traits/ObservableType+PrimitiveSequence.swift

100644100755
File mode changed.

ios/RxSwift/Traits/PrimitiveSequence+Zip+arity.swift

100644100755
File mode changed.

ios/RxSwift/Traits/PrimitiveSequence+Zip+arity.tt

100644100755
File mode changed.

ios/RxSwift/Traits/PrimitiveSequence.swift

100644100755
File mode changed.

ios/RxSwift/Traits/Single.swift

100644100755
File mode changed.

jsconfig.json

100644100755
File mode changed.

package-lock.json

100644100755
File mode changed.

package.json

100644100755
File mode changed.

react-native-ble-plx-swift.podspec

100644100755
File mode changed.

react-native-ble-plx.podspec

100644100755
File mode changed.

src/BleError.js

100644100755
File mode changed.

src/BleManager.js

100644100755
File mode changed.

src/BleModule.js

100644100755
File mode changed.

src/Characteristic.js

100644100755
File mode changed.

src/Descriptor.js

100644100755
File mode changed.

src/Device.js

100644100755
File mode changed.

src/Service.js

100644100755
File mode changed.

src/TypeDefinition.js

100644100755
File mode changed.

src/Utils.js

100644100755
File mode changed.

0 commit comments

Comments
 (0)