Merge branch 'r3.9'
This commit is contained in:
commit
a5e062c849
3 changed files with 15 additions and 3 deletions
Binary file not shown.
|
@ -106,6 +106,11 @@ android {
|
|||
}
|
||||
}
|
||||
|
||||
clean.doFirst {
|
||||
delete fileTree('assets') {
|
||||
include '*.obf'
|
||||
}
|
||||
}
|
||||
|
||||
task validateTranslate {
|
||||
println "Validating translations"
|
||||
|
@ -126,9 +131,15 @@ task validateTranslate {
|
|||
}
|
||||
}
|
||||
|
||||
task downloadDefaultWikivoyage {
|
||||
doLast {
|
||||
ant.get(src: 'https://builder.osmand.net/wikivoyage-gen/sqlite/Default_wikivoyage_2.travel.obf', dest: 'assets/Default_wikivoyage.travel.obf', skipexisting: 'true')
|
||||
}
|
||||
}
|
||||
|
||||
task downloadWorldMiniBasemap {
|
||||
doLast {
|
||||
ant.get(src: 'http://builder.osmand.net/basemap/World_basemap_mini_2.obf', dest: 'assets/World_basemap_mini.obf', skipexisting: 'true')
|
||||
ant.get(src: 'https://builder.osmand.net/basemap/World_basemap_mini_2.obf', dest: 'assets/World_basemap_mini.obf', skipexisting: 'true')
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -254,7 +265,8 @@ task collectExternalResources {
|
|||
copyWidgetIconsHdpi,
|
||||
copyWidgetIconsXhdpi,
|
||||
copyPoiCategories,
|
||||
downloadWorldMiniBasemap
|
||||
downloadWorldMiniBasemap,
|
||||
downloadDefaultWikivoyage
|
||||
}
|
||||
|
||||
// Legacy core build
|
||||
|
|
|
@ -100,7 +100,7 @@
|
|||
android:paddingRight="@dimen/bottom_sheet_exit_button_margin"
|
||||
android:text="@string/buy"
|
||||
android:textColor="@color/text_color_tab_active_light"
|
||||
android:visibility="visible" />
|
||||
android:visibility="gone" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
|
|
Loading…
Reference in a new issue