Skip to content

Commit

Permalink
Merge pull request #63 from JeasonWong/master
Browse files Browse the repository at this point in the history
support uetool-np-op work
  • Loading branch information
JeasonWong authored Aug 6, 2019
2 parents b813e36 + e21eec0 commit 0c5d5db
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 13 deletions.
1 change: 0 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ apply plugin: 'kotlin-android-extensions'

android {
compileSdkVersion versions.compileSdk
buildToolsVersion versions.buildTool

signingConfigs {
release {
Expand Down
5 changes: 2 additions & 3 deletions uetool-base/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,15 @@ apply plugin: 'com.novoda.bintray-release'

android {
compileSdkVersion versions.compileSdk
buildToolsVersion versions.buildTool

defaultConfig {
minSdkVersion versions.minSdk
}

dependencies {
api "com.android.support:appcompat-v7:${versions.supportLibrary}"
implementation "com.android.support:recyclerview-v7:${versions.supportLibrary}"
implementation "com.android.support:support-v4:${versions.supportLibrary}"
api "com.android.support:recyclerview-v7:${versions.supportLibrary}"
api "com.android.support:support-v4:${versions.supportLibrary}"
}

lintOptions {
Expand Down
1 change: 0 additions & 1 deletion uetool-fresco/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ apply plugin: 'com.novoda.bintray-release'

android {
compileSdkVersion versions.compileSdk
buildToolsVersion versions.buildTool

defaultConfig {
minSdkVersion versions.minSdk
Expand Down
5 changes: 0 additions & 5 deletions uetool-no-op/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,12 @@ apply plugin: 'com.novoda.bintray-release'

android {
compileSdkVersion versions.compileSdk
buildToolsVersion versions.buildTool

defaultConfig {
minSdkVersion versions.minSdk
}
}

dependencies {
api project(path: ':uetool-base')
}

publish {
userOrg = 'jackcho'
groupId = 'me.ele'
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package me.ele.uetool.base;

public interface ItemViewBinder<T, S> {
}
4 changes: 4 additions & 0 deletions uetool-no-op/src/main/java/me/ele/uetool/base/item/Item.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package me.ele.uetool.base.item;

public class Item {
}
3 changes: 0 additions & 3 deletions uetool/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ apply plugin: 'com.novoda.bintray-release'

android {
compileSdkVersion versions.compileSdk
buildToolsVersion versions.buildTool

defaultConfig {
minSdkVersion versions.minSdk
Expand All @@ -17,8 +16,6 @@ android {
dependencies {
api project(':uetool-base')
// api "me.ele:uetool-base:${versions.release}"
implementation "com.android.support:recyclerview-v7:${versions.supportLibrary}"
implementation "com.android.support:support-v4:${versions.supportLibrary}"
implementation 'com.jakewharton.scalpel:scalpel:1.1.2'
implementation 'com.github.bmelnychuk:atv:1.2.9'
}
Expand Down

0 comments on commit 0c5d5db

Please sign in to comment.