forked from oppia/oppia-android
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
…ypo in versions.bzl (oppia#2955) * Added protbuf-lite dependency to versions.bzl, made the necessary changes to utility/BUILD.bazel to accomodate the new extensions/BUILD.bazel file created * Converted the '.'s and ':'s to '_' in the dependencies in the extensions/BUILD.bazel file and added the bundle_extensions library to app/BUILD.bazel * Reverted accidental changes to .idea/misc.xml * Removed visibility and dependency from the live_data_ext library as it isn't being used anywhere * Added back lifecycle dependency to live_data_ext library * Fixed type in versions.bzl * Renamed LiveDataExt.kt to Extensions.kt and made corresponding changes to its library * Removed Extensions.kt and it's corresponding library
- Loading branch information
1 parent
239ab72
commit 2b8c66b
Showing
5 changed files
with
20 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
utility/src/main/java/org/oppia/android/util/extensions/BUILD.bazel
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
""" | ||
General purposes utilities to manage extensions | ||
""" | ||
|
||
load("@io_bazel_rules_kotlin//kotlin:kotlin.bzl", "kt_android_library") | ||
|
||
kt_android_library( | ||
name = "bundle_extensions", | ||
srcs = [ | ||
"BundleExtensions.kt", | ||
], | ||
visibility = ["//:oppia_api_visibility"], | ||
deps = [ | ||
"//third_party:com_google_protobuf_protobuf-lite", | ||
], | ||
) |
18 changes: 0 additions & 18 deletions
18
utility/src/main/java/org/oppia/android/util/extensions/LiveDataExt.kt
This file was deleted.
Oops, something went wrong.