-
Notifications
You must be signed in to change notification settings - Fork 233
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added Code for required Icon #289
base: master
Are you sure you want to change the base?
Conversation
Signed-off-by: Sashrika Kaur <[email protected]>
@@ -76,7 +76,7 @@ public ProtobufAstronomicalSource(AstronomicalSourceProto proto, Resources resou | |||
if (names == null) { | |||
names = new ArrayList<String>(proto.getNameIdsCount()); | |||
for (int id : proto.getNameIdsList()) { | |||
names.add(resources.getString(id)); | |||
// names.add(resources.getString(id)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lots of changes in here that don't seem relevant.
@@ -5,7 +5,7 @@ dependencies { | |||
implementation project(path: ':app',configuration:'default') | |||
implementation 'com.google.guava:guava:21.0' | |||
// TODO(jontayler): Terrible hack that should go when we revamp the tools. | |||
implementation files('../app/build/intermediates/classes/gms/release/') | |||
implementation files('../app/build/intermediates/classes/') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why this change?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The project did not build because it was not able to find some files. This fixed that issue.
Icon provided for Terms of Service mentioned in the TODO task.
Fixes #290