Skip to content

Commit

Permalink
remove dependabot workflows (#1185)
Browse files Browse the repository at this point in the history
* remove dependabot workflows

* try fix tests

* fix building 1

* fix building 2

* fix tests 2
  • Loading branch information
segler-alex authored Oct 16, 2023
1 parent bd70288 commit f3d963c
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 65 deletions.
22 changes: 0 additions & 22 deletions .github/dependabot-copy-my-content.yml

This file was deleted.

34 changes: 0 additions & 34 deletions .github/dependabot.yml

This file was deleted.

19 changes: 11 additions & 8 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -73,17 +73,20 @@
android:permission="android.permission.BIND_JOB_SERVICE">
<intent-filter>
<action android:name="android.intent.action.MEDIA_BUTTON" />
<action android:name="android.media.browse.MediaBrowserService" />
</intent-filter>
</service>

<!-- <service
<!-- android:name="net.programmierecke.radiodroid2.service.RadioDroidBrowserService"
<!-- android:exported="true"
<!-- tools:ignore="ExportedService">
<!-- <intent-filter>
<!-- <action android:name="android.media.browse.MediaBrowserService" />
<!-- </intent-filter>
<!-- </service>
<!--
<service
android:exported="true"
tools:ignore="ExportedService">
<intent-filter>
<action android:name="android.media.browse.MediaBrowserService" />
android:name="net.programmierecke.radiodroid2.service.RadioDroidBrowserService"
</intent-filter>
</service>
-->

<receiver
android:name="net.programmierecke.radiodroid2.alarm.AlarmReceiver"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,6 @@ public boolean SaveM3UWriter(Writer bw) {
List<DataRadioStation> LoadM3UInternal(String filePath, String fileName) {
try {
File f = new File(filePath, fileName);
ArraySet<DataRadioStation> loadedItems = null;
FileReader fr = new FileReader(f);
return LoadM3UReader(fr);
} catch (Exception e) {
Expand All @@ -530,6 +529,7 @@ List<DataRadioStation> LoadM3UReader(Reader reader) {
final RadioDroidApp radioDroidApp = (RadioDroidApp) context.getApplicationContext();
final OkHttpClient httpClient = radioDroidApp.getHttpClient();
ArrayList<String> listUuids = new ArrayList<String>();
ArraySet<DataRadioStation> loadedItems = null;

BufferedReader br = new BufferedReader(reader);
while ((line = br.readLine()) != null) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package net.programmierecke.radiodroid2.recording;

import android.app.ProgressDialog;
import android.content.ClipData;
import android.content.Context;
import android.content.Intent;
Expand Down

0 comments on commit f3d963c

Please sign in to comment.