我正在尝试在Nativescript应用程序上使用后台Geolocation服务。但是不能使其工作。主要问题是org.nativescript.demo中没有定位道具。 ->位置<-.BackgroundService26.class
我尝试使用demo应用程序,但演示应用程序也无法正常工作。我已经尝试了其他StackOverflow问题中的所有answers
export function startBackgroundTap() {
if (application.android) {
let context = utils.ad.getApplicationContext();
if (device.sdkVersion >= "26") {
const jobScheduler = context.getSystemService((<any>android.content.Context).JOB_SCHEDULER_SERVICE);
const component = new android.content.ComponentName(context, org.nativescript.demo.location.BackgroundService26.class);
const builder = new (<any>android.app).job.JobInfo.Builder(jobId, component);
builder.setOverrideDeadline(0);
return jobScheduler.schedule(builder.build());
} else {
let intent = new android.content.Intent(context, org.nativescript.demo.location.BackgroundService.class);
context.startService(intent);
}
}
}
我希望在后台使用地理位置,但是由于 org.nativescript.demo 中找不到location属性,因此无法使用它。 org.nativescript.demo 是空对象。之后,我尝试更新我的AndroidManifest.xml文件,如下所示
我的AndroidManifest.xml文件如下所示:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="__PACKAGE__"
android:versionCode="1"
android:versionName="1.0">
<supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"/>
<uses-sdk
android:minSdkVersion="17"
android:targetSdkVersion="__APILEVEL__"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.INTERNET"/>
<application
android:name="com.tns.NativeScriptApplication"
android:allowBackup="true"
android:icon="@drawable/icon"
android:label="@string/app_name"
android:theme="@style/AppTheme">
<service android:name="org.nativescript.demo.location.BackgroundService"
android:exported="false" >
</service>
<service android:name="org.nativescript.demo.location.BackgroundService26"
android:permission="android.permission.BIND_JOB_SERVICE"
android:enabled="true"
android:exported="false">
</service>
<activity
android:name="com.tns.NativeScriptActivity"
android:label="@string/title_activity_kimera"
android:configChanges="keyboardHidden|orientation|screenSize"
android:theme="@style/LaunchScreenTheme">
<meta-data android:name="SET_THEME_ON_LAUNCH" android:resource="@style/AppTheme" />
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="com.tns.ErrorReportActivity"/>
</application>
</manifest>
请帮助我,我需要使用它。我尝试了所有可能的操作,但没有任何效果。我认为我的动作有误。
原始演示应用Nativescript Geolocation
我分叉并更改了App。 Geolocation Demo
git clone https://github.com/NativeScript/nativescript-geolocation.git
cd nativescript-geolocation/demo
npm run build.plugin && npm install
tns run android or tns run ios