Skip to content

Commit

Permalink
Rename package
Browse files Browse the repository at this point in the history
  • Loading branch information
pmaanen committed Oct 18, 2023
1 parent 21327c8 commit 67e52d0
Show file tree
Hide file tree
Showing 10 changed files with 23 additions and 22 deletions.
8 changes: 4 additions & 4 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.example.aliayubkhan.LSLReceiver">
package="de.uol.neuropsy.recorda">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Expand All @@ -20,7 +20,7 @@
tools:ignore="GoogleAppIndexingWarning"
tools:targetApi="q">

<activity android:name="de.uol.neuropsy.LSLReceiver.MainActivity" android:label="RECEIVA"
<activity android:name="de.uol.neuropsy.recorda.MainActivity" android:label="recorda"
android:theme="@style/AppTheme.NoActionBar"
android:screenOrientation="portrait"
android:exported="true">
Expand All @@ -32,12 +32,12 @@
</activity>

<activity
android:name="de.uol.neuropsy.LSLReceiver.SettingsActivity"
android:name="de.uol.neuropsy.recorda.SettingsActivity"
android:screenOrientation="portrait"
android:theme="@style/AppTheme.NoActionBar"/>

<service
android:name="de.uol.neuropsy.LSLReceiver.LSLService"
android:name="de.uol.neuropsy.recorda.LSLService"
android:enabled="true"
android:exported="true"></service>
</application>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package de.uol.neuropsy.LSLReceiver;
package de.uol.neuropsy.recorda;

import de.uol.neuropsy.LSLReceiver.recorder.RecorderFactory;
import de.uol.neuropsy.LSLReceiver.recorder.StreamRecording;
import de.uol.neuropsy.LSLReceiver.xdf.XdfWriter;
import de.uol.neuropsy.recorda.recorder.RecorderFactory;
import de.uol.neuropsy.recorda.recorder.StreamRecording;
import de.uol.neuropsy.recorda.xdf.XdfWriter;
import edu.ucsd.sccn.LSL;

import android.app.Notification;
Expand All @@ -22,14 +22,14 @@

import com.example.aliayubkhan.LSLReceiver.R;

import de.uol.neuropsy.LSLReceiver.recorder.StreamRecorder;
import de.uol.neuropsy.recorda.recorder.StreamRecorder;

import java.nio.file.Path;
import java.time.LocalDateTime;
import java.util.ArrayList;
import java.util.List;

import static de.uol.neuropsy.LSLReceiver.MainActivity.selectedStreamNames;
import static de.uol.neuropsy.recorda.MainActivity.selectedStreamNames;


/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package de.uol.neuropsy.LSLReceiver;
package de.uol.neuropsy.recorda;

import edu.ucsd.sccn.LSL;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package de.uol.neuropsy.LSLReceiver;
package de.uol.neuropsy.recorda;

import android.annotation.SuppressLint;
import android.content.ContentUris;
Expand All @@ -19,6 +19,7 @@

import com.example.aliayubkhan.LSLReceiver.R;

import de.uol.neuropsy.recorda.R;
public class SettingsActivity extends AppCompatActivity {

public static Boolean samplingRate_set_Check = Boolean.FALSE;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package de.uol.neuropsy.LSLReceiver.recorder;
package de.uol.neuropsy.recorda.recorder;

import java.io.IOException;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package de.uol.neuropsy.LSLReceiver.recorder;
package de.uol.neuropsy.recorda.recorder;

import de.uol.neuropsy.LSLReceiver.util.ListToPrimitiveArray;
import de.uol.neuropsy.LSLReceiver.xdf.XdfWriter;
import de.uol.neuropsy.recorda.util.ListToPrimitiveArray;
import de.uol.neuropsy.recorda.xdf.XdfWriter;

import java.io.Closeable;
import java.io.IOException;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package de.uol.neuropsy.LSLReceiver.recorder;
package de.uol.neuropsy.recorda.recorder;

import edu.ucsd.sccn.LSL;

import android.util.Log;

import de.uol.neuropsy.LSLReceiver.xdf.XdfWriter;
import de.uol.neuropsy.recorda.xdf.XdfWriter;

import java.io.File;
import java.nio.file.Files;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package de.uol.neuropsy.LSLReceiver.recorder;
package de.uol.neuropsy.recorda.recorder;

/**
* One measurement sample of the offset of a stream's time compared to a reference clock.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package de.uol.neuropsy.LSLReceiver.util;
package de.uol.neuropsy.recorda.util;

import java.util.List;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package de.uol.neuropsy.LSLReceiver.xdf;
package de.uol.neuropsy.recorda.xdf;

import de.uol.neuropsy.LSLReceiver.recorder.TimingOffsetMeasurement;
import de.uol.neuropsy.recorda.recorder.TimingOffsetMeasurement;

import java.nio.file.Path;
import java.text.DecimalFormat;
Expand Down

0 comments on commit 67e52d0

Please sign in to comment.