Skip to content

Commit

Permalink
Allow app to be stored on external storage.
Browse files Browse the repository at this point in the history
  • Loading branch information
pla1 committed Jul 1, 2020
1 parent 3a888cc commit d6e9960
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ android {
applicationId "com.fediphoto"
minSdkVersion 26
targetSdkVersion 28
versionCode 20
versionName "2.9"
versionCode 21
versionName "3.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
Expand Down
4 changes: 3 additions & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.fediphoto">
package="com.fediphoto"
android:installLocation="auto">

<uses-feature
android:name="android.hardware.camera"
Expand Down Expand Up @@ -50,6 +51,7 @@
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.VIEW" />

<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />

Expand Down

0 comments on commit d6e9960

Please sign in to comment.