chore: rename project

This commit is contained in:
Stefan Zollinger
2024-04-10 10:39:07 +02:00
parent c94ca3f40f
commit e53a269b4f
16 changed files with 19 additions and 19 deletions

2
.idea/.name generated
View File

@@ -1 +1 @@
Sensor Testing App
Kirby Test App

View File

@@ -4,11 +4,11 @@ plugins {
}
android {
namespace 'com.example.sensortestingapp'
namespace 'com.logitech.vc.kirbytest'
compileSdk 32
defaultConfig {
applicationId "com.example.sensortestingapp"
applicationId "com.logitech.vc.kirbytest"
minSdk 29
targetSdk 32
versionCode 1

View File

@@ -1,4 +1,4 @@
package com.example.sensortestingapp
package com.logitech.vc.kirbytest
import androidx.test.ext.junit.runners.AndroidJUnit4
import androidx.test.platform.app.InstrumentationRegistry
@@ -17,6 +17,6 @@ class ExampleInstrumentedTest {
fun useAppContext() {
// Context of the app under test.
val appContext = InstrumentationRegistry.getInstrumentation().targetContext
assertEquals("com.example.sensortestingapp", appContext.packageName)
assertEquals("com.logitech.vc.kirbytest", appContext.packageName)
}
}

View File

@@ -1,4 +1,4 @@
package com.example.sensortestingapp
package com.logitech.vc.kirbytest
import android.app.NotificationChannel
import android.app.NotificationManager

View File

@@ -1,4 +1,4 @@
package com.example.sensortestingapp
package com.logitech.vc.kirbytest
import android.annotation.SuppressLint
import android.app.Service

View File

@@ -1,4 +1,4 @@
package com.example.sensortestingapp
package com.logitech.vc.kirbytest
import android.content.ContentValues
import android.content.Context

View File

@@ -1,4 +1,4 @@
package com.example.sensortestingapp
package com.logitech.vc.kirbytest
import android.util.Log
import org.apache.commons.codec.DecoderException

View File

@@ -1,4 +1,4 @@
package com.example.sensortestingapp
package com.logitech.vc.kirbytest
import android.annotation.SuppressLint
import android.content.Context

View File

@@ -1,4 +1,4 @@
package com.example.sensortestingapp
package com.logitech.vc.kirbytest
import android.annotation.SuppressLint
import android.bluetooth.BluetoothDevice

View File

@@ -1,4 +1,4 @@
package com.example.sensortestingapp
package com.logitech.vc.kirbytest
import android.Manifest
import android.annotation.SuppressLint
@@ -28,7 +28,7 @@ import androidx.core.app.ActivityCompat
import androidx.core.content.ContextCompat
import androidx.core.view.WindowCompat
import androidx.recyclerview.widget.SimpleItemAnimator
import com.example.sensortestingapp.databinding.ActivityMainBinding
import com.logitech.vc.kirbytest.databinding.ActivityMainBinding
import java.time.LocalDateTime
import java.time.format.DateTimeFormatter

View File

@@ -1,4 +1,4 @@
package com.example.sensortestingapp;
package com.logitech.vc.kirbytest;
import android.content.Context;
import android.util.AttributeSet;

View File

@@ -124,7 +124,7 @@
</androidx.constraintlayout.widget.ConstraintLayout>
<com.example.sensortestingapp.NonScrollListView
<com.logitech.vc.kirbytest.NonScrollListView
android:id="@+id/measurement_fields"
android:layout_width="match_parent"
android:layout_height="wrap_content"

View File

@@ -1,3 +1,3 @@
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:tools="http://schemas.android.com/tools"
tools:context="com.example.sensortestingapp.MainActivity" />
tools:context="com.logitech.vc.kirbytest.MainActivity" />

View File

@@ -1,7 +1,7 @@
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
tools:context="com.example.sensortestingapp.MainActivity">
tools:context="com.logitech.vc.kirbytest.MainActivity">
<item
android:id="@+id/action_export"
android:orderInCategory="100"

View File

@@ -1,4 +1,4 @@
package com.example.sensortestingapp
package com.logitech.vc.kirbytest
import org.junit.Assert.*
import org.junit.Test

View File

@@ -12,5 +12,5 @@ dependencyResolutionManagement {
mavenCentral()
}
}
rootProject.name = "Sensor Testing App"
rootProject.name = "Kirby Test App"
include ':app'