Skip to content

Commit 9b924e6

Browse files
authored
Merge pull request #511 from hannesa2/AndroidStudio-3.5.2
Android Studio 3.5.2
2 parents 8df0cb5 + eba457e commit 9b924e6

File tree

4 files changed

+5
-12
lines changed

4 files changed

+5
-12
lines changed

build.gradle

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55
}
66

77
dependencies {
8-
classpath 'com.android.tools.build:gradle:3.5.0'
8+
classpath 'com.android.tools.build:gradle:3.5.2'
99
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
1010
}
1111
}
@@ -20,11 +20,6 @@ subprojects {
2020
version = '4.0.2'
2121
group = 'com.journeyapps'
2222

23-
ext.androidBuildTools = '28.0.3'
2423
ext.androidTargetSdk = 28
2524
ext.zxingCore = 'com.google.zxing:core:3.4.0'
2625
}
27-
28-
repositories {
29-
google()
30-
}

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.0-all.zip

sample/build.gradle

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ apply plugin: 'com.android.application'
22

33
android {
44
compileSdkVersion project.androidTargetSdk
5-
buildToolsVersion project.androidBuildTools
65

76
defaultConfig {
87
minSdkVersion 24
@@ -22,9 +21,9 @@ android {
2221
keystoreFile = properties.getProperty('keystore.file')
2322
keystorePassword = properties.getProperty('keystore.password')
2423
keystoreAlias = properties.getProperty('keystore.alias')
25-
validConfig = keystoreFile != null && keystorePassword != null && keystoreAlias != null;
24+
validConfig = keystoreFile != null && keystorePassword != null && keystoreAlias != null
2625
} catch (error) {
27-
validConfig = false;
26+
validConfig = false
2827
}
2928

3029
if (validConfig) {
@@ -63,7 +62,7 @@ dependencies {
6362
// implementation 'com.journeyapps:zxing-android-embedded:<version>'
6463
implementation project(':zxing-android-embedded')
6564

66-
implementation 'androidx.appcompat:appcompat:1.0.2'
65+
implementation 'androidx.appcompat:appcompat:1.1.0'
6766
implementation 'androidx.legacy:legacy-support-v13:1.0.0'
6867

6968
// leakcanary is for development purposes only

zxing-android-embedded/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ dependencies {
1717
android {
1818
resourcePrefix 'zxing_'
1919
compileSdkVersion project.androidTargetSdk
20-
buildToolsVersion project.androidBuildTools
2120

2221
sourceSets {
2322
main {

0 commit comments

Comments
 (0)