Attempt to fix app not showing up issue

This commit is contained in:
Astatin3
2024-09-18 08:49:26 -06:00
parent 9607241c53
commit e537aab819
6 changed files with 7 additions and 5 deletions
+2
View File
@@ -78,6 +78,8 @@ dependencies {
implementation("org.tensorflow:tensorflow-lite-task-text:0.3.0") implementation("org.tensorflow:tensorflow-lite-task-text:0.3.0")
implementation("io.github.ollama4j:ollama4j:1.0.79")
// implementation("com.github.DeveloperPaul123:SimpleBluetoothLibrary:1.5.1") // implementation("com.github.DeveloperPaul123:SimpleBluetoothLibrary:1.5.1")
@@ -21,6 +21,6 @@ public class ExampleInstrumentedTest {
public void useAppContext() { public void useAppContext() {
// Context of the app under test. // Context of the app under test.
Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext(); Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext();
assertEquals("com.astatin3.scoutingapp2025", appContext.getPackageName()); assertEquals("com.ridgebotics.ridgescout", appContext.getPackageName());
} }
} }
+1 -1
View File
@@ -29,7 +29,7 @@
android:label="@string/app_name" android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round" android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true" android:supportsRtl="true"
android:theme="@style/Theme.ScoutingApp2025" android:theme="@style/Theme.RidgeScout"
android:hardwareAccelerated="true" android:hardwareAccelerated="true"
tools:targetApi="31"> tools:targetApi="31">
<activity <activity
+1 -1
View File
@@ -1,6 +1,6 @@
<resources xmlns:tools="http://schemas.android.com/tools"> <resources xmlns:tools="http://schemas.android.com/tools">
<!-- Base application theme. --> <!-- Base application theme. -->
<style name="Theme.ScoutingApp2025" parent="Theme.MaterialComponents.DayNight.DarkActionBar"> <style name="Theme.RidgeScout" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
<!-- Primary brand color. --> <!-- Primary brand color. -->
<item name="colorPrimary">@color/main_200</item> <item name="colorPrimary">@color/main_200</item>
<item name="colorPrimaryVariant">@color/main_700</item> <item name="colorPrimaryVariant">@color/main_700</item>
+1 -1
View File
@@ -1,6 +1,6 @@
<resources xmlns:tools="http://schemas.android.com/tools"> <resources xmlns:tools="http://schemas.android.com/tools">
<!-- Base application theme. --> <!-- Base application theme. -->
<style name="Theme.ScoutingApp2025" parent="Theme.MaterialComponents.DayNight.DarkActionBar"> <style name="Theme.RidgeScout" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
<!-- Primary brand color. --> <!-- Primary brand color. -->
<item name="colorPrimary">@color/main_500</item> <item name="colorPrimary">@color/main_500</item>
<item name="colorPrimaryVariant">@color/main_700</item> <item name="colorPrimaryVariant">@color/main_700</item>
+1 -1
View File
@@ -21,6 +21,6 @@ dependencyResolutionManagement {
} }
} }
rootProject.name = "ScoutingApp2025" rootProject.name = "RidgeScout"
include(":app") include(":app")