Skip to content

Commit

Permalink
opt
Browse files Browse the repository at this point in the history
  • Loading branch information
LightSun committed Mar 2, 2020
1 parent 1ca4a73 commit d11c741
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
11 changes: 9 additions & 2 deletions Drag-FlowLayout/app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
apply plugin: 'com.android.application'
//apply plugin: 'com.jakewharton.butterknife'

android {
compileSdkVersion 28
Expand All @@ -10,6 +11,12 @@ android {
targetSdkVersion 28
versionCode 1
versionName "1.0"

javaCompileOptions {
annotationProcessorOptions {
includeCompileClasspath = true
}
}
}
buildTypes {
release {
Expand All @@ -33,8 +40,8 @@ dependencies {
/* implementation ('com.heaven7.volley:volley_with_extra:1.0.1'){
exclude group: 'com.android.support'
}*/
implementation 'com.jakewharton:butterknife:10.0.0'
annotationProcessor 'com.jakewharton:butterknife:10.0.0'
implementation 'com.jakewharton:butterknife:10.2.1'
annotationProcessor 'com.jakewharton:butterknife-compiler:10.2.1'

implementation('com.github.LightSun:util-v1:1.1.7-beta-x') {
exclude group: 'com.android.support'
Expand Down
3 changes: 3 additions & 0 deletions Drag-FlowLayout/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,13 @@
buildscript {
repositories {
google()
mavenCentral()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.1'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
// classpath 'com.jakewharton:butterknife-gradle-plugin:10.2.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
//jcenter
Expand All @@ -19,6 +21,7 @@ buildscript {
allprojects {
repositories {
google()
mavenCentral()
jcenter()
maven { url "https://jitpack.io" }
}
Expand Down
3 changes: 3 additions & 0 deletions Drag-FlowLayout/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,6 @@
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true

android.useAndroidX=true
android.enableJetifier=true

0 comments on commit d11c741

Please sign in to comment.