expo-eas-client 1.0.8-canary-20251127-587bc53 → 1.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/android/build.gradle +5 -5
- package/ios/Tests/EASClientIDTest.swift +15 -0
- package/package.json +4 -3
package/CHANGELOG.md
CHANGED
package/android/build.gradle
CHANGED
|
@@ -4,7 +4,7 @@ plugins {
|
|
|
4
4
|
}
|
|
5
5
|
|
|
6
6
|
group = 'host.exp.exponent'
|
|
7
|
-
version = '1.0.8
|
|
7
|
+
version = '1.0.8'
|
|
8
8
|
|
|
9
9
|
expoModule {
|
|
10
10
|
canBePublished false
|
|
@@ -14,7 +14,7 @@ android {
|
|
|
14
14
|
namespace "expo.modules.easclient"
|
|
15
15
|
defaultConfig {
|
|
16
16
|
versionCode 1
|
|
17
|
-
versionName "1.0.8
|
|
17
|
+
versionName "1.0.8"
|
|
18
18
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
19
19
|
}
|
|
20
20
|
testOptions {
|
|
@@ -24,8 +24,8 @@ android {
|
|
|
24
24
|
|
|
25
25
|
dependencies {
|
|
26
26
|
androidTestImplementation 'org.amshove.kluent:kluent-android:1.68'
|
|
27
|
+
androidTestImplementation 'androidx.test:runner:1.4.0'
|
|
28
|
+
androidTestImplementation 'androidx.test:core:1.4.0'
|
|
29
|
+
androidTestImplementation 'androidx.test:rules:1.4.0'
|
|
27
30
|
androidTestImplementation 'io.mockk:mockk-android:1.12.3'
|
|
28
|
-
androidTestImplementation 'androidx.test:runner:1.7.0'
|
|
29
|
-
androidTestImplementation 'androidx.test:core:1.7.0'
|
|
30
|
-
androidTestImplementation 'androidx.test:rules:1.7.0'
|
|
31
31
|
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// Copyright (c) 2020 650 Industries, Inc. All rights reserved.
|
|
2
|
+
|
|
3
|
+
import XCTest
|
|
4
|
+
|
|
5
|
+
@testable import EASClient
|
|
6
|
+
|
|
7
|
+
class EASClientIdTests : XCTestCase {
|
|
8
|
+
func testCreatesStableUUID() throws {
|
|
9
|
+
let easClientId = EASClientID.uuid().uuidString
|
|
10
|
+
XCTAssertNotNil(easClientId)
|
|
11
|
+
|
|
12
|
+
let easClientId2 = EASClientID.uuid().uuidString
|
|
13
|
+
XCTAssertEqual(easClientId, easClientId2)
|
|
14
|
+
}
|
|
15
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-eas-client",
|
|
3
|
-
"version": "1.0.8
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "Stable client identifier for EAS services",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
@@ -35,6 +35,7 @@
|
|
|
35
35
|
"preset": "expo-module-scripts"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"expo-module-scripts": "5.
|
|
39
|
-
}
|
|
38
|
+
"expo-module-scripts": "^5.0.8"
|
|
39
|
+
},
|
|
40
|
+
"gitHead": "172a69f5f70c1d0e043e1532f924de97210cabc3"
|
|
40
41
|
}
|