До сих пор я пробовал, На моих платформах \ android \ app \ src \ main \ AndroidManifest. xml
<service android:name=".restarter.JobService"
android:permission="android.permission.BIND_JOB_SERVICE" />
<service
android:name=".Service"
android:clearTaskOnLaunch="true"
android:enabled="true"
android:excludeFromRecents="true"
android:launchMode="singleInstance"
/>
<receiver
android:name=".restarter.RestartServiceBroadcastReceiver"
android:enabled="true"
android:exported="true"
android:label="StartMyServiceAtBootReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
<action android:name="android.intent.action.QUICKBOOT_POWERON"/>
<action android:name="android.intent.action.MY_PACKAGE_REPLACED"/>
<action android:name="uk.ac.shef.oak.activity_recognition.sensor_service.RestartSensor"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</receiver>
В Gradle:
dependencies {
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
implementation 'androidx.recyclerview:recyclerview:1.0.0'
}
neverEndingProcessAndroid7-- master -> \ src \ main \ java справился с моим местоположением ->
Как создать собственный плагин с этой функциональностью в моем приложении ioni c v4?