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 @@ - - - - - - - - - -