Skip to content

Commit eb5e799

Browse files
author
David Pérez Marinas
committed
Updated with previous functionality.
1 parent e38d4fc commit eb5e799

File tree

179 files changed

+1482
-20482
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

179 files changed

+1482
-20482
lines changed

.idea/androidTestResultsUserPreferences.xml

+157
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

+6-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations.xml

-13
This file was deleted.

build.gradle

+3-15
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,5 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
2-
buildscript {
3-
repositories {
4-
jcenter()
5-
google()
6-
}
7-
dependencies {
8-
classpath 'com.android.tools.build:gradle:4.2.1'
9-
}
10-
}
11-
12-
allprojects {
13-
repositories {
14-
jcenter()
15-
google()
16-
}
2+
plugins {
3+
id 'com.android.application' version '7.3.1' apply false
4+
id 'com.android.library' version '7.3.1' apply false
175
}

framework/build.gradle

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1-
apply plugin: 'com.android.library'
1+
plugins {
2+
id 'com.android.library'
3+
}
24

35
android {
4-
compileSdkVersion 10
5-
buildToolsVersion "29.0.3"
6+
namespace 'com.dpm.framework'
7+
compileSdk 33
68

79
defaultConfig {
8-
minSdkVersion 10
9-
targetSdkVersion 10
10+
minSdk 24
11+
targetSdk 33
1012
}
1113

1214
buildTypes {
@@ -18,7 +20,5 @@ android {
1820
}
1921

2022
dependencies {
21-
implementation project(path: ':osmdroidandroid')
22-
implementation project(path: ':osmdroidandroid')
23-
implementation project(path: ':osmdroidandroid')
23+
implementation 'org.osmdroid:osmdroid-android:6.1.0'
2424
}
+2-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="com.dpm.framework"
4-
android:versionCode="1"
5-
android:versionName="1.0">
3+
android:versionCode="2"
4+
android:versionName="2.0">
65

7-
<application android:label="@string/app_name" />
86
</manifest>

framework/src/main/java/com/dpm/framework/EndRunnableExecutionUiHalter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public void dispatch(Object o, final ProgressReportingEventArgs args) {
7171
@Override
7272
public void run() {
7373
_progress += args.getIncrement();
74-
Log.v(LOG_TAG, String.format("Progreso: %1$d", _progress));
74+
Log.d(LOG_TAG, String.format("Progreso: %1$d", _progress));
7575
if(_dialog != null && _dialog.isShowing()){
7676
_dialog.setProgress(_progress);
7777
}

0 commit comments

Comments
 (0)