Skip to content

Commit c219321

Browse files
AriesHooAriesHoo
AriesHoo
authored and
AriesHoo
committed
修改gradle
1 parent fcfa58d commit c219321

20 files changed

+85
-97
lines changed

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,4 @@
1010
/.idea
1111
/build
1212
gradlew
13-
gradlew.bat
14-
/gradle
13+
/gradlew.bat

app/build.gradle

Lines changed: 19 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apply plugin: 'com.android.application'
2-
apply plugin: 'com.neenbedankt.android-apt'
3-
apply plugin: 'me.tatarka.retrolambda'
2+
//apply plugin: 'com.neenbedankt.android-apt'
3+
//apply plugin: 'me.tatarka.retrolambda'
44

55
def releaseTime() {
66
return new Date().format("yyyy-MM-dd_HH-mm", TimeZone.getTimeZone("GMT+8"))
@@ -9,7 +9,6 @@ def releaseTime() {
99
def ext = rootProject.ext
1010
android {
1111
compileSdkVersion ext.compileSdkVersion
12-
buildToolsVersion ext.buildToolsVersion
1312
defaultConfig {
1413
applicationId "com.aries.library.fast.demo"
1514
minSdkVersion ext.minSdkVersion
@@ -46,18 +45,6 @@ android {
4645
minifyEnabled false
4746
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
4847
signingConfig signingConfigs.release
49-
applicationVariants.all { variant ->
50-
variant.outputs.each { output ->
51-
def outputFile = output.outputFile
52-
if (outputFile != null && outputFile.name.endsWith('.apk')) {
53-
if (variant.buildType.name.equals('release')) {
54-
def fileName = "FastLib_v${defaultConfig.versionName}_${releaseTime()}.apk"
55-
//output.outputFile = new File(outputFile.parent, fileName)
56-
output.outputFile = new File(outputFile.parent, "sample.apk")
57-
}
58-
}
59-
}
60-
}
6148
}
6249
}
6350

@@ -68,31 +55,31 @@ android {
6855
}
6956

7057
dependencies {
71-
compile fileTree(include: ['*.jar'], dir: 'libs')
72-
compile project(':library')
58+
implementation fileTree(include: ['*.jar'], dir: 'libs')
59+
implementation project(':library')
7360

7461
//设置界面Item库
7562
//以下库library里使用provided只是编译使用时需根据项目选择相应版本
76-
compile 'com.android.support:design:'.concat(ext.supportVersion)
77-
compile 'com.android.support:appcompat-v7:'.concat(ext.supportVersion)
78-
compile 'com.android.support:recyclerview-v7:'.concat(ext.supportVersion)
63+
implementation 'com.android.support:design:'.concat(ext.supportVersion)
64+
implementation 'com.android.support:appcompat-v7:'.concat(ext.supportVersion)
65+
implementation 'com.android.support:recyclerview-v7:'.concat(ext.supportVersion)
7966
//万能适配器--一般都需要吧
80-
compile 'com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.34'
67+
implementation 'com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.40'
8168
//webView库 继承FastWebActivity需要,不需要内置WebView可以不compile
82-
compile 'com.just.agentweb:agentweb:4.0.2'
69+
implementation 'com.just.agentweb:agentweb:4.0.2'
8370
//webView提供下载功能
84-
compile 'com.just.agentweb:download:4.0.2'
71+
implementation 'com.just.agentweb:download:4.0.2'
8572
// compile 'com.just.agentweb:filechooser:4.0.2'
8673
//下拉刷新库注意刷新头SmartRefreshHeader版本最好对应尤其头版本不要低于SmartRefreshLayout版本
87-
compile 'com.scwang.smartrefresh:SmartRefreshLayout:1.0.3'
74+
implementation 'com.scwang.smartrefresh:SmartRefreshLayout:1.0.3'
8875
//图片加载 4.X
89-
compile 'com.github.bumptech.glide:glide:4.5.0'
76+
implementation 'com.github.bumptech.glide:glide:4.5.0'
9077
//以上库library里使用provided只是编译使用时需根据项目选择相应版本
91-
compile 'cn.bingoogolapple:bga-banner:2.1.7@aar'
92-
compile 'com.scwang.smartrefresh:SmartRefreshHeader:1.0.3'
93-
compile 'com.github.lygttpod:SuperTextView:2.1.5'
94-
compile 'com.flyco.labelview:FlycoLabelView_Lib:1.0.2@aar'
95-
compile 'com.just.agentweb:agentweb:3.0.0'
96-
annotationProcessor 'com.github.bumptech.glide:compiler:4.0.0'
97-
apt 'com.jakewharton:butterknife-compiler:8.8.1'
78+
implementation 'cn.bingoogolapple:bga-banner:2.1.7@aar'
79+
implementation 'com.scwang.smartrefresh:SmartRefreshHeader:1.0.3'
80+
implementation 'com.github.lygttpod:SuperTextView:2.1.5'
81+
implementation 'com.flyco.labelview:FlycoLabelView_Lib:1.0.2@aar'
82+
implementation 'com.just.agentweb:agentweb:3.0.0'
83+
annotationProcessor 'com.github.bumptech.glide:compiler:4.5.0'
84+
annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
9885
}

app/src/main/java/com/aries/library/fast/demo/App.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public void onCreate() {
9090
.setQuitDelay(2000)
9191
.setQuitMessage(isBackTask ? getText(R.string.fast_back_home) : getText(R.string.fast_quit_app))
9292
.setSnackBarBackgroundColor(Color.argb(220, 0, 0, 0))
93-
.setSnackBarEnable(true)
93+
.setSnackBarEnable(false)
9494
.setSnackBarMessageColor(Color.WHITE))
9595
//设置Glide背景色
9696
.setPlaceholderColor(getResources().getColor(R.color.colorPlaceholder))
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<vector android:height="24dp" android:viewportHeight="1024.0"
22
android:viewportWidth="1024.0" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
3-
<path android:fillColor="@color/colorTextBlackLight" android:pathData="M676.8,512.1a32,32 0,0 1,-10 23.2l-265.6,251.3a32,32 0,0 1,-44 -46.5l241.1,-228 -241.1,-228.2a32.1,32.1 0,0 1,-1.3 -45.2c12.2,-12.8 32.4,-13.4 45.2,-1.3l265.6,251.5a32,32 0,0 1,10 23.3z"/>
3+
<path android:fillColor="#333333" android:pathData="M676.8,512.1a32,32 0,0 1,-10 23.2l-265.6,251.3a32,32 0,0 1,-44 -46.5l241.1,-228 -241.1,-228.2a32.1,32.1 0,0 1,-1.3 -45.2c12.2,-12.8 32.4,-13.4 45.2,-1.3l265.6,251.5a32,32 0,0 1,10 23.3z"/>
44
</vector>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<vector android:height="24dp" android:viewportHeight="1024.0"
22
android:viewportWidth="1024.0" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
3-
<path android:fillColor="@color/colorTitleText" android:pathData="M959,521.4c0,97.4 -28.4,185.1 -85.3,262.9 -56.9,77.8 -130.3,131.7 -220.4,161.6 -10.5,1.9 -18.1,0.6 -23,-4.1s-7.3,-10.5 -7.3,-17.5V801.5c0,-37.7 -10.1,-65.2 -30.3,-82.7 22.1,-2.3 42,-5.8 59.7,-10.5 17.7,-4.6 35.9,-12.2 54.7,-22.7 18.8,-10.5 34.6,-23.4 47.2,-38.7 12.6,-15.3 22.9,-35.7 30.9,-61.2 7.9,-25.4 11.9,-54.7 11.9,-87.6 0,-47 -15.3,-87 -46,-120 14.4,-35.3 12.8,-74.9 -4.7,-118.8 -10.9,-3.5 -26.6,-1.4 -47.2,6.4 -20.6,7.8 -38.4,16.3 -53.6,25.6l-22.1,14c-36.1,-10.1 -73.4,-15.1 -111.8,-15.1s-75.7,5 -111.8,15.1c-6.2,-4.3 -14.5,-9.5 -24.7,-15.7 -10.3,-6.2 -26.5,-13.7 -48.6,-22.4 -22.1,-8.7 -38.8,-11.4 -50.1,-7.9 -17.1,43.9 -18.4,83.5 -4.1,118.8 -30.7,33 -46,73 -46,120 0,33 4,62.1 11.9,87.3 8,25.2 18.1,45.6 30.6,61.2 12.4,15.5 28,28.5 46.9,39 18.8,10.5 37.1,18 54.7,22.7 17.7,4.6 37.6,8.1 59.7,10.5 -15.5,14 -25,33.9 -28.5,60 -8.1,3.9 -16.9,6.8 -26.2,8.7 -9.3,1.9 -20.4,2.9 -33.2,2.9 -12.8,0 -25.5,-4.2 -38.1,-12.5 -12.6,-8.3 -23.4,-20.5 -32.3,-36.4 -7.4,-12.4 -16.8,-22.5 -28.2,-30.3 -11.5,-7.8 -21.1,-12.4 -28.8,-14l-11.7,-1.8c-8.1,0 -13.8,0.9 -16.9,2.6 -3.1,1.7 -4.1,4 -2.9,6.7 1.2,2.7 2.9,5.5 5.3,8.2 2.3,2.7 4.9,5 7.6,7l4.1,2.9c8.5,3.9 17,11.3 25.3,22.1 8.3,10.9 14.5,20.8 18.3,29.7l5.8,13.4c5,14.8 13.6,26.7 25.6,35.8 12,9.1 25.1,14.9 39,17.5 14,2.5 27.5,3.9 40.5,4.1 13,0.2 23.8,-0.5 32.3,-2l13.4,-2.3c0,14.8 0.1,32 0.3,51.8 0.2,19.8 0.3,30.3 0.3,31.5 0,7 -2.5,12.8 -7.6,17.5 -5,4.7 -12.8,6 -23.3,4.1 -90.1,-29.9 -163.5,-83.7 -220.4,-161.6 -56.9,-77.8 -85.3,-165.5 -85.3,-262.9 0,-81.1 20,-156 60,-224.5s94.2,-122.7 162.7,-162.7c68.5,-40 143.3,-60 224.5,-60 81.1,0 155.9,20 224.5,60 68.5,39.9 122.8,94.2 162.7,162.7s60,143.4 60,224.5l-0,0.1z"/>
3+
<path android:fillColor="#333333" android:pathData="M959,521.4c0,97.4 -28.4,185.1 -85.3,262.9 -56.9,77.8 -130.3,131.7 -220.4,161.6 -10.5,1.9 -18.1,0.6 -23,-4.1s-7.3,-10.5 -7.3,-17.5V801.5c0,-37.7 -10.1,-65.2 -30.3,-82.7 22.1,-2.3 42,-5.8 59.7,-10.5 17.7,-4.6 35.9,-12.2 54.7,-22.7 18.8,-10.5 34.6,-23.4 47.2,-38.7 12.6,-15.3 22.9,-35.7 30.9,-61.2 7.9,-25.4 11.9,-54.7 11.9,-87.6 0,-47 -15.3,-87 -46,-120 14.4,-35.3 12.8,-74.9 -4.7,-118.8 -10.9,-3.5 -26.6,-1.4 -47.2,6.4 -20.6,7.8 -38.4,16.3 -53.6,25.6l-22.1,14c-36.1,-10.1 -73.4,-15.1 -111.8,-15.1s-75.7,5 -111.8,15.1c-6.2,-4.3 -14.5,-9.5 -24.7,-15.7 -10.3,-6.2 -26.5,-13.7 -48.6,-22.4 -22.1,-8.7 -38.8,-11.4 -50.1,-7.9 -17.1,43.9 -18.4,83.5 -4.1,118.8 -30.7,33 -46,73 -46,120 0,33 4,62.1 11.9,87.3 8,25.2 18.1,45.6 30.6,61.2 12.4,15.5 28,28.5 46.9,39 18.8,10.5 37.1,18 54.7,22.7 17.7,4.6 37.6,8.1 59.7,10.5 -15.5,14 -25,33.9 -28.5,60 -8.1,3.9 -16.9,6.8 -26.2,8.7 -9.3,1.9 -20.4,2.9 -33.2,2.9 -12.8,0 -25.5,-4.2 -38.1,-12.5 -12.6,-8.3 -23.4,-20.5 -32.3,-36.4 -7.4,-12.4 -16.8,-22.5 -28.2,-30.3 -11.5,-7.8 -21.1,-12.4 -28.8,-14l-11.7,-1.8c-8.1,0 -13.8,0.9 -16.9,2.6 -3.1,1.7 -4.1,4 -2.9,6.7 1.2,2.7 2.9,5.5 5.3,8.2 2.3,2.7 4.9,5 7.6,7l4.1,2.9c8.5,3.9 17,11.3 25.3,22.1 8.3,10.9 14.5,20.8 18.3,29.7l5.8,13.4c5,14.8 13.6,26.7 25.6,35.8 12,9.1 25.1,14.9 39,17.5 14,2.5 27.5,3.9 40.5,4.1 13,0.2 23.8,-0.5 32.3,-2l13.4,-2.3c0,14.8 0.1,32 0.3,51.8 0.2,19.8 0.3,30.3 0.3,31.5 0,7 -2.5,12.8 -7.6,17.5 -5,4.7 -12.8,6 -23.3,4.1 -90.1,-29.9 -163.5,-83.7 -220.4,-161.6 -56.9,-77.8 -85.3,-165.5 -85.3,-262.9 0,-81.1 20,-156 60,-224.5s94.2,-122.7 162.7,-162.7c68.5,-40 143.3,-60 224.5,-60 81.1,0 155.9,20 224.5,60 68.5,39.9 122.8,94.2 162.7,162.7s60,143.4 60,224.5l-0,0.1z"/>
44
</vector>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<vector android:height="16dp" android:viewportHeight="1024.0"
22
android:viewportWidth="1024.0" android:width="16dp" xmlns:android="http://schemas.android.com/apk/res/android">
3-
<path android:fillColor="@color/colorMainNews" android:pathData="M70.4,486.3h887.2v55.5H70.4v-55.5z"/>
4-
<path android:fillColor="@color/colorMainNews" android:pathData="M486.3,70.4h55.5V957.7H486.3V70.4z"/>
3+
<path android:fillColor="#333333" android:pathData="M70.4,486.3h887.2v55.5H70.4v-55.5z"/>
4+
<path android:fillColor="#333333" android:pathData="M486.3,70.4h55.5V957.7H486.3V70.4z"/>
55
</vector>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<vector android:height="24dp" android:viewportHeight="1024.0"
22
android:viewportWidth="1024.0" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
3-
<path android:fillColor="@color/colorTitleText" android:pathData="M513,62.7c-248.5,0 -450,201.5 -450,450s201.5,450 450,450 450,-201.5 450,-450 -201.5,-450 -450,-450zM495,674.7c0,19.9 -16.1,36 -36,36L351,710.7c-19.9,0 -36,-16.1 -36,-36v-108c0,-19.9 16.1,-36 36,-36h108c19.9,0 36,16.1 36,36v108zM495,458.7c0,19.9 -16.1,36 -36,36L351,494.7c-19.9,0 -36,-16.1 -36,-36v-108c0,-19.9 16.1,-36 36,-36h108c19.9,0 36,16.1 36,36v108zM711,674.7c0,19.9 -16.1,36 -36,36L567,710.7c-19.9,0 -36,-16.1 -36,-36v-108c0,-19.9 16.1,-36 36,-36h108c19.9,0 36,16.1 36,36v108zM711,458.7c0,19.9 -16.1,36 -36,36L567,494.7c-19.9,0 -36,-16.1 -36,-36v-108c0,-19.9 16.1,-36 36,-36h108c19.9,0 36,16.1 36,36v108z"/>
3+
<path android:fillColor="#333333" android:pathData="M513,62.7c-248.5,0 -450,201.5 -450,450s201.5,450 450,450 450,-201.5 450,-450 -201.5,-450 -450,-450zM495,674.7c0,19.9 -16.1,36 -36,36L351,710.7c-19.9,0 -36,-16.1 -36,-36v-108c0,-19.9 16.1,-36 36,-36h108c19.9,0 36,16.1 36,36v108zM495,458.7c0,19.9 -16.1,36 -36,36L351,494.7c-19.9,0 -36,-16.1 -36,-36v-108c0,-19.9 16.1,-36 36,-36h108c19.9,0 36,16.1 36,36v108zM711,674.7c0,19.9 -16.1,36 -36,36L567,710.7c-19.9,0 -36,-16.1 -36,-36v-108c0,-19.9 16.1,-36 36,-36h108c19.9,0 36,16.1 36,36v108zM711,458.7c0,19.9 -16.1,36 -36,36L567,494.7c-19.9,0 -36,-16.1 -36,-36v-108c0,-19.9 16.1,-36 36,-36h108c19.9,0 36,16.1 36,36v108z"/>
44
</vector>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<vector android:height="24dp" android:viewportHeight="1024.0"
22
android:viewportWidth="1024.0" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
3-
<path android:fillColor="@color/colorTitleText" android:pathData="M511.5,388.8c-66.6,0 -120.6,54.2 -120.6,121.1 0,66.9 54,121.1 120.6,121.1 66.6,0 120.6,-54.2 120.6,-121.1C632.1,443 578.1,388.8 511.5,388.8zM511.5,569.7c-33,0 -59.8,-26.8 -59.8,-59.8 0,-33 26.8,-59.8 59.8,-59.8 33,0 59.8,26.8 59.8,59.8C571.3,543 544.5,569.7 511.5,569.7z"/>
4-
<path android:fillColor="@color/colorTitleText" android:pathData="M511.5,64.8c-245.8,0 -445.1,199.3 -445.1,445.1s199.3,445.1 445.1,445.1 445.1,-199.3 445.1,-445.1S757.3,64.8 511.5,64.8zM746.6,599.1l-43.6,70.8 -61.9,-25.5c-9.9,9.8 -21.4,18.6 -33.9,26.2l7.3,68.8 -80.8,19.3 -25.1,-60.6c-15,-0.1 -29.6,-2.1 -44,-5.7l-42.4,52.6 -70.7,-43.6 24.6,-59.6c-10.5,-10.7 -19.5,-22.8 -27.2,-36.2l-66.7,7.2 -19.3,-80.9 59.8,-24.8c0.3,-15.1 2.6,-30.1 6.4,-44.5l-52.5,-42.4 43.6,-70.7 61,25.1c9.1,-8.6 19.2,-16.4 30.3,-23.3l-9.4,-68.1 80.3,-21.6 27.7,61.6c15.9,0.1 31.7,2.1 47,6.1l44.1,-54.9 70.7,43.6 -26.1,63.4c9.3,9.8 17.6,20.8 24.7,32.8l70.6,-7.6 19.2,80.8 -63,26.3c-0.2,13.9 -2.1,27.8 -5.4,41.3L746.6,599.1z"/>
3+
<path android:fillColor="#333333" android:pathData="M511.5,388.8c-66.6,0 -120.6,54.2 -120.6,121.1 0,66.9 54,121.1 120.6,121.1 66.6,0 120.6,-54.2 120.6,-121.1C632.1,443 578.1,388.8 511.5,388.8zM511.5,569.7c-33,0 -59.8,-26.8 -59.8,-59.8 0,-33 26.8,-59.8 59.8,-59.8 33,0 59.8,26.8 59.8,59.8C571.3,543 544.5,569.7 511.5,569.7z"/>
4+
<path android:fillColor="#333333" android:pathData="M511.5,64.8c-245.8,0 -445.1,199.3 -445.1,445.1s199.3,445.1 445.1,445.1 445.1,-199.3 445.1,-445.1S757.3,64.8 511.5,64.8zM746.6,599.1l-43.6,70.8 -61.9,-25.5c-9.9,9.8 -21.4,18.6 -33.9,26.2l7.3,68.8 -80.8,19.3 -25.1,-60.6c-15,-0.1 -29.6,-2.1 -44,-5.7l-42.4,52.6 -70.7,-43.6 24.6,-59.6c-10.5,-10.7 -19.5,-22.8 -27.2,-36.2l-66.7,7.2 -19.3,-80.9 59.8,-24.8c0.3,-15.1 2.6,-30.1 6.4,-44.5l-52.5,-42.4 43.6,-70.7 61,25.1c9.1,-8.6 19.2,-16.4 30.3,-23.3l-9.4,-68.1 80.3,-21.6 27.7,61.6c15.9,0.1 31.7,2.1 47,6.1l44.1,-54.9 70.7,43.6 -26.1,63.4c9.3,9.8 17.6,20.8 24.7,32.8l70.6,-7.6 19.2,80.8 -63,26.3c-0.2,13.9 -2.1,27.8 -5.4,41.3L746.6,599.1z"/>
55
</vector>
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<vector android:height="24dp" android:viewportHeight="1024.0"
22
android:viewportWidth="1024.0" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
3-
<path android:fillColor="@color/colorTitleText" android:pathData="M352.4,505.2 L351.6,503.1C341.5,486.8 323.2,476.7 303.7,476.7c-31.2,0 -56.6,25 -56.6,55.6 0,30.7 25.4,55.7 56.6,55.7 31.1,0 56.4,-25 56.4,-55.7 0,-8.1 -1.7,-16 -5.2,-23.3L352.4,505.2z"/>
4-
<path android:fillColor="@color/colorTitleText" android:pathData="M719.8,641.9c-23,0 -43.5,13.6 -52.2,34.4C667.4,677 667,677.6 666.9,678.2l0.3,0.1L666.6,679C664.3,685.6 663.3,691.5 663.3,697.5c0,30.6 25.4,55.7 56.5,55.7 31.1,0 56.4,-25 56.4,-55.7S750.9,641.9 719.8,641.9z"/>
5-
<path android:fillColor="@color/colorTitleText" android:pathData="M617.2,333.5a0.8,0.8 0,1 0,112.7 0,0.8 0.8,0 1,0 -112.7,0Z"/>
6-
<path android:fillColor="@color/colorTitleText" android:pathData="M512,7.5c-280.2,0 -507.7,227.3 -507.7,507.7 0,280.4 227.5,507.7 507.7,507.7 280.5,0 507.8,-227.3 507.8,-507.7C1019.8,234.9 792.5,7.5 512,7.5zM720.3,796.6c-55.3,0 -100.2,-44.4 -100.2,-99.1 0,-5.2 0.4,-10.4 1.2,-15.5l-235.6,-92.6C367,615.3 336.3,631.3 303.7,631.3c-55.3,0 -100.2,-44.5 -100.2,-99.1 0,-54.7 44.9,-99.2 100.2,-99.2 28.9,0 56.8,12.6 75.6,34.1l198.6,-106C575.2,352 573.9,342.7 573.9,333.1c0,-54.6 44.9,-99.2 100.3,-99.2 55.3,0 100.2,44.5 100.2,99.2 0,54.7 -44.9,99.1 -100.2,99.1 -29.1,0 -55.9,-12.1 -75,-33.3L400.3,505.2c2.4,8.8 3.8,17.8 3.8,27 0,5.7 -0.6,11.3 -1.5,17l235,92.4C656.2,614.7 687.2,598.3 720.3,598.3c55.4,0 100.3,44.5 100.3,99.1C820.5,752.1 775.6,796.6 720.3,796.6z"/>
3+
<path android:fillColor="#333333" android:pathData="M352.4,505.2 L351.6,503.1C341.5,486.8 323.2,476.7 303.7,476.7c-31.2,0 -56.6,25 -56.6,55.6 0,30.7 25.4,55.7 56.6,55.7 31.1,0 56.4,-25 56.4,-55.7 0,-8.1 -1.7,-16 -5.2,-23.3L352.4,505.2z"/>
4+
<path android:fillColor="#333333" android:pathData="M719.8,641.9c-23,0 -43.5,13.6 -52.2,34.4C667.4,677 667,677.6 666.9,678.2l0.3,0.1L666.6,679C664.3,685.6 663.3,691.5 663.3,697.5c0,30.6 25.4,55.7 56.5,55.7 31.1,0 56.4,-25 56.4,-55.7S750.9,641.9 719.8,641.9z"/>
5+
<path android:fillColor="#333333" android:pathData="M617.2,333.5a0.8,0.8 0,1 0,112.7 0,0.8 0.8,0 1,0 -112.7,0Z"/>
6+
<path android:fillColor="#333333" android:pathData="M512,7.5c-280.2,0 -507.7,227.3 -507.7,507.7 0,280.4 227.5,507.7 507.7,507.7 280.5,0 507.8,-227.3 507.8,-507.7C1019.8,234.9 792.5,7.5 512,7.5zM720.3,796.6c-55.3,0 -100.2,-44.4 -100.2,-99.1 0,-5.2 0.4,-10.4 1.2,-15.5l-235.6,-92.6C367,615.3 336.3,631.3 303.7,631.3c-55.3,0 -100.2,-44.5 -100.2,-99.1 0,-54.7 44.9,-99.2 100.2,-99.2 28.9,0 56.8,12.6 75.6,34.1l198.6,-106C575.2,352 573.9,342.7 573.9,333.1c0,-54.6 44.9,-99.2 100.3,-99.2 55.3,0 100.2,44.5 100.2,99.2 0,54.7 -44.9,99.1 -100.2,99.1 -29.1,0 -55.9,-12.1 -75,-33.3L400.3,505.2c2.4,8.8 3.8,17.8 3.8,27 0,5.7 -0.6,11.3 -1.5,17l235,92.4C656.2,614.7 687.2,598.3 720.3,598.3c55.4,0 100.3,44.5 100.3,99.1C820.5,752.1 775.6,796.6 720.3,796.6z"/>
77
</vector>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<vector android:height="24dp" android:viewportHeight="1024.0"
22
android:viewportWidth="1024.0" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
3-
<path android:fillColor="@color/colorTitleText" android:pathData="M516.2,28.8C252.8,28.8 39,242.5 39,505.9s213.7,477.1 477.1,477.1S993.3,769.3 993.3,505.9 779.6,28.8 516.2,28.8zM789,613.2L328.2,613.2l123.5,148.6a26.5,26.5 0,0 1,-3.4 37.5c-4.9,4.2 -11,6.1 -17.1,6.1 -7.6,0 -15.2,-3.4 -20.5,-9.9l-196.3,-236.5h574.9c14.8,0 26.9,12.1 26.9,26.9 -0.4,15.5 -12.5,27.3 -27.3,27.3zM243.3,452.1c-14.8,0 -26.9,-12.1 -26.9,-26.9 0,-14.8 12.1,-26.9 26.9,-26.9h460.8l-123.5,-148.9a26.5,26.5 0,0 1,3.4 -37.5,26.5 26.5,0 0,1 37.5,3.4l196.3,236.5 -574.5,0.4z"/>
3+
<path android:fillColor="#333333" android:pathData="M516.2,28.8C252.8,28.8 39,242.5 39,505.9s213.7,477.1 477.1,477.1S993.3,769.3 993.3,505.9 779.6,28.8 516.2,28.8zM789,613.2L328.2,613.2l123.5,148.6a26.5,26.5 0,0 1,-3.4 37.5c-4.9,4.2 -11,6.1 -17.1,6.1 -7.6,0 -15.2,-3.4 -20.5,-9.9l-196.3,-236.5h574.9c14.8,0 26.9,12.1 26.9,26.9 -0.4,15.5 -12.5,27.3 -27.3,27.3zM243.3,452.1c-14.8,0 -26.9,-12.1 -26.9,-26.9 0,-14.8 12.1,-26.9 26.9,-26.9h460.8l-123.5,-148.9a26.5,26.5 0,0 1,3.4 -37.5,26.5 26.5,0 0,1 37.5,3.4l196.3,236.5 -574.5,0.4z"/>
44
</vector>

build.gradle

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@
33
buildscript {
44
repositories {
55
jcenter()
6+
google()
7+
mavenLocal()
8+
mavenCentral()
69
}
710
dependencies {
8-
classpath 'com.android.tools.build:gradle:2.3.3'
9-
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
10-
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
11-
classpath 'me.tatarka:gradle-retrolambda:3.2.5'
12-
// NOTE: Do not place your application dependencies here; they belong
13-
// in the individual module build.gradle files
11+
classpath 'com.android.tools.build:gradle:3.1.2'
1412
}
1513
}
1614

1715
allprojects {
1816
repositories {
1917
jcenter()
18+
google()
19+
mavenCentral()
2020
maven { url "https://jitpack.io" }
2121
}
2222
}
@@ -27,10 +27,10 @@ task clean(type: Delete) {
2727

2828
ext{
2929
compileSdkVersion = 27
30-
buildToolsVersion = "27.0.3"
30+
buildToolsVersion = "27.0.2"
3131
minSdkVersion = 15
3232
targetSdkVersion = 27
3333
supportVersion = "27.0.2"
3434
versionCode = 229
35-
versionName = "2.2.9-beta10"
35+
versionName = "2.2.9-beta6"
3636
}

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-3.3-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip

0 commit comments

Comments
 (0)