Skip to content

Commit 5b5369c

Browse files
author
Andrey Yashkov
committed
Android SDK version has been updated. Camera permissions request has been added.
1 parent 56029bd commit 5b5369c

File tree

12 files changed

+89
-330
lines changed

12 files changed

+89
-330
lines changed

.idea/codeStyleSettings.xml

Lines changed: 0 additions & 228 deletions
This file was deleted.

.idea/compiler.xml

Lines changed: 0 additions & 22 deletions
This file was deleted.

.idea/copyright/idscan_public.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.idea/copyright/profiles_settings.xml

Lines changed: 0 additions & 7 deletions
This file was deleted.

.idea/encodings.xml

Lines changed: 1 addition & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 5 additions & 37 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@
1919
apply plugin: 'com.android.application'
2020

2121
android {
22-
compileSdkVersion 26
23-
buildToolsVersion "26.0.2"
22+
compileSdkVersion 28
23+
buildToolsVersion "28.0.3"
2424
defaultConfig {
2525
applicationId "net.idscan.android.pdf417scannerexample"
2626
minSdkVersion 16
2727
targetSdkVersion 26
28-
versionCode 8
29-
versionName "1.0.8"
28+
versionCode 9
29+
versionName "1.0.9"
3030
}
3131
buildTypes {
3232
release {
@@ -37,9 +37,9 @@ android {
3737
}
3838

3939
dependencies {
40-
compile fileTree(dir: 'libs', include: ['*.jar'])
41-
compile 'com.android.support:appcompat-v7:26.+'
42-
compile 'com.android.support.constraint:constraint-layout:1.0.2'
43-
compile project(':PDF417Scanner')
44-
testCompile 'junit:junit:4.12'
40+
implementation fileTree(dir: 'libs', include: ['*.jar'])
41+
implementation 'com.android.support:appcompat-v7:28.0.0'
42+
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
43+
implementation project(':PDF417Scanner')
44+
testImplementation 'junit:junit:4.12'
4545
}

0 commit comments

Comments
 (0)