Skip to content

Commit 1768d6e

Browse files
Re-sync with internal repository (#1123)
Co-authored-by: Facebook Community Bot <[email protected]>
1 parent 14230d3 commit 1768d6e

File tree

3 files changed

+34
-29
lines changed

3 files changed

+34
-29
lines changed

CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [15.0.2]
11+
### Fixed
12+
- Fixed the issue with robolectric and other dependencies not being correctly specified as test implementation.
13+
1014
## [15.0.1]
1115
### Fixed
1216
- Fixed the issue causing apps targeting Android 12 or higher to fail due to a component with an intent-filter not explicitly defining the attribute `android:exported`.
@@ -444,7 +448,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
444448

445449
<!-- Links -->
446450

447-
[Unreleased]: https://github.com/facebook/facebook-android-sdk/compare/sdk-version-15.0.0...HEAD
451+
[Unreleased]: https://github.com/facebook/facebook-android-sdk/compare/sdk-version-15.0.2...HEAD
452+
[15.0.2]: https://github.com/facebook/facebook-android-sdk/compare/sdk-version-15.0.1...sdk-version-15.0.2
448453
[15.0.1]: https://github.com/facebook/facebook-android-sdk/compare/sdk-version-15.0.0...sdk-version-15.0.1
449454
[15.0.0]: https://github.com/facebook/facebook-android-sdk/compare/sdk-version-14.1.1...sdk-version-15.0.0
450455
[14.1.1]: https://github.com/facebook/facebook-android-sdk/compare/sdk-version-14.1.0...sdk-version-14.1.1

facebook-core/src/main/java/com/facebook/FacebookSdkVersion.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@
2121
package com.facebook
2222

2323
internal object FacebookSdkVersion {
24-
const val BUILD = "15.0.1"
24+
const val BUILD = "15.0.2"
2525
}

facebook-gamingservices/build.gradle.kts

+27-27
Original file line numberDiff line numberDiff line change
@@ -31,33 +31,33 @@ extra["description"] = "Facebook Gaming Services Android SDK"
3131
extra["url"] = "https://github.com/facebook/facebook-android-sdk"
3232

3333
dependencies {
34-
// Facebook Dependencies
35-
api(project(":facebook-core"))
36-
api(project(":facebook-common"))
37-
api(project(":facebook-share"))
38-
39-
implementation(Libs.androidx_core_ktx)
40-
implementation(Libs.kotlin_stdlib)
41-
implementation(Libs.gson)
42-
43-
// Unit Tests
44-
testImplementation(project(":facebook-testutil"))
45-
implementation(Libs.junit)
46-
implementation(Libs.robolectric)
47-
implementation(Libs.androidx_test_core)
48-
49-
implementation(Libs.mockito_inline)
50-
implementation(Libs.mockito_kotlin)
51-
52-
testImplementation(Libs.powermock_core)
53-
testImplementation(Libs.powermock_api_mockito2)
54-
testImplementation(Libs.powermock_junit4)
55-
testImplementation(Libs.powermock_junit4_rule)
56-
testImplementation(Libs.powermock_classloading_xstream)
57-
testImplementation(Libs.assertj_core)
58-
59-
testImplementation(Libs.android_installreferrer)
60-
testImplementation(Libs.kotlin_test_junit)
34+
// Facebook Dependencies
35+
api(project(":facebook-core"))
36+
api(project(":facebook-common"))
37+
api(project(":facebook-share"))
38+
39+
implementation(Libs.androidx_core_ktx)
40+
implementation(Libs.kotlin_stdlib)
41+
implementation(Libs.gson)
42+
43+
// Unit Tests
44+
testImplementation(project(":facebook-testutil"))
45+
testImplementation(Libs.junit)
46+
testImplementation(Libs.robolectric)
47+
testImplementation(Libs.androidx_test_core)
48+
49+
testImplementation(Libs.mockito_inline)
50+
testImplementation(Libs.mockito_kotlin)
51+
52+
testImplementation(Libs.powermock_core)
53+
testImplementation(Libs.powermock_api_mockito2)
54+
testImplementation(Libs.powermock_junit4)
55+
testImplementation(Libs.powermock_junit4_rule)
56+
testImplementation(Libs.powermock_classloading_xstream)
57+
testImplementation(Libs.assertj_core)
58+
59+
testImplementation(Libs.android_installreferrer)
60+
testImplementation(Libs.kotlin_test_junit)
6161
}
6262

6363

0 commit comments

Comments
 (0)