Skip to content

Commit 520f470

Browse files
committed
update the version
1 parent 37e33fc commit 520f470

4 files changed

Lines changed: 79 additions & 24 deletions

File tree

.gitignore

Lines changed: 60 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,63 @@
1+
# Built application files
2+
*.apk
3+
*.ap_
4+
5+
# Files for the ART/Dalvik VM
6+
*.dex
7+
8+
# Java class files
9+
*.class
10+
11+
# Generated files
12+
bin/
13+
gen/
14+
out/
15+
16+
# Gradle files
17+
.gradle/
18+
build/
19+
20+
# Local configuration file (sdk path, etc)
21+
local.properties
22+
23+
# Proguard folder generated by Eclipse
24+
proguard/
25+
26+
# Log Files
27+
*.log
28+
29+
# Android Studio Navigation editor temp files
30+
.navigation/
31+
32+
# Android Studio captures folder
33+
captures/
34+
35+
# IntelliJ
136
*.iml
2-
.gradle
3-
/local.properties
4-
/.idea/workspace.xml
5-
/.idea/libraries
6-
.DS_Store
7-
/build
8-
/captures
37+
.idea/workspace.xml
38+
.idea/tasks.xml
39+
.idea/gradle.xml
40+
.idea/dictionaries
41+
.idea/libraries
42+
43+
# Keystore files
44+
# Uncomment the following line if you do not want to check your keystore files in.
45+
#*.jks
46+
47+
# External native build folder generated in Android Studio 2.2 and later
948
.externalNativeBuild
1049

50+
# Google Services (e.g. APIs or Firebase)
51+
google-services.json
52+
53+
# Freeline
54+
freeline.py
55+
freeline/
56+
freeline_project_description.json
57+
58+
# fastlane
59+
fastlane/report.xml
60+
fastlane/Preview.html
61+
fastlane/screenshots
62+
fastlane/test_output
63+
fastlane/readme.md

build.gradle

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@
33
buildscript {
44
ext.kotlin_version = '1.1.51'
55
repositories {
6+
google()
67
jcenter()
78
}
89
dependencies {
9-
classpath 'com.android.tools.build:gradle:3.0.1'
10+
classpath 'com.android.tools.build:gradle:3.3.2'
1011
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
11-
classpath "com.jakewharton:butterknife-gradle-plugin:8.6.0"
12+
classpath "com.jakewharton:butterknife-gradle-plugin:10.1.0"
1213
// classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.6'
1314
// NOTE: Do not place your application dependencies here; they belong
1415
// in the individual module build.gradle files
@@ -17,6 +18,7 @@ buildscript {
1718

1819
allprojects {
1920
repositories {
21+
google()
2022
jcenter()
2123
}
2224
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Tue Mar 27 16:17:31 GMT+08:00 2018
1+
#Thu Apr 04 17:35:51 CST 2019
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.10.1-all.zip

myutils/build.gradle

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,12 @@ apply plugin: 'com.github.dcendents.android-maven'
33
group='com.github.seeways'
44

55
android {
6-
compileSdkVersion 26
7-
buildToolsVersion "25.0.2"
8-
6+
compileSdkVersion 27
97
defaultConfig {
10-
minSdkVersion 14
11-
targetSdkVersion 26
12-
versionCode 3
13-
versionName "2.0"
8+
minSdkVersion 19
9+
targetSdkVersion 27
10+
versionCode 4
11+
versionName "3.0"
1412
}
1513
buildTypes {
1614
release {
@@ -23,10 +21,12 @@ android {
2321

2422

2523
dependencies {
26-
compile fileTree(dir: 'libs', include: ['*.jar'])
27-
compile 'com.android.support:appcompat-v7:26+'
28-
compile 'com.android.support:design:26+'
29-
//View注入框架
30-
compile 'com.jakewharton:butterknife:8.6.0'
31-
annotationProcessor "com.jakewharton:butterknife-compiler:8.6.0"
24+
implementation fileTree(dir: 'libs', include: ['*.jar'])
25+
//noinspection GradleDynamicVersion
26+
implementation 'com.android.support:appcompat-v7:27+'
27+
//noinspection GradleDynamicVersion
28+
implementation 'com.android.support:design:27+'
29+
30+
implementation 'com.jakewharton:butterknife:10.1.0'
31+
annotationProcessor 'com.jakewharton:butterknife-compiler:10.1.0'
3232
}

0 commit comments

Comments
 (0)