blob: 052377b5cf2f3f6b79d32bd1cb42b6eb66e70de7 [file] [log] [blame]
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.google.lizlooney.shoppinglist"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="27"/>
<uses-permission
android:name="android.permission.READ_EXTERNAL_STORAGE"
android:required="true" />
<uses-permission
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
android:required="true" />
<application
android:icon="@drawable/icon"
android:label="@string/app_name">
<activity android:name=".ShoppingList"
android:exported="true"
android:screenOrientation="portrait"
android:windowSoftInputMode="stateAlwaysHidden"
android:label="@string/Title">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="com.google.lizlooney.shoppinglist.EditItem"
android:exported="false"
android:screenOrientation="portrait"
android:windowSoftInputMode="stateHidden"
android:label="@string/edit_item_title">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
<activity android:name="com.google.lizlooney.shoppinglist.ChooseStores"
android:exported="false"
android:screenOrientation="portrait"
android:windowSoftInputMode="stateHidden"
android:label="@string/choose_stores_title">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
</application>
</manifest>