renamed to Uebung 7

This commit is contained in:
2020-10-21 16:58:19 +02:00
parent 2a718faa9d
commit 0cc3691e50
11 changed files with 13 additions and 11 deletions

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.ploedige.uebung7und10">
package="com.ploedige.uebung7">
<application
android:allowBackup="true"
@@ -8,7 +8,7 @@
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.Uebung7und10">
android:theme="@style/Theme.Uebung7">
<activity android:name=".ResultActivity"></activity>
<activity android:name=".MainActivity">
<intent-filter>

View File

@@ -1,4 +1,4 @@
package com.ploedige.uebung7und10;
package com.ploedige.uebung7;
import androidx.annotation.Nullable;
import androidx.appcompat.app.AppCompatActivity;

View File

@@ -1,4 +1,4 @@
package com.ploedige.uebung7und10;
package com.ploedige.uebung7;
import androidx.appcompat.app.AppCompatActivity;

View File

@@ -1,6 +1,6 @@
<resources xmlns:tools="http://schemas.android.com/tools">
<!-- Base application theme. -->
<style name="Theme.Uebung7und10" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
<style name="Theme.Uebung7" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
<!-- Primary brand color. -->
<item name="colorPrimary">@color/purple_200</item>
<item name="colorPrimaryVariant">@color/purple_700</item>

View File

@@ -1,3 +1,3 @@
<resources>
<string name="app_name">Uebung7und10</string>
<string name="app_name">Uebung7</string>
</resources>

View File

@@ -1,6 +1,6 @@
<resources xmlns:tools="http://schemas.android.com/tools">
<!-- Base application theme. -->
<style name="Theme.Uebung7und10" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
<style name="Theme.Uebung7" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
<!-- Primary brand color. -->
<item name="colorPrimary">@color/purple_500</item>
<item name="colorPrimaryVariant">@color/purple_700</item>

View File

@@ -1,4 +1,4 @@
package com.ploedige.uebung7und10;
package com.ploedige.uebung7;
import org.junit.Test;