Skip to content

Commit

Permalink
Upgrade osmdroid to 6.1.20
Browse files Browse the repository at this point in the history
  • Loading branch information
Binnette committed Dec 2, 2024
1 parent c8b3190 commit 629c723
Show file tree
Hide file tree
Showing 3 changed files with 157 additions and 164 deletions.
14 changes: 13 additions & 1 deletion .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,19 @@ jobs:
run: chmod +x gradlew

- name: Build with Gradle
run: ./gradlew build --stacktrace
run: ./gradlew assembleDebug --stacktrace

- name: Rename output APK
run: |
DATE=$(date +'%Y%m%d-%H%M')
mv app/build/outputs/apk/debug/app-debug.apk app/build/outputs/apk/debug/OSMTracker-debug-$DATE.apk
echo "ARTIFACT_DATE=$DATE" >> $GITHUB_ENV
- name: Upload a Build Artifact
uses: actions/upload-artifact@v4
with:
name: debug-${{ env.ARTIFACT_DATE }}
path: app/build/outputs/apk/debug/OSMTracker-debug-*.apk

- name: Run unit tests and jacoco coverage
run: ./gradlew testDebugUnitTest jacocoTestReport --stacktrace
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ dependencies {

//implementation 'org.apache.httpcomponents:httpmime:4.5.6'

implementation 'org.osmdroid:osmdroid-android:6.1.5'
implementation 'org.osmdroid:osmdroid-android:6.1.20'
//implementation 'org.apache.httpcomponents:httpcore:4.4.13'

//implementation 'oauth.signpost:signpost-commonshttp4:1.2.1.2'
Expand Down
Loading

0 comments on commit 629c723

Please sign in to comment.