diff --git a/OsmAnd/build.gradle.lib b/OsmAnd/build.gradle.lib index bcb0999e91..b5fd457270 100644 --- a/OsmAnd/build.gradle.lib +++ b/OsmAnd/build.gradle.lib @@ -344,39 +344,16 @@ project.afterEvaluate { repositories { ivy { url = System.getenv("OSMAND_BINARIES_IVY_ROOT") ?: "./" + version = "0.1-SNAPSHOT" } } publications { aar(IvyPublication) { - artifact bundleLegacyX86DebugAar { - classifier 'legacyX86Debug' - } - artifact bundleLegacyX86ReleaseAar { - classifier 'legacyX86Release' - } - artifact bundleLegacyArm64DebugAar { - classifier 'legacyArm64Debug' - } - artifact bundleLegacyArm64ReleaseAar { - classifier 'legacyArm64Release' - } - artifact bundleLegacyArmonlyDebugAar { - classifier 'legacyArmonlyDebug' - } - artifact bundleLegacyArmonlyReleaseAar { - classifier 'legacyArmonlyRelease' - } - artifact bundleLegacyArmv7DebugAar { - classifier 'legacyArmv7Debug' - } - artifact bundleLegacyArmv7ReleaseAar { - classifier 'legacyArmv7Release' - } artifact bundleLegacyFatDebugAar { - classifier 'legacyFatDebug' + classifier 'debug' } artifact bundleLegacyFatReleaseAar { - classifier 'legacyFatRelease' + classifier 'release' } } } diff --git a/OsmAnd/res/drawable/ic_action_folder_add.xml b/OsmAnd/res/drawable/ic_action_folder_add.xml new file mode 100644 index 0000000000..6fd297ead0 --- /dev/null +++ b/OsmAnd/res/drawable/ic_action_folder_add.xml @@ -0,0 +1,13 @@ + + + + diff --git a/OsmAnd/res/drawable/ic_action_light_aircraft.xml b/OsmAnd/res/drawable/ic_action_light_aircraft.xml new file mode 100644 index 0000000000..9558141910 --- /dev/null +++ b/OsmAnd/res/drawable/ic_action_light_aircraft.xml @@ -0,0 +1,31 @@ + + + + + + + + + diff --git a/OsmAnd/res/values/strings.xml b/OsmAnd/res/values/strings.xml index 18c24109e3..34a60ca216 100644 --- a/OsmAnd/res/values/strings.xml +++ b/OsmAnd/res/values/strings.xml @@ -11,6 +11,7 @@ Thx - Hardy --> + Light aircraft You can use Elevation data for consideration of Ascent / Descent for your trip %1$s * %2$s OsmAnd shows photos from several sources:\nOpenPlaceReviews - POI photos;\nMapillary - street-level imagery;\nWeb / Wikimedia - POI photos specified in OpenStreetMap data. diff --git a/OsmAnd/src/net/osmand/AndroidUtils.java b/OsmAnd/src/net/osmand/AndroidUtils.java index 69b55a95f4..a3ca6b066b 100644 --- a/OsmAnd/src/net/osmand/AndroidUtils.java +++ b/OsmAnd/src/net/osmand/AndroidUtils.java @@ -328,9 +328,9 @@ public class AndroidUtils { new int[] {} }, new int[] { - Color.GRAY, + ContextCompat.getColor(ctx, night? R.color.text_color_secondary_dark : R.color.text_color_secondary_light), ContextCompat.getColor(ctx, night? R.color.active_color_primary_dark : R.color.active_color_primary_light), - Color.GRAY} + ContextCompat.getColor(ctx, night? R.color.text_color_secondary_dark : R.color.text_color_secondary_light)} ); } diff --git a/OsmAnd/src/net/osmand/plus/profiles/ProfileIcons.java b/OsmAnd/src/net/osmand/plus/profiles/ProfileIcons.java index db7d18185c..3de707794d 100644 --- a/OsmAnd/src/net/osmand/plus/profiles/ProfileIcons.java +++ b/OsmAnd/src/net/osmand/plus/profiles/ProfileIcons.java @@ -45,7 +45,8 @@ public enum ProfileIcons { GO_CART(R.drawable.ic_action_go_cart, R.string.app_mode_go_cart, "ic_action_go_cart"), OSM(R.drawable.ic_action_openstreetmap_logo, R.string.app_mode_osm, "ic_action_openstreetmap_logo"), MOTORBOAT(R.drawable.ic_action_motorboat, R.string.app_mode_motorboat, "ic_action_motorboat"), - KAYAK(R.drawable.ic_action_kayak, R.string.app_mode_kayak, "ic_action_kayak"); + KAYAK(R.drawable.ic_action_kayak, R.string.app_mode_kayak, "ic_action_kayak"), + LIGHT_AIRCRAFT(R.drawable.ic_action_light_aircraft, R.string.app_mode_light_aircraft, "ic_action_light_aircraft"); @DrawableRes private int resId; diff --git a/OsmAnd/src/net/osmand/plus/settings/bottomsheets/ElevationDateBottomSheet.java b/OsmAnd/src/net/osmand/plus/settings/bottomsheets/ElevationDateBottomSheet.java index 14b0e7eacd..10f8c283f9 100644 --- a/OsmAnd/src/net/osmand/plus/settings/bottomsheets/ElevationDateBottomSheet.java +++ b/OsmAnd/src/net/osmand/plus/settings/bottomsheets/ElevationDateBottomSheet.java @@ -3,6 +3,7 @@ package net.osmand.plus.settings.bottomsheets; import android.content.Context; import android.os.Bundle; import android.view.View; +import android.widget.TextView; import androidx.annotation.NonNull; import androidx.fragment.app.Fragment; @@ -60,6 +61,8 @@ public class ElevationDateBottomSheet extends MenuBottomSheetDialogFragment { private String on; private String off; private int activeColor; + private int checkedColor; + private int uncheckedColor; private int disabledColor; private int appModeColor; @@ -95,6 +98,9 @@ public class ElevationDateBottomSheet extends MenuBottomSheetDialogFragment { appModeColor = appMode.getIconColorInfo().getColor(nightMode); activeColor = AndroidUtils.resolveAttribute(themedCtx, R.attr.active_color_basic); disabledColor = AndroidUtils.resolveAttribute(themedCtx, android.R.attr.textColorSecondary); + checkedColor = (nightMode ? app.getResources().getColor(R.color.text_color_primary_dark) : app.getResources().getColor(R.color.text_color_primary_light)); + uncheckedColor = (nightMode ? app.getResources().getColor(R.color.text_color_secondary_dark) : app.getResources().getColor(R.color.text_color_secondary_light)); + items.add(new TitleItem(getString(R.string.routing_attr_height_obstacles_name))); @@ -213,8 +219,12 @@ public class ElevationDateBottomSheet extends MenuBottomSheetDialogFragment { private void enableDisableReliefButtons(boolean enable) { for (BaseBottomSheetItem item : reliefFactorButtons) { - item.getView().setEnabled(enable); - item.getView().findViewById(R.id.compound_button).setEnabled(enable); + View view = item.getView(); + view.setEnabled(enable); + view.findViewById(R.id.compound_button).setEnabled(enable); + + TextView titleField = view.findViewById(R.id.title); + titleField.setTextColor(enable ? checkedColor : uncheckedColor); } } diff --git a/OsmAndCore-sample/.classpath b/OsmAndCore-sample/.classpath deleted file mode 100644 index 7bc01d9a9c..0000000000 --- a/OsmAndCore-sample/.classpath +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/OsmAndCore-sample/.gitignore b/OsmAndCore-sample/.gitignore deleted file mode 100644 index cf9cbeb1c1..0000000000 --- a/OsmAndCore-sample/.gitignore +++ /dev/null @@ -1,20 +0,0 @@ -# Android Studio -/.idea -*.iml - -aarDependencies -libs/android*.jar -libs/com.*.jar -libs/net.osmand-*.jar -gradlew -gradle -gradlew.bat -# Gradle -.gradle -/local.properties - -# MacOSX -.DS_Store - -# Output -/build diff --git a/OsmAndCore-sample/.project b/OsmAndCore-sample/.project deleted file mode 100644 index e3fa89febb..0000000000 --- a/OsmAndCore-sample/.project +++ /dev/null @@ -1,33 +0,0 @@ - - - OsmAndCore-sample - - - - - - com.android.ide.eclipse.adt.ResourceManagerBuilder - - - - - com.android.ide.eclipse.adt.PreCompilerBuilder - - - - - org.eclipse.jdt.core.javabuilder - - - - - com.android.ide.eclipse.adt.ApkBuilder - - - - - - com.android.ide.eclipse.adt.AndroidNature - org.eclipse.jdt.core.javanature - - diff --git a/OsmAndCore-sample/AndroidManifest.xml b/OsmAndCore-sample/AndroidManifest.xml deleted file mode 100644 index 2539b4f162..0000000000 --- a/OsmAndCore-sample/AndroidManifest.xml +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/OsmAndCore-sample/build.gradle b/OsmAndCore-sample/build.gradle deleted file mode 100644 index 9dc879445d..0000000000 --- a/OsmAndCore-sample/build.gradle +++ /dev/null @@ -1,144 +0,0 @@ -apply plugin: 'com.android.application' - -android { - compileSdkVersion 28 - buildToolsVersion "28.0.3" - - dexOptions { - jumboMode true - } - - defaultConfig { - minSdkVersion 15 - targetSdkVersion 28 - versionCode 1 - versionName "1.0" - multiDexEnabled true - } - - lintOptions { - abortOnError false - } - - // This is from OsmAndCore_android.aar - for some reason it's not inherited - aaptOptions { - // Don't compress any embedded resources - noCompress "qz", "png" - } - - sourceSets { - main { - manifest.srcFile "AndroidManifest.xml" - jni.srcDirs = [] - jniLibs.srcDirs = ["libs"] - java.srcDirs = ["src"] - renderscript.srcDirs = ["src"] - resources.srcDirs = ["src"] - res.srcDirs = ["res"] - assets.srcDirs = ["assets"] - } - } - - flavorDimensions "abi" - - productFlavors { - x86 { - dimension "abi" - ndk { - abiFilter "x86" - } - } - arm64 { - dimension "abi" - ndk { - abiFilter 'arm64-v8a' - } - } - armv7 { - dimension "abi" - ndk { - abiFilter "armeabi-v7a" - } - } - fat { - dimension "abi" - ndk { - abiFilters 'arm64-v8a', 'x86', 'armeabi-v7a' - } - } - } - - buildTypes { - debug { - signingConfig android.signingConfigs.debug - } - nativeDebug { - signingConfig android.signingConfigs.debug - } - release { - signingConfig android.signingConfigs.debug - } - } -} - -task collectMiscResources(type: Copy) { - into "src/net/osmand/osm" - from("../../resources/poi") { - include "poi_types.xml" - } -} - -task collectRegionsInfoResources(type: Copy) { - from "../../resources/countries-info" - into "src/net/osmand/map" - include "regions.ocbf" -} - -task collectRoutingResources(type: Sync) { - from "../../resources/routing" - into "src/net/osmand/router" - include "routing.xml" -} - -tasks.withType(JavaCompile) { - compileTask -> compileTask.dependsOn << [collectMiscResources, collectRegionsInfoResources, collectRoutingResources] -} - -repositories { - // Local build - //flatDir { - // dirs 'libs' - //} - ivy { - name = "OsmAndBinariesIvy" - url = "http://builder.osmand.net" - layout "pattern" , { - artifact "ivy/[organisation]/[module]/[revision]/[artifact]-[revision].[ext]" - } - } - jcenter() -} - -dependencies { - implementation project(path: ':OsmAnd-java', configuration: 'android') - implementation 'androidx.multidex:multidex:2.0.1' - implementation 'androidx.appcompat:appcompat:1.1.0' - implementation 'com.google.android.material:material:1.1.0' - implementation 'commons-logging:commons-logging-api:1.1' - implementation 'com.moparisthebest:junidecode:0.1.1' - - implementation fileTree(include: ['gnu-trove-osmand.jar', 'icu4j-49_1_patched.jar'], dir: 'libs') - - implementation "net.osmand:OsmAndCore_android:0.1-SNAPSHOT@aar" - debugImplementation "net.osmand:OsmAndCore_androidNativeRelease:0.1-SNAPSHOT@aar" - nativeDebugImplementation "net.osmand:OsmAndCore_androidNativeDebug:0.1-SNAPSHOT@aar" - releaseImplementation "net.osmand:OsmAndCore_androidNativeRelease:0.1-SNAPSHOT@aar" - - implementation files('libs/QtAndroid.jar') - implementation files('libs/QtAndroidBearer.jar') - - // Local build - //implementation 'com.vividsolutions:jts-core:1.14.0' - //implementation(name: 'OsmAndCore_android-release', ext: 'aar') - //implementation(name: 'OsmAndCore_androidNativeRelease-release', ext: 'aar') -} diff --git a/OsmAndCore-sample/libs/QtAndroid.jar b/OsmAndCore-sample/libs/QtAndroid.jar deleted file mode 100644 index 27b3d2bf7c..0000000000 Binary files a/OsmAndCore-sample/libs/QtAndroid.jar and /dev/null differ diff --git a/OsmAndCore-sample/libs/QtAndroidBearer.jar b/OsmAndCore-sample/libs/QtAndroidBearer.jar deleted file mode 100644 index ca53ce6538..0000000000 Binary files a/OsmAndCore-sample/libs/QtAndroidBearer.jar and /dev/null differ diff --git a/OsmAndCore-sample/libs/gnu-trove-osmand.jar b/OsmAndCore-sample/libs/gnu-trove-osmand.jar deleted file mode 100644 index 1bdfd836e0..0000000000 Binary files a/OsmAndCore-sample/libs/gnu-trove-osmand.jar and /dev/null differ diff --git a/OsmAndCore-sample/libs/icu4j-49_1_patched.jar b/OsmAndCore-sample/libs/icu4j-49_1_patched.jar deleted file mode 100644 index adb11921b2..0000000000 Binary files a/OsmAndCore-sample/libs/icu4j-49_1_patched.jar and /dev/null differ diff --git a/OsmAndCore-sample/project.properties b/OsmAndCore-sample/project.properties deleted file mode 100644 index 43292cb597..0000000000 --- a/OsmAndCore-sample/project.properties +++ /dev/null @@ -1,20 +0,0 @@ -target=android-21 -android.library.reference.1=aarDependencies/com.android.support-appcompat-v7-27.1.1 -android.library.reference.2=aarDependencies/com.android.support-support-v4-27.1.1 -android.library.reference.3=aarDependencies/com.android.support-support-compat-27.1.1 -android.library.reference.4=aarDependencies/android.arch.lifecycle-runtime-1.1.0 -android.library.reference.5=aarDependencies/com.android.support-support-core-ui-27.1.1 -android.library.reference.6=aarDependencies/com.android.support-support-core-utils-27.1.1 -android.library.reference.7=aarDependencies/com.android.support-support-fragment-27.1.1 -android.library.reference.8=aarDependencies/com.android.support-support-media-compat-27.1.1 -android.library.reference.9=aarDependencies/com.android.support-support-vector-drawable-27.1.1 -android.library.reference.10=aarDependencies/com.android.support-animated-vector-drawable-27.1.1 -android.library.reference.11=aarDependencies/com.android.support-design-27.1.1 -android.library.reference.12=aarDependencies/com.android.support-transition-27.1.1 -android.library.reference.13=aarDependencies/com.android.support-recyclerview-v7-27.1.1 -android.library.reference.14=aarDependencies/net.osmand-OsmAndCore_android-0.1-SNAPSHOT -android.library.reference.15=aarDependencies/net.osmand-OsmAndCore_androidNativeRelease-0.1-SNAPSHOT -android.library.reference.16=aarDependencies/com.android.support-multidex-1.0.1 -android.library.reference.17=aarDependencies/android.arch.lifecycle-viewmodel-1.1.0 -android.library.reference.18=aarDependencies/android.arch.lifecycle-livedata-core-1.1.0 -android.library.reference.19=aarDependencies/android.arch.core-runtime-1.1.0 diff --git a/OsmAndCore-sample/res/anim/slide_in_bottom.xml b/OsmAndCore-sample/res/anim/slide_in_bottom.xml deleted file mode 100644 index 4409549034..0000000000 --- a/OsmAndCore-sample/res/anim/slide_in_bottom.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - \ No newline at end of file diff --git a/OsmAndCore-sample/res/anim/slide_in_left.xml b/OsmAndCore-sample/res/anim/slide_in_left.xml deleted file mode 100644 index a78b2a3d3b..0000000000 --- a/OsmAndCore-sample/res/anim/slide_in_left.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - \ No newline at end of file diff --git a/OsmAndCore-sample/res/anim/slide_out_bottom.xml b/OsmAndCore-sample/res/anim/slide_out_bottom.xml deleted file mode 100644 index 6d20264129..0000000000 --- a/OsmAndCore-sample/res/anim/slide_out_bottom.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - \ No newline at end of file diff --git a/OsmAndCore-sample/res/anim/slide_out_left.xml b/OsmAndCore-sample/res/anim/slide_out_left.xml deleted file mode 100644 index d0d53a67b2..0000000000 --- a/OsmAndCore-sample/res/anim/slide_out_left.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - \ No newline at end of file diff --git a/OsmAndCore-sample/res/drawable-hdpi/bg_contextmenu_dots_light.9.png b/OsmAndCore-sample/res/drawable-hdpi/bg_contextmenu_dots_light.9.png deleted file mode 100644 index 185a90d368..0000000000 Binary files a/OsmAndCore-sample/res/drawable-hdpi/bg_contextmenu_dots_light.9.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-hdpi/bg_contextmenu_shadow.9.png b/OsmAndCore-sample/res/drawable-hdpi/bg_contextmenu_shadow.9.png deleted file mode 100644 index 0356c4a541..0000000000 Binary files a/OsmAndCore-sample/res/drawable-hdpi/bg_contextmenu_shadow.9.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-hdpi/bg_contextmenu_shadow_right_light.9.png b/OsmAndCore-sample/res/drawable-hdpi/bg_contextmenu_shadow_right_light.9.png deleted file mode 100644 index ced925cc93..0000000000 Binary files a/OsmAndCore-sample/res/drawable-hdpi/bg_contextmenu_shadow_right_light.9.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-hdpi/bg_contextmenu_shadow_top_light.9.png b/OsmAndCore-sample/res/drawable-hdpi/bg_contextmenu_shadow_top_light.9.png deleted file mode 100644 index 8e5d32f5cd..0000000000 Binary files a/OsmAndCore-sample/res/drawable-hdpi/bg_contextmenu_shadow_top_light.9.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-hdpi/ic_action_get_my_location.png b/OsmAndCore-sample/res/drawable-hdpi/ic_action_get_my_location.png deleted file mode 100644 index 7845932c5f..0000000000 Binary files a/OsmAndCore-sample/res/drawable-hdpi/ic_action_get_my_location.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-hdpi/ic_action_remove_dark.png b/OsmAndCore-sample/res/drawable-hdpi/ic_action_remove_dark.png deleted file mode 100644 index 718053c411..0000000000 Binary files a/OsmAndCore-sample/res/drawable-hdpi/ic_action_remove_dark.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-hdpi/ic_action_search_dark.png b/OsmAndCore-sample/res/drawable-hdpi/ic_action_search_dark.png deleted file mode 100644 index 3e131808a8..0000000000 Binary files a/OsmAndCore-sample/res/drawable-hdpi/ic_action_search_dark.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-hdpi/ic_arrow_back.png b/OsmAndCore-sample/res/drawable-hdpi/ic_arrow_back.png deleted file mode 100644 index 7a975df613..0000000000 Binary files a/OsmAndCore-sample/res/drawable-hdpi/ic_arrow_back.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-hdpi/ic_direction_arrow.png b/OsmAndCore-sample/res/drawable-hdpi/ic_direction_arrow.png deleted file mode 100644 index 790efba776..0000000000 Binary files a/OsmAndCore-sample/res/drawable-hdpi/ic_direction_arrow.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-hdpi/map_bt_round_1_shadow.png b/OsmAndCore-sample/res/drawable-hdpi/map_bt_round_1_shadow.png deleted file mode 100644 index 159d4c08b5..0000000000 Binary files a/OsmAndCore-sample/res/drawable-hdpi/map_bt_round_1_shadow.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-hdpi/map_bt_round_2_shadow.png b/OsmAndCore-sample/res/drawable-hdpi/map_bt_round_2_shadow.png deleted file mode 100644 index 38e96be167..0000000000 Binary files a/OsmAndCore-sample/res/drawable-hdpi/map_bt_round_2_shadow.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-hdpi/map_compass.png b/OsmAndCore-sample/res/drawable-hdpi/map_compass.png deleted file mode 100644 index e852a4db1d..0000000000 Binary files a/OsmAndCore-sample/res/drawable-hdpi/map_compass.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-hdpi/map_compass_niu.png b/OsmAndCore-sample/res/drawable-hdpi/map_compass_niu.png deleted file mode 100644 index 3ae3157990..0000000000 Binary files a/OsmAndCore-sample/res/drawable-hdpi/map_compass_niu.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-hdpi/map_my_location.png b/OsmAndCore-sample/res/drawable-hdpi/map_my_location.png deleted file mode 100644 index 7845932c5f..0000000000 Binary files a/OsmAndCore-sample/res/drawable-hdpi/map_my_location.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-hdpi/map_search_dark.png b/OsmAndCore-sample/res/drawable-hdpi/map_search_dark.png deleted file mode 100644 index 6d13bd3992..0000000000 Binary files a/OsmAndCore-sample/res/drawable-hdpi/map_search_dark.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-hdpi/map_zoom_in.png b/OsmAndCore-sample/res/drawable-hdpi/map_zoom_in.png deleted file mode 100644 index d37a733a9b..0000000000 Binary files a/OsmAndCore-sample/res/drawable-hdpi/map_zoom_in.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-hdpi/map_zoom_out.png b/OsmAndCore-sample/res/drawable-hdpi/map_zoom_out.png deleted file mode 100644 index 36a88d3536..0000000000 Binary files a/OsmAndCore-sample/res/drawable-hdpi/map_zoom_out.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-mdpi/bg_contextmenu_dots_light.9.png b/OsmAndCore-sample/res/drawable-mdpi/bg_contextmenu_dots_light.9.png deleted file mode 100644 index 1aae0ac824..0000000000 Binary files a/OsmAndCore-sample/res/drawable-mdpi/bg_contextmenu_dots_light.9.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-mdpi/bg_contextmenu_shadow.9.png b/OsmAndCore-sample/res/drawable-mdpi/bg_contextmenu_shadow.9.png deleted file mode 100644 index f5984c27ce..0000000000 Binary files a/OsmAndCore-sample/res/drawable-mdpi/bg_contextmenu_shadow.9.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-mdpi/bg_contextmenu_shadow_right_light.9.png b/OsmAndCore-sample/res/drawable-mdpi/bg_contextmenu_shadow_right_light.9.png deleted file mode 100644 index 01e901982a..0000000000 Binary files a/OsmAndCore-sample/res/drawable-mdpi/bg_contextmenu_shadow_right_light.9.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-mdpi/bg_contextmenu_shadow_top_light.9.png b/OsmAndCore-sample/res/drawable-mdpi/bg_contextmenu_shadow_top_light.9.png deleted file mode 100644 index 84d1884c71..0000000000 Binary files a/OsmAndCore-sample/res/drawable-mdpi/bg_contextmenu_shadow_top_light.9.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-mdpi/ic_action_get_my_location.png b/OsmAndCore-sample/res/drawable-mdpi/ic_action_get_my_location.png deleted file mode 100644 index 570e408c2e..0000000000 Binary files a/OsmAndCore-sample/res/drawable-mdpi/ic_action_get_my_location.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-mdpi/ic_action_remove_dark.png b/OsmAndCore-sample/res/drawable-mdpi/ic_action_remove_dark.png deleted file mode 100644 index 939f58b193..0000000000 Binary files a/OsmAndCore-sample/res/drawable-mdpi/ic_action_remove_dark.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-mdpi/ic_action_search_dark.png b/OsmAndCore-sample/res/drawable-mdpi/ic_action_search_dark.png deleted file mode 100644 index 6d37f2ca3a..0000000000 Binary files a/OsmAndCore-sample/res/drawable-mdpi/ic_action_search_dark.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-mdpi/ic_arrow_back.png b/OsmAndCore-sample/res/drawable-mdpi/ic_arrow_back.png deleted file mode 100644 index c14541d3d7..0000000000 Binary files a/OsmAndCore-sample/res/drawable-mdpi/ic_arrow_back.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-mdpi/ic_direction_arrow.png b/OsmAndCore-sample/res/drawable-mdpi/ic_direction_arrow.png deleted file mode 100644 index 0dd7c1772e..0000000000 Binary files a/OsmAndCore-sample/res/drawable-mdpi/ic_direction_arrow.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-mdpi/map_bt_round_1_shadow.png b/OsmAndCore-sample/res/drawable-mdpi/map_bt_round_1_shadow.png deleted file mode 100644 index 586ba999a4..0000000000 Binary files a/OsmAndCore-sample/res/drawable-mdpi/map_bt_round_1_shadow.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-mdpi/map_bt_round_2_shadow.png b/OsmAndCore-sample/res/drawable-mdpi/map_bt_round_2_shadow.png deleted file mode 100644 index 47f73eb865..0000000000 Binary files a/OsmAndCore-sample/res/drawable-mdpi/map_bt_round_2_shadow.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-mdpi/map_compass.png b/OsmAndCore-sample/res/drawable-mdpi/map_compass.png deleted file mode 100644 index 82ee8e66f6..0000000000 Binary files a/OsmAndCore-sample/res/drawable-mdpi/map_compass.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-mdpi/map_compass_niu.png b/OsmAndCore-sample/res/drawable-mdpi/map_compass_niu.png deleted file mode 100644 index 5207161498..0000000000 Binary files a/OsmAndCore-sample/res/drawable-mdpi/map_compass_niu.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-mdpi/map_my_location.png b/OsmAndCore-sample/res/drawable-mdpi/map_my_location.png deleted file mode 100644 index 570e408c2e..0000000000 Binary files a/OsmAndCore-sample/res/drawable-mdpi/map_my_location.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-mdpi/map_search_dark.png b/OsmAndCore-sample/res/drawable-mdpi/map_search_dark.png deleted file mode 100644 index 57ec156449..0000000000 Binary files a/OsmAndCore-sample/res/drawable-mdpi/map_search_dark.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-mdpi/map_zoom_in.png b/OsmAndCore-sample/res/drawable-mdpi/map_zoom_in.png deleted file mode 100644 index 938a4d4805..0000000000 Binary files a/OsmAndCore-sample/res/drawable-mdpi/map_zoom_in.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-mdpi/map_zoom_out.png b/OsmAndCore-sample/res/drawable-mdpi/map_zoom_out.png deleted file mode 100644 index 2051dbd1a6..0000000000 Binary files a/OsmAndCore-sample/res/drawable-mdpi/map_zoom_out.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-xhdpi/bg_contextmenu_dots_light.9.png b/OsmAndCore-sample/res/drawable-xhdpi/bg_contextmenu_dots_light.9.png deleted file mode 100644 index eee6b20e1b..0000000000 Binary files a/OsmAndCore-sample/res/drawable-xhdpi/bg_contextmenu_dots_light.9.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-xhdpi/bg_contextmenu_shadow.9.png b/OsmAndCore-sample/res/drawable-xhdpi/bg_contextmenu_shadow.9.png deleted file mode 100644 index b40ce9b5b7..0000000000 Binary files a/OsmAndCore-sample/res/drawable-xhdpi/bg_contextmenu_shadow.9.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-xhdpi/bg_contextmenu_shadow_right_light.9.png b/OsmAndCore-sample/res/drawable-xhdpi/bg_contextmenu_shadow_right_light.9.png deleted file mode 100644 index 8ae4fc96fe..0000000000 Binary files a/OsmAndCore-sample/res/drawable-xhdpi/bg_contextmenu_shadow_right_light.9.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-xhdpi/bg_contextmenu_shadow_top_light.9.png b/OsmAndCore-sample/res/drawable-xhdpi/bg_contextmenu_shadow_top_light.9.png deleted file mode 100644 index 2ce218b6e1..0000000000 Binary files a/OsmAndCore-sample/res/drawable-xhdpi/bg_contextmenu_shadow_top_light.9.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-xhdpi/ic_action_get_my_location.png b/OsmAndCore-sample/res/drawable-xhdpi/ic_action_get_my_location.png deleted file mode 100644 index 5c47a7eb30..0000000000 Binary files a/OsmAndCore-sample/res/drawable-xhdpi/ic_action_get_my_location.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-xhdpi/ic_action_remove_dark.png b/OsmAndCore-sample/res/drawable-xhdpi/ic_action_remove_dark.png deleted file mode 100644 index 7f2de6194e..0000000000 Binary files a/OsmAndCore-sample/res/drawable-xhdpi/ic_action_remove_dark.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-xhdpi/ic_action_search_dark.png b/OsmAndCore-sample/res/drawable-xhdpi/ic_action_search_dark.png deleted file mode 100644 index 60536de3bb..0000000000 Binary files a/OsmAndCore-sample/res/drawable-xhdpi/ic_action_search_dark.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-xhdpi/ic_arrow_back.png b/OsmAndCore-sample/res/drawable-xhdpi/ic_arrow_back.png deleted file mode 100644 index e212ab8f5c..0000000000 Binary files a/OsmAndCore-sample/res/drawable-xhdpi/ic_arrow_back.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-xhdpi/ic_direction_arrow.png b/OsmAndCore-sample/res/drawable-xhdpi/ic_direction_arrow.png deleted file mode 100644 index fbab873b59..0000000000 Binary files a/OsmAndCore-sample/res/drawable-xhdpi/ic_direction_arrow.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-xhdpi/map_bt_round_1_shadow.png b/OsmAndCore-sample/res/drawable-xhdpi/map_bt_round_1_shadow.png deleted file mode 100644 index 2459bd66ee..0000000000 Binary files a/OsmAndCore-sample/res/drawable-xhdpi/map_bt_round_1_shadow.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-xhdpi/map_bt_round_2_shadow.png b/OsmAndCore-sample/res/drawable-xhdpi/map_bt_round_2_shadow.png deleted file mode 100644 index 6a25f3f7e0..0000000000 Binary files a/OsmAndCore-sample/res/drawable-xhdpi/map_bt_round_2_shadow.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-xhdpi/map_compass.png b/OsmAndCore-sample/res/drawable-xhdpi/map_compass.png deleted file mode 100644 index d953bc4d09..0000000000 Binary files a/OsmAndCore-sample/res/drawable-xhdpi/map_compass.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-xhdpi/map_compass_niu.png b/OsmAndCore-sample/res/drawable-xhdpi/map_compass_niu.png deleted file mode 100644 index 05f8351357..0000000000 Binary files a/OsmAndCore-sample/res/drawable-xhdpi/map_compass_niu.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-xhdpi/map_my_location.png b/OsmAndCore-sample/res/drawable-xhdpi/map_my_location.png deleted file mode 100644 index 5c47a7eb30..0000000000 Binary files a/OsmAndCore-sample/res/drawable-xhdpi/map_my_location.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-xhdpi/map_search_dark.png b/OsmAndCore-sample/res/drawable-xhdpi/map_search_dark.png deleted file mode 100644 index 45170ec8cb..0000000000 Binary files a/OsmAndCore-sample/res/drawable-xhdpi/map_search_dark.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-xhdpi/map_zoom_in.png b/OsmAndCore-sample/res/drawable-xhdpi/map_zoom_in.png deleted file mode 100644 index eeb0b1a9cc..0000000000 Binary files a/OsmAndCore-sample/res/drawable-xhdpi/map_zoom_in.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-xhdpi/map_zoom_out.png b/OsmAndCore-sample/res/drawable-xhdpi/map_zoom_out.png deleted file mode 100644 index 8e62ba2a84..0000000000 Binary files a/OsmAndCore-sample/res/drawable-xhdpi/map_zoom_out.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-xxhdpi/bg_contextmenu_dots_light.9.png b/OsmAndCore-sample/res/drawable-xxhdpi/bg_contextmenu_dots_light.9.png deleted file mode 100644 index dd524935c2..0000000000 Binary files a/OsmAndCore-sample/res/drawable-xxhdpi/bg_contextmenu_dots_light.9.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-xxhdpi/bg_contextmenu_shadow.9.png b/OsmAndCore-sample/res/drawable-xxhdpi/bg_contextmenu_shadow.9.png deleted file mode 100644 index 89b8ffc35e..0000000000 Binary files a/OsmAndCore-sample/res/drawable-xxhdpi/bg_contextmenu_shadow.9.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-xxhdpi/bg_contextmenu_shadow_right_light.9.png b/OsmAndCore-sample/res/drawable-xxhdpi/bg_contextmenu_shadow_right_light.9.png deleted file mode 100644 index e5bb4a1123..0000000000 Binary files a/OsmAndCore-sample/res/drawable-xxhdpi/bg_contextmenu_shadow_right_light.9.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-xxhdpi/bg_contextmenu_shadow_top_light.9.png b/OsmAndCore-sample/res/drawable-xxhdpi/bg_contextmenu_shadow_top_light.9.png deleted file mode 100644 index d88af5d8a5..0000000000 Binary files a/OsmAndCore-sample/res/drawable-xxhdpi/bg_contextmenu_shadow_top_light.9.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-xxhdpi/ic_action_get_my_location.png b/OsmAndCore-sample/res/drawable-xxhdpi/ic_action_get_my_location.png deleted file mode 100644 index 8b82220ab9..0000000000 Binary files a/OsmAndCore-sample/res/drawable-xxhdpi/ic_action_get_my_location.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-xxhdpi/ic_action_remove_dark.png b/OsmAndCore-sample/res/drawable-xxhdpi/ic_action_remove_dark.png deleted file mode 100644 index ea01fe05e2..0000000000 Binary files a/OsmAndCore-sample/res/drawable-xxhdpi/ic_action_remove_dark.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-xxhdpi/ic_action_search_dark.png b/OsmAndCore-sample/res/drawable-xxhdpi/ic_action_search_dark.png deleted file mode 100644 index 52f8a7de31..0000000000 Binary files a/OsmAndCore-sample/res/drawable-xxhdpi/ic_action_search_dark.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-xxhdpi/ic_arrow_back.png b/OsmAndCore-sample/res/drawable-xxhdpi/ic_arrow_back.png deleted file mode 100644 index 1766bbc0ef..0000000000 Binary files a/OsmAndCore-sample/res/drawable-xxhdpi/ic_arrow_back.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-xxhdpi/ic_direction_arrow.png b/OsmAndCore-sample/res/drawable-xxhdpi/ic_direction_arrow.png deleted file mode 100644 index bd17a41d7f..0000000000 Binary files a/OsmAndCore-sample/res/drawable-xxhdpi/ic_direction_arrow.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-xxhdpi/map_bt_round_1_shadow.png b/OsmAndCore-sample/res/drawable-xxhdpi/map_bt_round_1_shadow.png deleted file mode 100644 index 04833b06d2..0000000000 Binary files a/OsmAndCore-sample/res/drawable-xxhdpi/map_bt_round_1_shadow.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-xxhdpi/map_bt_round_2_shadow.png b/OsmAndCore-sample/res/drawable-xxhdpi/map_bt_round_2_shadow.png deleted file mode 100644 index 684c48808d..0000000000 Binary files a/OsmAndCore-sample/res/drawable-xxhdpi/map_bt_round_2_shadow.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-xxhdpi/map_compass.png b/OsmAndCore-sample/res/drawable-xxhdpi/map_compass.png deleted file mode 100644 index f6ab0bcc4f..0000000000 Binary files a/OsmAndCore-sample/res/drawable-xxhdpi/map_compass.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-xxhdpi/map_compass_niu.png b/OsmAndCore-sample/res/drawable-xxhdpi/map_compass_niu.png deleted file mode 100644 index 1e039c7f47..0000000000 Binary files a/OsmAndCore-sample/res/drawable-xxhdpi/map_compass_niu.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-xxhdpi/map_my_location.png b/OsmAndCore-sample/res/drawable-xxhdpi/map_my_location.png deleted file mode 100644 index 8b82220ab9..0000000000 Binary files a/OsmAndCore-sample/res/drawable-xxhdpi/map_my_location.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-xxhdpi/map_search_dark.png b/OsmAndCore-sample/res/drawable-xxhdpi/map_search_dark.png deleted file mode 100644 index afcada973c..0000000000 Binary files a/OsmAndCore-sample/res/drawable-xxhdpi/map_search_dark.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-xxhdpi/map_zoom_in.png b/OsmAndCore-sample/res/drawable-xxhdpi/map_zoom_in.png deleted file mode 100644 index 363037676d..0000000000 Binary files a/OsmAndCore-sample/res/drawable-xxhdpi/map_zoom_in.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable-xxhdpi/map_zoom_out.png b/OsmAndCore-sample/res/drawable-xxhdpi/map_zoom_out.png deleted file mode 100644 index 10f88a6623..0000000000 Binary files a/OsmAndCore-sample/res/drawable-xxhdpi/map_zoom_out.png and /dev/null differ diff --git a/OsmAndCore-sample/res/drawable/bg_bottom_menu_light.xml b/OsmAndCore-sample/res/drawable/bg_bottom_menu_light.xml deleted file mode 100644 index 7a6ec22e1c..0000000000 --- a/OsmAndCore-sample/res/drawable/bg_bottom_menu_light.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/OsmAndCore-sample/res/drawable/bg_left_menu_light.xml b/OsmAndCore-sample/res/drawable/bg_left_menu_light.xml deleted file mode 100644 index 9edc174531..0000000000 --- a/OsmAndCore-sample/res/drawable/bg_left_menu_light.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/OsmAndCore-sample/res/drawable/bg_map_context_menu_light.xml b/OsmAndCore-sample/res/drawable/bg_map_context_menu_light.xml deleted file mode 100644 index dd3d7d2a98..0000000000 --- a/OsmAndCore-sample/res/drawable/bg_map_context_menu_light.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/OsmAndCore-sample/res/drawable/blue_button_drawable.xml b/OsmAndCore-sample/res/drawable/blue_button_drawable.xml deleted file mode 100644 index c60ccfdf04..0000000000 --- a/OsmAndCore-sample/res/drawable/blue_button_drawable.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/OsmAndCore-sample/res/drawable/blue_button_drawable_idle.xml b/OsmAndCore-sample/res/drawable/blue_button_drawable_idle.xml deleted file mode 100644 index 443f554472..0000000000 --- a/OsmAndCore-sample/res/drawable/blue_button_drawable_idle.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - \ No newline at end of file diff --git a/OsmAndCore-sample/res/drawable/blue_button_drawable_pressed.xml b/OsmAndCore-sample/res/drawable/blue_button_drawable_pressed.xml deleted file mode 100644 index fdd6878fec..0000000000 --- a/OsmAndCore-sample/res/drawable/blue_button_drawable_pressed.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - \ No newline at end of file diff --git a/OsmAndCore-sample/res/drawable/btn_circle.xml b/OsmAndCore-sample/res/drawable/btn_circle.xml deleted file mode 100644 index 96603af448..0000000000 --- a/OsmAndCore-sample/res/drawable/btn_circle.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/OsmAndCore-sample/res/drawable/btn_circle_n.xml b/OsmAndCore-sample/res/drawable/btn_circle_n.xml deleted file mode 100644 index dfbe7a2326..0000000000 --- a/OsmAndCore-sample/res/drawable/btn_circle_n.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/OsmAndCore-sample/res/drawable/btn_circle_p.xml b/OsmAndCore-sample/res/drawable/btn_circle_p.xml deleted file mode 100644 index 9574b2cbd5..0000000000 --- a/OsmAndCore-sample/res/drawable/btn_circle_p.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/OsmAndCore-sample/res/drawable/btn_inset_circle_p.xml b/OsmAndCore-sample/res/drawable/btn_inset_circle_p.xml deleted file mode 100644 index bfd0b7743c..0000000000 --- a/OsmAndCore-sample/res/drawable/btn_inset_circle_p.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/OsmAndCore-sample/res/drawable/btn_inset_circle_trans.xml b/OsmAndCore-sample/res/drawable/btn_inset_circle_trans.xml deleted file mode 100644 index 6a410d8e9b..0000000000 --- a/OsmAndCore-sample/res/drawable/btn_inset_circle_trans.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/OsmAndCore-sample/res/drawable/btn_inset_circle_trans_n.xml b/OsmAndCore-sample/res/drawable/btn_inset_circle_trans_n.xml deleted file mode 100644 index 14eb6bb728..0000000000 --- a/OsmAndCore-sample/res/drawable/btn_inset_circle_trans_n.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/OsmAndCore-sample/res/drawable/dashboard_button_light.xml b/OsmAndCore-sample/res/drawable/dashboard_button_light.xml deleted file mode 100644 index 1f10bd4b46..0000000000 --- a/OsmAndCore-sample/res/drawable/dashboard_button_light.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/OsmAndCore-sample/res/drawable/expandable_list_item_background_light.xml b/OsmAndCore-sample/res/drawable/expandable_list_item_background_light.xml deleted file mode 100644 index 7765534e02..0000000000 --- a/OsmAndCore-sample/res/drawable/expandable_list_item_background_light.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/OsmAndCore-sample/res/drawable/fab_background_normal.xml b/OsmAndCore-sample/res/drawable/fab_background_normal.xml deleted file mode 100644 index f0d18849e5..0000000000 --- a/OsmAndCore-sample/res/drawable/fab_background_normal.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/OsmAndCore-sample/res/drawable/fab_background_pressed.xml b/OsmAndCore-sample/res/drawable/fab_background_pressed.xml deleted file mode 100644 index 481eb8c5bc..0000000000 --- a/OsmAndCore-sample/res/drawable/fab_background_pressed.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/OsmAndCore-sample/res/drawable/fab_background_style.xml b/OsmAndCore-sample/res/drawable/fab_background_style.xml deleted file mode 100644 index 1acc34de82..0000000000 --- a/OsmAndCore-sample/res/drawable/fab_background_style.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/OsmAndCore-sample/res/layout/activity_main.xml b/OsmAndCore-sample/res/layout/activity_main.xml deleted file mode 100644 index 144db14c90..0000000000 --- a/OsmAndCore-sample/res/layout/activity_main.xml +++ /dev/null @@ -1,117 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/OsmAndCore-sample/res/layout/install_osmand_dialog.xml b/OsmAndCore-sample/res/layout/install_osmand_dialog.xml deleted file mode 100644 index 2b7e39d421..0000000000 --- a/OsmAndCore-sample/res/layout/install_osmand_dialog.xml +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - -