remove useless changes part 2
This commit is contained in:
parent
c7312cc333
commit
3c7964c9bf
4 changed files with 7 additions and 10 deletions
|
@ -2263,20 +2263,16 @@ public class OsmandAidlApi {
|
|||
public interface SearchCompleteCallback {
|
||||
void onSearchComplete(List<SearchResult> resultSet);
|
||||
}
|
||||
|
||||
|
||||
public interface GpxBitmapCreatedCallback {
|
||||
void onGpxBitmapCreatedComplete(AGpxBitmap aGpxBitmap);
|
||||
}
|
||||
|
||||
|
||||
public interface OsmandAppInitCallback {
|
||||
void onAppInitialized();
|
||||
}
|
||||
|
||||
|
||||
public interface AMapPointUpdateListener {
|
||||
void onAMapPointUpdated(AMapPoint point, String layerId);
|
||||
|
||||
}
|
||||
public interface AKeyguardFlagsUpdateListener {
|
||||
void changeKeyguardFlags(boolean enable);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -498,9 +498,9 @@ public class AppInitializer implements IProgress {
|
|||
app.travelDbHelper.initTravelBooks();
|
||||
}
|
||||
app.travelDbHelper = startupInit(app.travelDbHelper, TravelDbHelper.class);
|
||||
|
||||
app.lockHelper = startupInit(new LockHelper(app), LockHelper.class);
|
||||
|
||||
|
||||
|
||||
initOpeningHoursParser();
|
||||
}
|
||||
|
||||
|
|
|
@ -1532,6 +1532,7 @@ public class OsmandSettings {
|
|||
return null;
|
||||
}
|
||||
|
||||
|
||||
public ITileSource getTileSourceByName(String tileName, boolean warnWhenSelected) {
|
||||
if (tileName == null || tileName.length() == 0) {
|
||||
return null;
|
||||
|
|
|
@ -18,4 +18,4 @@
|
|||
# for enableD8=true min sdk must be > 22
|
||||
# UPDATE: temporairly commented since gradle plugin updated to 3.1.3 and claims INSTALL_FAILED_DEXOPT is fixed
|
||||
# UPDATE 2: D8 causes problems on arm64 devices with Android 6.0 (API 23)
|
||||
android.enableD8=false
|
||||
android.enableD8=false
|
Loading…
Reference in a new issue