Skip to content

Commit

Permalink
remove backup attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
hannesa2 committed Jan 4, 2020
1 parent 463eda3 commit 4d52563
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 13 deletions.
2 changes: 1 addition & 1 deletion library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ android {
}

dependencies {
testImplementation 'junit:junit:4.12'
testImplementation 'junit:junit:4.13'
api project(':openCVLibrary340')
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.exifinterface:exifinterface:1.1.0'
Expand Down
27 changes: 15 additions & 12 deletions library/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,26 +1,29 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="devliving.online.cvscanner">

<uses-permission android:name="android.permission.CAMERA"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

<uses-feature android:name="android.hardware.camera" android:required="false"/>
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/>
<uses-feature
android:name="android.hardware.camera"
android:required="false" />
<uses-feature
android:name="android.hardware.camera.autofocus"
android:required="false" />

<application
android:allowBackup="true"
android:label="@string/app_name"
android:supportsRtl="true">

<activity android:name=".DocumentScannerActivity"
android:theme="@style/CVScannerTheme"
<activity
android:name=".DocumentScannerActivity"
android:configChanges="orientation|screenSize"
/>
android:theme="@style/CVScannerTheme" />

<activity android:name=".crop.CropImageActivity"
android:theme="@style/CVScannerTheme"
<activity
android:name=".crop.CropImageActivity"
android:configChanges="orientation|screenSize"
/>
android:theme="@style/CVScannerTheme" />

<provider
android:name=".util.CVFileProvider"
Expand All @@ -29,7 +32,7 @@
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths"/>
android:resource="@xml/file_paths" />
</provider>
</application>

Expand Down

0 comments on commit 4d52563

Please sign in to comment.