File tree 5 files changed +12
-16
lines changed
5 files changed +12
-16
lines changed Original file line number Diff line number Diff line change 1
1
apply plugin : ' com.android.application'
2
- apply plugin : ' com.neenbedankt.android-apt'
3
2
apply plugin : ' me.tatarka.retrolambda'
3
+ apply plugin : ' com.jakewharton.butterknife'
4
4
5
5
android {
6
6
def ext = rootProject. ext
@@ -10,8 +10,8 @@ android {
10
10
applicationId " com.aries.library.fast.demo"
11
11
minSdkVersion ext. minSdkVersion
12
12
targetSdkVersion ext. targetSdkVersion
13
- versionCode 2
14
- versionName " 1.0.1 "
13
+ versionCode 3
14
+ versionName " 1.0.2 "
15
15
multiDexEnabled true
16
16
testInstrumentationRunner " android.support.test.runner.AndroidJUnitRunner"
17
17
}
@@ -46,14 +46,10 @@ android {
46
46
47
47
dependencies {
48
48
compile fileTree(dir : ' libs' , include : [' *.jar' ])
49
- def supportVersion = rootProject. ext. supportVersion
50
- compile ' com.android.support:appcompat-v7:' . concat(supportVersion)
51
- compile ' com.android.support:recyclerview-v7:' . concat(supportVersion)
52
49
compile project(' :library' )
53
- apt ' com.jakewharton:butterknife-compiler:8.7.0'
50
+ annotationProcessor ' com.jakewharton:butterknife-compiler:8.7.0'
54
51
compile ' cn.bingoogolapple:bga-banner:2.1.7@aar'
55
52
compile ' com.scwang.smartrefresh:SmartRefreshHeader:1.0.3'
56
53
// 设置界面Item库
57
54
compile ' com.github.lygttpod:SuperTextView:2.1.0'
58
- compile ' com.just.agentweb:agentweb:1.2.6'
59
55
}
Original file line number Diff line number Diff line change 1
1
<resources >
2
- <string name =" app_name" >FastLibrary </string >
2
+ <string name =" app_name" >FastLib </string >
3
3
<string name =" home" >主页</string >
4
4
<string name =" activity" >活动</string >
5
5
<string name =" mine" >我的</string >
Original file line number Diff line number Diff line change @@ -7,9 +7,9 @@ buildscript {
7
7
}
8
8
dependencies {
9
9
classpath ' com.android.tools.build:gradle:2.2.3'
10
- classpath ' com.neenbedankt.gradle.plugins:android-apt:1.8'
11
10
classpath ' com.github.dcendents:android-maven-gradle-plugin:1.4.1'
12
11
classpath ' me.tatarka:gradle-retrolambda:3.2.5'
12
+ classpath ' com.jakewharton:butterknife-gradle-plugin:8.8.0'
13
13
// NOTE: Do not place your application dependencies here; they belong
14
14
// in the individual module build.gradle files
15
15
}
Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ android {
8
8
defaultConfig {
9
9
minSdkVersion 15
10
10
targetSdkVersion 25
11
- versionCode 2
12
- versionName " 1.0.1 "
11
+ versionCode 3
12
+ versionName " 1.0.2 "
13
13
}
14
14
buildTypes {
15
15
release {
@@ -19,9 +19,9 @@ android {
19
19
}
20
20
}
21
21
dependencies {
22
- // def supportVersion = "25.3.1"
23
- // compile 'com.android.support:appcompat-v7:'.concat(supportVersion)
24
- // compile 'com.android.support:recyclerview-v7:'.concat(supportVersion)
22
+ def supportVersion = " 25.3.1"
23
+ compile ' com.android.support:appcompat-v7:' . concat(supportVersion)
24
+ compile ' com.android.support:recyclerview-v7:' . concat(supportVersion)
25
25
// 图片加载
26
26
compile ' com.github.bumptech.glide:glide:4.0.0'
27
27
annotationProcessor ' com.github.bumptech.glide:compiler:4.0.0'
@@ -51,5 +51,5 @@ dependencies {
51
51
// 页面事件交互
52
52
compile ' org.simple:androideventbus:1.0.5.1'
53
53
// webView库
54
- provided ' com.just.agentweb:agentweb:1.2.6'
54
+ compile ' com.just.agentweb:agentweb:1.2.6'
55
55
}
You can’t perform that action at this time.
0 commit comments