Skip to content

Commit 593d471

Browse files
author
Eric Chung
committed
Update Version
1 parent 8a4fd21 commit 593d471

File tree

4 files changed

+14
-11
lines changed

4 files changed

+14
-11
lines changed

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
apply plugin: 'com.android.application'android { compileSdkVersion 23 buildToolsVersion '26.0.2' defaultConfig { applicationId "lamen.cipher" minSdkVersion 14 targetSdkVersion 23 versionCode 3 versionName '1.2' } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } productFlavors { }}dependencies { compile fileTree(include: ['*.jar'], dir: 'libs') testCompile 'junit:junit:4.12' compile 'com.android.support:appcompat-v7:23.3.0' compile 'com.github.bumptech.glide:glide:3.7.0' compile project(':materiallockview') compile 'cn.bingoogolapple:bga-qrcode-core:1.2.1' compile 'cn.bingoogolapple:bga-qrcode-zbar:1.2.1'}repositories { maven { url "https://jitpack.io" }}
1+
apply plugin: 'com.android.application'android { compileSdkVersion 26 buildToolsVersion '27.0.3' defaultConfig { applicationId "lamen.cipher" minSdkVersion 14 targetSdkVersion 26 versionCode 3 versionName '1.2' } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } productFlavors { }}dependencies { api fileTree(include: ['*.jar'], dir: 'libs') testImplementation 'junit:junit:4.12' api 'com.android.support:appcompat-v7:26.1.0' api 'com.github.bumptech.glide:glide:3.7.0' api project(':materiallockview') api 'cn.bingoogolapple:bga-qrcode-core:1.2.1' api 'cn.bingoogolapple:bga-qrcode-zbar:1.2.1'}repositories { maven { url "https://jitpack.io" }}

build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@
33
buildscript {
44
repositories {
55
jcenter()
6+
google()
67
}
78
dependencies {
8-
classpath 'com.android.tools.build:gradle:3.0.1'
9+
classpath 'com.android.tools.build:gradle:3.1.2'
910

1011
// NOTE: Do not place your application dependencies here; they belong
1112
// in the individual module build.gradle files
@@ -15,6 +16,7 @@ buildscript {
1516
allprojects {
1617
repositories {
1718
jcenter()
19+
google()
1820
}
1921
}
2022

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Sun Dec 10 22:37:56 CST 2017
1+
#Mon May 28 14:06:48 CST 2018
22
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-4.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip

materiallockview/build.gradle

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
apply plugin: 'com.android.library'
22

33
android {
4-
compileSdkVersion 23
5-
buildToolsVersion '26.0.2'
6-
4+
compileSdkVersion 26
5+
buildToolsVersion '27.0.3'
76
defaultConfig {
87
minSdkVersion 14
9-
targetSdkVersion 23
8+
targetSdkVersion 26
109
versionCode 1
1110
versionName "1.0"
1211
}
@@ -16,10 +15,12 @@ android {
1615
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
1716
}
1817
}
18+
productFlavors {
19+
}
1920
}
2021

2122
dependencies {
22-
compile fileTree(dir: 'libs', include: ['*.jar'])
23-
testCompile 'junit:junit:4.12'
24-
compile 'com.android.support:appcompat-v7:23.0.1'
23+
api fileTree(include: ['*.jar'], dir: 'libs')
24+
testImplementation 'junit:junit:4.12'
25+
api 'com.android.support:appcompat-v7:26.1.0'
2526
}

0 commit comments

Comments
 (0)