Upgrade gradle

This commit is contained in:
edr
2023-10-01 21:43:17 +02:00
parent 9d052fae2f
commit 37b21ad495
4 changed files with 9 additions and 11 deletions

View File

@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="de.rochefort.childmonitor"
android:versionCode="2"
android:versionName="0.2" >
@@ -17,9 +16,8 @@
android:theme="@android:style/Theme.Holo" >
<activity
android:name="de.rochefort.childmonitor.StartActivity"
android:label="@string/app_name"
android:configChanges="orientation|screenSize"
>
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
@@ -27,20 +25,17 @@
</activity>
<activity
android:name="de.rochefort.childmonitor.MonitorActivity"
android:label="@string/app_name"
android:configChanges="orientation|screenSize"
android:parentActivityName="de.rochefort.childmonitor.StartActivity"
/>
<activity
android:name="de.rochefort.childmonitor.DiscoverActivity"
android:label="@string/app_name"
android:configChanges="orientation|screenSize"
android:windowSoftInputMode="adjustPan"
android:parentActivityName="de.rochefort.childmonitor.StartActivity"
/>
<activity
android:name="de.rochefort.childmonitor.ListenActivity"
android:label="@string/app_name"
android:configChanges="orientation|screenSize"
android:parentActivityName="de.rochefort.childmonitor.DiscoverActivity"
/>