Skip to content

Commit

Permalink
Re-sync with internal repository (#1123)
Browse files Browse the repository at this point in the history
Co-authored-by: Facebook Community Bot <[email protected]>
  • Loading branch information
facebook-github-bot and facebook-github-bot authored Oct 20, 2022
1 parent 14230d3 commit 1768d6e
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 29 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [15.0.2]
### Fixed
- Fixed the issue with robolectric and other dependencies not being correctly specified as test implementation.

## [15.0.1]
### Fixed
- 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`.
Expand Down Expand Up @@ -444,7 +448,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

<!-- Links -->

[Unreleased]: https://github.com/facebook/facebook-android-sdk/compare/sdk-version-15.0.0...HEAD
[Unreleased]: https://github.com/facebook/facebook-android-sdk/compare/sdk-version-15.0.2...HEAD
[15.0.2]: https://github.com/facebook/facebook-android-sdk/compare/sdk-version-15.0.1...sdk-version-15.0.2
[15.0.1]: https://github.com/facebook/facebook-android-sdk/compare/sdk-version-15.0.0...sdk-version-15.0.1
[15.0.0]: https://github.com/facebook/facebook-android-sdk/compare/sdk-version-14.1.1...sdk-version-15.0.0
[14.1.1]: https://github.com/facebook/facebook-android-sdk/compare/sdk-version-14.1.0...sdk-version-14.1.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@
package com.facebook

internal object FacebookSdkVersion {
const val BUILD = "15.0.1"
const val BUILD = "15.0.2"
}
54 changes: 27 additions & 27 deletions facebook-gamingservices/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -31,33 +31,33 @@ extra["description"] = "Facebook Gaming Services Android SDK"
extra["url"] = "https://github.com/facebook/facebook-android-sdk"

dependencies {
// Facebook Dependencies
api(project(":facebook-core"))
api(project(":facebook-common"))
api(project(":facebook-share"))

implementation(Libs.androidx_core_ktx)
implementation(Libs.kotlin_stdlib)
implementation(Libs.gson)

// Unit Tests
testImplementation(project(":facebook-testutil"))
implementation(Libs.junit)
implementation(Libs.robolectric)
implementation(Libs.androidx_test_core)

implementation(Libs.mockito_inline)
implementation(Libs.mockito_kotlin)

testImplementation(Libs.powermock_core)
testImplementation(Libs.powermock_api_mockito2)
testImplementation(Libs.powermock_junit4)
testImplementation(Libs.powermock_junit4_rule)
testImplementation(Libs.powermock_classloading_xstream)
testImplementation(Libs.assertj_core)

testImplementation(Libs.android_installreferrer)
testImplementation(Libs.kotlin_test_junit)
// Facebook Dependencies
api(project(":facebook-core"))
api(project(":facebook-common"))
api(project(":facebook-share"))

implementation(Libs.androidx_core_ktx)
implementation(Libs.kotlin_stdlib)
implementation(Libs.gson)

// Unit Tests
testImplementation(project(":facebook-testutil"))
testImplementation(Libs.junit)
testImplementation(Libs.robolectric)
testImplementation(Libs.androidx_test_core)

testImplementation(Libs.mockito_inline)
testImplementation(Libs.mockito_kotlin)

testImplementation(Libs.powermock_core)
testImplementation(Libs.powermock_api_mockito2)
testImplementation(Libs.powermock_junit4)
testImplementation(Libs.powermock_junit4_rule)
testImplementation(Libs.powermock_classloading_xstream)
testImplementation(Libs.assertj_core)

testImplementation(Libs.android_installreferrer)
testImplementation(Libs.kotlin_test_junit)
}


Expand Down

0 comments on commit 1768d6e

Please sign in to comment.