Skip to content

Commit

Permalink
remove IntentService and use cordova.getThreadPool()
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Baar committed Mar 30, 2020
1 parent 4034af4 commit 141d269
Show file tree
Hide file tree
Showing 5 changed files with 211 additions and 301 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 3.4.0 (2020-03-30)

- remove `IntentService` and use `cordova.getThreadPool()`

# 3.3.1 (2020-03-27)

- closes #55
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cordova-plugin-nativegeocoder",
"version": "3.3.1",
"version": "3.4.0",
"description": "Cordova plugin for native forward and reverse geocoding",
"cordova": {
"id": "cordova-plugin-nativegeocoder",
Expand Down
11 changes: 1 addition & 10 deletions plugin.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<plugin id="cordova-plugin-nativegeocoder" version="3.3.1" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<plugin id="cordova-plugin-nativegeocoder" version="3.4.0" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<name>NativeGeocoder</name>
<description>Cordova plugin for native forward and reverse geocoding</description>
<license>MIT</license>
Expand All @@ -22,16 +22,7 @@
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
</config-file>

<config-file target="AndroidManifest.xml" parent="application">
<service
android:name="cordova.plugin.nativegeocoder.GeocodingIntentService"
android:exported="false"
android:enabled="true"
/>
</config-file>

<source-file src="src/android/NativeGeocoder.java" target-dir="src/cordova/plugin/nativegeocoder" />
<source-file src="src/android/GeocodingIntentService.java" target-dir="src/cordova/plugin/nativegeocoder" />
</platform>

<!-- ios -->
Expand Down
245 changes: 0 additions & 245 deletions src/android/GeocodingIntentService.java

This file was deleted.

Loading

0 comments on commit 141d269

Please sign in to comment.