Skip to content

Commit

Permalink
Merge pull request #38 from moopat/bugfix/joda
Browse files Browse the repository at this point in the history
#37: Expose joda to apps using this library
  • Loading branch information
ticofab authored Jul 10, 2021
2 parents 7be646d + f621670 commit abae314
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ protected void onCreate(Bundle savedInstanceState) {
TrackSegment segment = segments.get(j);
Log.d(TAG, " segment " + j + ":");
for (TrackPoint trackPoint : segment.getTrackPoints()) {
Log.d(TAG, " point: lat " + trackPoint.getLatitude() + ", lon " + trackPoint.getLongitude());
Log.d(TAG, " point: lat " + trackPoint.getLatitude() + ", lon " + trackPoint.getLongitude() + ", time " + trackPoint.getTime());
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion parser/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ android {
dependencies {
// JodaTime for Android
// https://github.com/dlew/joda-time-android
implementation 'net.danlew:android.joda:2.10.9.1'
api 'net.danlew:android.joda:2.10.9.1'

androidTestImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.annotation:annotation:1.1.0'
Expand Down
3 changes: 1 addition & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
include ':parser'
include ':app'
include ':parser', ':app'

0 comments on commit abae314

Please sign in to comment.